blob: c5c13e9a5aac0e148d3bba47a516f7fc1afd0286 [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
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +090032#define AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH 128
33#define AUDIO_POLICY_XML_CONFIG_FILE_NAME "audio_policy_configuration.xml"
Petri Gyntherf497f292018-04-17 18:46:10 -070034#define AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME \
35 "audio_policy_configuration_a2dp_offload_disabled.xml"
Cheney Nie5985452019-02-24 01:39:15 +080036#define AUDIO_POLICY_BLUETOOTH_LEGACY_HAL_XML_CONFIG_FILE_NAME \
37 "audio_policy_configuration_bluetooth_legacy_hal.xml"
François Gaffief4ad6e52015-11-19 16:59:57 +010038
Eric Laurent16c66dd2019-05-01 17:54:10 -070039#include <algorithm>
Eric Laurentd4692962014-05-05 18:13:44 -070040#include <inttypes.h>
Eric Laurente552edb2014-03-10 17:42:56 -070041#include <math.h>
Kevin Rocard153f92d2018-12-18 18:33:28 -080042#include <set>
Mikhail Naganovd5e18052018-11-30 14:55:45 -080043#include <unordered_set>
Mikhail Naganov15be9d22017-11-08 14:18:13 +110044#include <vector>
Eric Laurente552edb2014-03-10 17:42:56 -070045#include <cutils/properties.h>
Eric Laurentd4692962014-05-05 18:13:44 -070046#include <utils/Log.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070047#include <media/AudioParameter.h>
Andy Hung4ef19fa2018-05-15 19:35:29 -070048#include <private/android_filesystem_config.h>
Mikhail Naganovcbc8f612016-10-11 18:05:13 -070049#include <system/audio.h>
Mikhail Naganov27cf37c2020-04-14 14:47:01 -070050#include <system/audio_config.h>
Eric Laurentd4692962014-05-05 18:13:44 -070051#include "AudioPolicyManager.h"
François Gaffied1ab2bd2015-12-02 18:20:06 +010052#include <Serializer.h>
François Gaffiea8ecc2c2015-11-09 16:10:40 +010053#include "TypeConverter.h"
François Gaffie53615e22015-03-19 09:24:12 +010054#include <policy.h>
Eric Laurente552edb2014-03-10 17:42:56 -070055
Eric Laurent3b73df72014-03-11 09:06:29 -070056namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070057
Eric Laurentdc462862016-07-19 12:29:53 -070058//FIXME: workaround for truncated touch sounds
59// to be removed when the problem is handled by system UI
60#define TOUCH_SOUND_FIXED_DELAY_MS 100
Jean-Michel Trivi719a9872017-08-05 13:51:35 -070061
62// Largest difference in dB on earpiece in call between the voice volume and another
63// media / notification / system volume.
64constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f;
65
Mikhail Naganov15be9d22017-11-08 14:18:13 +110066// Compressed formats for MSD module, ordered from most preferred to least preferred.
67static const std::vector<audio_format_t> compressedFormatsOrder = {{
68 AUDIO_FORMAT_MAT_2_1, AUDIO_FORMAT_MAT_2_0, AUDIO_FORMAT_E_AC3,
69 AUDIO_FORMAT_AC3, AUDIO_FORMAT_PCM_16_BIT }};
70// Channel masks for MSD module, 3D > 2D > 1D ordering (most preferred to least preferred).
71static const std::vector<audio_channel_mask_t> surroundChannelMasksOrder = {{
72 AUDIO_CHANNEL_OUT_3POINT1POINT2, AUDIO_CHANNEL_OUT_3POINT0POINT2,
73 AUDIO_CHANNEL_OUT_2POINT1POINT2, AUDIO_CHANNEL_OUT_2POINT0POINT2,
74 AUDIO_CHANNEL_OUT_5POINT1, AUDIO_CHANNEL_OUT_STEREO }};
75
jiabin06e4bab2019-07-29 10:13:34 -070076template <typename T>
77bool operator== (const SortedVector<T> &left, const SortedVector<T> &right)
78{
79 if (left.size() != right.size()) {
80 return false;
81 }
82 for (size_t index = 0; index < right.size(); index++) {
83 if (left[index] != right[index]) {
84 return false;
85 }
86 }
87 return true;
88}
89
90template <typename T>
91bool operator!= (const SortedVector<T> &left, const SortedVector<T> &right)
92{
93 return !(left == right);
94}
95
Eric Laurente552edb2014-03-10 17:42:56 -070096// ----------------------------------------------------------------------------
97// AudioPolicyInterface implementation
98// ----------------------------------------------------------------------------
99
Eric Laurente0720872014-03-11 09:30:41 -0700100status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
Paul McLeane743a472015-01-28 11:07:31 -0800101 audio_policy_dev_state_t state,
102 const char *device_address,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800103 const char *device_name,
104 audio_format_t encodedFormat)
Eric Laurente552edb2014-03-10 17:42:56 -0700105{
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800106 status_t status = setDeviceConnectionStateInt(device, state, device_address,
107 device_name, encodedFormat);
jiabina7b43792018-02-15 16:04:46 -0800108 nextAudioPortGeneration();
109 return status;
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800110}
111
François Gaffie11d30102018-11-02 16:09:09 +0100112void AudioPolicyManager::broadcastDeviceConnectionState(const sp<DeviceDescriptor> &device,
113 audio_policy_dev_state_t state)
François Gaffie44481e72016-04-20 07:49:57 +0200114{
jiabince9f20e2019-09-12 16:29:15 -0700115 AudioParameter param(String8(device->address().c_str()));
François Gaffie44481e72016-04-20 07:49:57 +0200116 const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ?
Mikhail Naganovf23fcf62019-07-08 15:28:43 -0700117 AudioParameter::keyDeviceConnect : AudioParameter::keyDeviceDisconnect);
François Gaffie11d30102018-11-02 16:09:09 +0100118 param.addInt(key, device->type());
François Gaffie44481e72016-04-20 07:49:57 +0200119 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
120}
121
François Gaffie11d30102018-11-02 16:09:09 +0100122status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t deviceType,
Eric Laurenta1d525f2015-01-29 13:36:45 -0800123 audio_policy_dev_state_t state,
Paul McLeane743a472015-01-28 11:07:31 -0800124 const char *device_address,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800125 const char *device_name,
126 audio_format_t encodedFormat)
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800127{
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800128 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s format 0x%X",
129 deviceType, state, device_address, device_name, encodedFormat);
Eric Laurente552edb2014-03-10 17:42:56 -0700130
131 // connect/disconnect only 1 device at a time
François Gaffie11d30102018-11-02 16:09:09 +0100132 if (!audio_is_output_device(deviceType) && !audio_is_input_device(deviceType)) return BAD_VALUE;
Eric Laurente552edb2014-03-10 17:42:56 -0700133
François Gaffie11d30102018-11-02 16:09:09 +0100134 sp<DeviceDescriptor> device =
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800135 mHwModules.getDeviceDescriptor(deviceType, device_address, device_name, encodedFormat,
Francois Gaffie716e1432019-01-14 16:58:59 +0100136 state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700137 return device ? setDeviceConnectionStateInt(device, state) : INVALID_OPERATION;
138}
Paul McLeane743a472015-01-28 11:07:31 -0800139
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700140status_t AudioPolicyManager::setDeviceConnectionStateInt(const sp<DeviceDescriptor> &device,
141 audio_policy_dev_state_t state)
142{
Eric Laurente552edb2014-03-10 17:42:56 -0700143 // handle output devices
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700144 if (audio_is_output_device(device->type())) {
Eric Laurentd4692962014-05-05 18:13:44 -0700145 SortedVector <audio_io_handle_t> outputs;
146
François Gaffie11d30102018-11-02 16:09:09 +0100147 ssize_t index = mAvailableOutputDevices.indexOf(device);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700148
Eric Laurente552edb2014-03-10 17:42:56 -0700149 // save a copy of the opened output descriptors before any output is opened or closed
150 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
151 mPreviousOutputs = mOutputs;
Eric Laurente552edb2014-03-10 17:42:56 -0700152 switch (state)
153 {
154 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800155 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700156 if (index >= 0) {
François Gaffie11d30102018-11-02 16:09:09 +0100157 ALOGW("%s() device already connected: %s", __func__, device->toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -0700158 return INVALID_OPERATION;
159 }
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800160 ALOGV("%s() connecting device %s format %x",
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700161 __func__, device->toString().c_str(), device->getEncodedFormat());
Eric Laurente552edb2014-03-10 17:42:56 -0700162
Eric Laurente552edb2014-03-10 17:42:56 -0700163 // register new device as available
Francois Gaffie993f3902019-04-10 15:39:27 +0200164 if (mAvailableOutputDevices.add(device) < 0) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700165 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700166 }
167
François Gaffie44481e72016-04-20 07:49:57 +0200168 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
169 // parameters on newly connected devices (instead of opening the outputs...)
François Gaffie11d30102018-11-02 16:09:09 +0100170 broadcastDeviceConnectionState(device, state);
François Gaffie44481e72016-04-20 07:49:57 +0200171
François Gaffie11d30102018-11-02 16:09:09 +0100172 if (checkOutputsForDevice(device, state, outputs) != NO_ERROR) {
173 mAvailableOutputDevices.remove(device);
François Gaffie44481e72016-04-20 07:49:57 +0200174
Francois Gaffie716e1432019-01-14 16:58:59 +0100175 mHwModules.cleanUpForDevice(device);
176
François Gaffie11d30102018-11-02 16:09:09 +0100177 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700178 return INVALID_OPERATION;
179 }
François Gaffie2110e042015-03-24 08:41:51 +0100180
jiabin1c4794b2020-05-05 10:08:05 -0700181 // Populate encapsulation information when a output device is connected.
182 device->setEncapsulationInfoFromHal(mpClientInterface);
183
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700184 // outputs should never be empty here
185 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
186 "checkOutputsForDevice() returned no outputs but status OK");
François Gaffie11d30102018-11-02 16:09:09 +0100187 ALOGV("%s() checkOutputsForDevice() returned %zu outputs", __func__, outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800188
Eric Laurent3ae5f312015-02-03 17:12:08 -0800189 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700190 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700191 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700192 if (index < 0) {
François Gaffie11d30102018-11-02 16:09:09 +0100193 ALOGW("%s() device not connected: %s", __func__, device->toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -0700194 return INVALID_OPERATION;
195 }
196
François Gaffie11d30102018-11-02 16:09:09 +0100197 ALOGV("%s() disconnecting output device %s", __func__, device->toString().c_str());
Paul McLean5c477aa2014-08-20 16:47:57 -0700198
Paul McLeane743a472015-01-28 11:07:31 -0800199 // Send Disconnect to HALs
François Gaffie11d30102018-11-02 16:09:09 +0100200 broadcastDeviceConnectionState(device, state);
Paul McLean5c477aa2014-08-20 16:47:57 -0700201
Eric Laurente552edb2014-03-10 17:42:56 -0700202 // remove device from available output devices
François Gaffie11d30102018-11-02 16:09:09 +0100203 mAvailableOutputDevices.remove(device);
Eric Laurente552edb2014-03-10 17:42:56 -0700204
Francois Gaffieba2cf0f2018-12-12 16:40:25 +0100205 mOutputs.clearSessionRoutesForDevice(device);
206
François Gaffie11d30102018-11-02 16:09:09 +0100207 checkOutputsForDevice(device, state, outputs);
François Gaffie2110e042015-03-24 08:41:51 +0100208
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800209 // Reset active device codec
210 device->setEncodedFormat(AUDIO_FORMAT_DEFAULT);
211
Eric Laurente552edb2014-03-10 17:42:56 -0700212 } break;
213
214 default:
François Gaffie11d30102018-11-02 16:09:09 +0100215 ALOGE("%s() invalid state: %x", __func__, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700216 return BAD_VALUE;
217 }
218
Eric Laurent736a1022019-03-27 18:28:46 -0700219 // Propagate device availability to Engine
220 setEngineDeviceConnectionState(device, state);
221
Eric Laurentae970022019-01-29 14:25:04 -0800222 // No need to evaluate playback routing when connecting a remote submix
223 // output device used by a dynamic policy of type recorder as no
224 // playback use case is affected.
225 bool doCheckForDeviceAndOutputChanges = true;
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700226 if (device->type() == AUDIO_DEVICE_OUT_REMOTE_SUBMIX && device->address() != "0") {
Eric Laurentae970022019-01-29 14:25:04 -0800227 for (audio_io_handle_t output : outputs) {
228 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Mikhail Naganovbfac5832019-03-05 16:55:28 -0800229 sp<AudioPolicyMix> policyMix = desc->mPolicyMix.promote();
230 if (policyMix != nullptr
231 && policyMix->mMixType == MIX_TYPE_RECORDERS
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700232 && device->address() == policyMix->mDeviceAddress.string()) {
Eric Laurentae970022019-01-29 14:25:04 -0800233 doCheckForDeviceAndOutputChanges = false;
234 break;
235 }
236 }
237 }
238
239 auto checkCloseOutputs = [&]() {
Mikhail Naganov37977152018-07-11 15:54:44 -0700240 // outputs must be closed after checkOutputForAllStrategies() is executed
241 if (!outputs.isEmpty()) {
242 for (audio_io_handle_t output : outputs) {
243 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
François Gaffie11d30102018-11-02 16:09:09 +0100244 // close unused outputs after device disconnection or direct outputs that have
245 // been opened by checkOutputsForDevice() to query dynamic parameters
Mikhail Naganov37977152018-07-11 15:54:44 -0700246 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) ||
247 (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
Eric Laurentae970022019-01-29 14:25:04 -0800248 (desc->mDirectOpenCount == 0))) {
Mikhail Naganov37977152018-07-11 15:54:44 -0700249 closeOutput(output);
250 }
Eric Laurente552edb2014-03-10 17:42:56 -0700251 }
Mikhail Naganov37977152018-07-11 15:54:44 -0700252 // check A2DP again after closing A2DP output to reset mA2dpSuspended if needed
253 return true;
Eric Laurente552edb2014-03-10 17:42:56 -0700254 }
Mikhail Naganov37977152018-07-11 15:54:44 -0700255 return false;
Eric Laurentae970022019-01-29 14:25:04 -0800256 };
257
258 if (doCheckForDeviceAndOutputChanges) {
259 checkForDeviceAndOutputChanges(checkCloseOutputs);
260 } else {
261 checkCloseOutputs();
262 }
Eric Laurente552edb2014-03-10 17:42:56 -0700263
Eric Laurent87ffa392015-05-22 10:32:38 -0700264 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
François Gaffie11d30102018-11-02 16:09:09 +0100265 DeviceVector newDevices = getNewOutputDevices(mPrimaryOutput, false /*fromCache*/);
266 updateCallRouting(newDevices);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700267 }
François Gaffie11d30102018-11-02 16:09:09 +0100268 const DeviceVector msdOutDevices = getMsdAudioOutDevices();
Eric Laurente552edb2014-03-10 17:42:56 -0700269 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700270 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
271 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) {
François Gaffie11d30102018-11-02 16:09:09 +0100272 DeviceVector newDevices = getNewOutputDevices(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700273 // do not force device change on duplicated output because if device is 0, it will
274 // also force a device 0 for the two outputs it is duplicated to which may override
275 // a valid device selection on those outputs.
François Gaffie11d30102018-11-02 16:09:09 +0100276 bool force = (msdOutDevices.isEmpty() || msdOutDevices != desc->devices())
Mikhail Naganov15be9d22017-11-08 14:18:13 +1100277 && !desc->isDuplicated()
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700278 && (!device_distinguishes_on_address(device->type())
Eric Laurentc2730ba2014-07-20 15:47:07 -0700279 // always force when disconnecting (a non-duplicated device)
280 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
François Gaffie11d30102018-11-02 16:09:09 +0100281 setOutputDevices(desc, newDevices, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700282 }
Eric Laurente552edb2014-03-10 17:42:56 -0700283 }
284
Eric Laurentd60560a2015-04-10 11:31:20 -0700285 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
François Gaffie11d30102018-11-02 16:09:09 +0100286 cleanUpForDevice(device);
Eric Laurentd60560a2015-04-10 11:31:20 -0700287 }
288
Eric Laurent72aa32f2014-05-30 18:51:48 -0700289 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700290 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700291 } // end if is output device
292
Eric Laurente552edb2014-03-10 17:42:56 -0700293 // handle input devices
Mikhail Naganovd0e2c742020-03-25 15:59:59 -0700294 if (audio_is_input_device(device->type())) {
François Gaffie11d30102018-11-02 16:09:09 +0100295 ssize_t index = mAvailableInputDevices.indexOf(device);
Eric Laurente552edb2014-03-10 17:42:56 -0700296 switch (state)
297 {
298 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700299 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700300 if (index >= 0) {
François Gaffie11d30102018-11-02 16:09:09 +0100301 ALOGW("%s() device already connected: %s", __func__, device->toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -0700302 return INVALID_OPERATION;
303 }
Eric Laurent0dd51852019-04-19 18:18:58 -0700304
305 if (mAvailableInputDevices.add(device) < 0) {
306 return NO_MEMORY;
307 }
308
François Gaffie44481e72016-04-20 07:49:57 +0200309 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
310 // parameters on newly connected devices (instead of opening the inputs...)
François Gaffie11d30102018-11-02 16:09:09 +0100311 broadcastDeviceConnectionState(device, state);
François Gaffie44481e72016-04-20 07:49:57 +0200312
Eric Laurent0dd51852019-04-19 18:18:58 -0700313 if (checkInputsForDevice(device, state) != NO_ERROR) {
314 mAvailableInputDevices.remove(device);
315
François Gaffie11d30102018-11-02 16:09:09 +0100316 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE);
Francois Gaffie716e1432019-01-14 16:58:59 +0100317
318 mHwModules.cleanUpForDevice(device);
319
Eric Laurentd4692962014-05-05 18:13:44 -0700320 return INVALID_OPERATION;
321 }
322
Eric Laurentd4692962014-05-05 18:13:44 -0700323 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700324
325 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700326 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700327 if (index < 0) {
François Gaffie11d30102018-11-02 16:09:09 +0100328 ALOGW("%s() device not connected: %s", __func__, device->toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -0700329 return INVALID_OPERATION;
330 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700331
François Gaffie11d30102018-11-02 16:09:09 +0100332 ALOGV("%s() disconnecting input device %s", __func__, device->toString().c_str());
Paul McLean5c477aa2014-08-20 16:47:57 -0700333
334 // Set Disconnect to HALs
François Gaffie11d30102018-11-02 16:09:09 +0100335 broadcastDeviceConnectionState(device, state);
Paul McLean5c477aa2014-08-20 16:47:57 -0700336
François Gaffie11d30102018-11-02 16:09:09 +0100337 mAvailableInputDevices.remove(device);
Eric Laurent0dd51852019-04-19 18:18:58 -0700338
339 checkInputsForDevice(device, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700340 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700341
342 default:
François Gaffie11d30102018-11-02 16:09:09 +0100343 ALOGE("%s() invalid state: %x", __func__, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700344 return BAD_VALUE;
345 }
346
Eric Laurent736a1022019-03-27 18:28:46 -0700347 // Propagate device availability to Engine
348 setEngineDeviceConnectionState(device, state);
349
Eric Laurent0dd51852019-04-19 18:18:58 -0700350 checkCloseInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700351 // As the input device list can impact the output device selection, update
352 // getDeviceForStrategy() cache
353 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700354
Eric Laurent87ffa392015-05-22 10:32:38 -0700355 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
François Gaffie11d30102018-11-02 16:09:09 +0100356 DeviceVector newDevices = getNewOutputDevices(mPrimaryOutput, false /*fromCache*/);
357 updateCallRouting(newDevices);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700358 }
359
Eric Laurentd60560a2015-04-10 11:31:20 -0700360 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
François Gaffie11d30102018-11-02 16:09:09 +0100361 cleanUpForDevice(device);
Eric Laurentd60560a2015-04-10 11:31:20 -0700362 }
363
Eric Laurentb52c1522014-05-20 11:27:36 -0700364 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700365 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700366 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700367
François Gaffie11d30102018-11-02 16:09:09 +0100368 ALOGW("%s() invalid device: %s", __func__, device->toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -0700369 return BAD_VALUE;
370}
371
Eric Laurent736a1022019-03-27 18:28:46 -0700372void AudioPolicyManager::setEngineDeviceConnectionState(const sp<DeviceDescriptor> device,
373 audio_policy_dev_state_t state) {
374
375 // the Engine does not have to know about remote submix devices used by dynamic audio policies
376 if (audio_is_remote_submix_device(device->type()) && device->address() != "0") {
377 return;
378 }
379 mEngine->setDeviceConnectionState(device, state);
380}
381
382
Eric Laurente0720872014-03-11 09:30:41 -0700383audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100384 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700385{
Eric Laurent634b7142016-04-20 13:48:02 -0700386 sp<DeviceDescriptor> devDesc =
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800387 mHwModules.getDeviceDescriptor(device, device_address, "", AUDIO_FORMAT_DEFAULT,
388 false /* allowToCreate */,
Eric Laurent634b7142016-04-20 13:48:02 -0700389 (strlen(device_address) != 0)/*matchAddress*/);
390
391 if (devDesc == 0) {
François Gaffie251c7f02018-11-07 10:41:08 +0100392 ALOGV("getDeviceConnectionState() undeclared device, type %08x, address: %s",
Eric Laurent634b7142016-04-20 13:48:02 -0700393 device, device_address);
394 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
395 }
François Gaffie53615e22015-03-19 09:24:12 +0100396
Eric Laurent3a4311c2014-03-17 12:00:47 -0700397 DeviceVector *deviceVector;
398
Eric Laurente552edb2014-03-10 17:42:56 -0700399 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700400 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700401 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700402 deviceVector = &mAvailableInputDevices;
403 } else {
François Gaffie11d30102018-11-02 16:09:09 +0100404 ALOGW("%s() invalid device type %08x", __func__, device);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700405 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700406 }
Eric Laurent634b7142016-04-20 13:48:02 -0700407
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800408 return (deviceVector->getDevice(
409 device, String8(device_address), AUDIO_FORMAT_DEFAULT) != 0) ?
Eric Laurent634b7142016-04-20 13:48:02 -0700410 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800411}
412
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800413status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
414 const char *device_address,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800415 const char *device_name,
416 audio_format_t encodedFormat)
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800417{
418 status_t status;
Aniket Kumar Lata3432e042018-04-06 14:22:15 -0700419 String8 reply;
420 AudioParameter param;
421 int isReconfigA2dpSupported = 0;
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800422
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800423 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s encodedFormat: 0x%X",
424 device, device_address, device_name, encodedFormat);
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800425
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800426 // connect/disconnect only 1 device at a time
427 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
428
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800429 // Check if the device is currently connected
jiabin9a3361e2019-10-01 09:38:30 -0700430 DeviceVector deviceList = mAvailableOutputDevices.getDevicesFromType(device);
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800431 if (deviceList.empty()) {
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800432 // Nothing to do: device is not connected
433 return NO_ERROR;
434 }
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800435 sp<DeviceDescriptor> devDesc = deviceList.itemAt(0);
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800436
Aniket Kumar Lata3432e042018-04-06 14:22:15 -0700437 // For offloaded A2DP, Hw modules may have the capability to
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800438 // configure codecs.
439 // Handle two specific cases by sending a set parameter to
440 // configure A2DP codecs. No need to toggle device state.
441 // Case 1: A2DP active device switches from primary to primary
442 // module
443 // Case 2: A2DP device config changes on primary module.
jiabin9a3361e2019-10-01 09:38:30 -0700444 if (audio_is_a2dp_out_device(device)) {
445 sp<HwModule> module = mHwModules.getModuleForDeviceType(device, encodedFormat);
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800446 audio_module_handle_t primaryHandle = mPrimaryOutput->getModuleHandle();
447 if (availablePrimaryOutputDevices().contains(devDesc) &&
448 (module != 0 && module->getHandle() == primaryHandle)) {
449 reply = mpClientInterface->getParameters(
450 AUDIO_IO_HANDLE_NONE,
451 String8(AudioParameter::keyReconfigA2dpSupported));
452 AudioParameter repliedParameters(reply);
453 repliedParameters.getInt(
454 String8(AudioParameter::keyReconfigA2dpSupported), isReconfigA2dpSupported);
455 if (isReconfigA2dpSupported) {
456 const String8 key(AudioParameter::keyReconfigA2dp);
457 param.add(key, String8("true"));
458 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
459 devDesc->setEncodedFormat(encodedFormat);
460 return NO_ERROR;
461 }
Aniket Kumar Lata3432e042018-04-06 14:22:15 -0700462 }
463 }
464
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800465 // Toggle the device state: UNAVAILABLE -> AVAILABLE
466 // This will force reading again the device configuration
467 status = setDeviceConnectionState(device,
468 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800469 device_address, device_name,
470 devDesc->getEncodedFormat());
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800471 if (status != NO_ERROR) {
472 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
473 status);
474 return status;
475 }
476
477 status = setDeviceConnectionState(device,
478 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800479 device_address, device_name, encodedFormat);
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800480 if (status != NO_ERROR) {
481 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
482 status);
483 return status;
484 }
485
486 return NO_ERROR;
487}
488
Arun Mirpuri11029ad2018-12-19 20:45:19 -0800489status_t AudioPolicyManager::getHwOffloadEncodingFormatsSupportedForA2DP(
490 std::vector<audio_format_t> *formats)
491{
492 ALOGV("getHwOffloadEncodingFormatsSupportedForA2DP()");
Arun Mirpuri11029ad2018-12-19 20:45:19 -0800493 status_t status = NO_ERROR;
Aniket Kumar Lata89e82232019-01-19 18:14:10 -0800494 std::unordered_set<audio_format_t> formatSet;
495 sp<HwModule> primaryModule =
496 mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_PRIMARY);
Aniket Kumar Latafedb5982019-07-03 11:20:36 -0700497 if (primaryModule == nullptr) {
498 ALOGE("%s() unable to get primary module", __func__);
499 return NO_INIT;
500 }
jiabin9a3361e2019-10-01 09:38:30 -0700501 DeviceVector declaredDevices = primaryModule->getDeclaredDevices().getDevicesFromTypes(
502 getAudioDeviceOutAllA2dpSet());
Aniket Kumar Lata89e82232019-01-19 18:14:10 -0800503 for (const auto& device : declaredDevices) {
504 formatSet.insert(device->encodedFormats().begin(), device->encodedFormats().end());
Arun Mirpuri11029ad2018-12-19 20:45:19 -0800505 }
Aniket Kumar Lata89e82232019-01-19 18:14:10 -0800506 formats->assign(formatSet.begin(), formatSet.end());
Arun Mirpuri11029ad2018-12-19 20:45:19 -0800507 return status;
508}
509
François Gaffie11d30102018-11-02 16:09:09 +0100510uint32_t AudioPolicyManager::updateCallRouting(const DeviceVector &rxDevices, uint32_t delayMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700511{
512 bool createTxPatch = false;
François Gaffie9eb18552018-11-05 10:33:26 +0100513 bool createRxPatch = false;
Eric Laurentdc462862016-07-19 12:29:53 -0700514 uint32_t muteWaitMs = 0;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700515
jiabin9a3361e2019-10-01 09:38:30 -0700516 if(!hasPrimaryOutput() ||
517 mPrimaryOutput->devices().onlyContainsDevicesWithType(AUDIO_DEVICE_OUT_STUB)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700518 return muteWaitMs;
Eric Laurent87ffa392015-05-22 10:32:38 -0700519 }
François Gaffie11d30102018-11-02 16:09:09 +0100520 ALOG_ASSERT(!rxDevices.isEmpty(), "updateCallRouting() no selected output device");
521
Francois Gaffie716e1432019-01-14 16:58:59 +0100522 audio_attributes_t attr = { .source = AUDIO_SOURCE_VOICE_COMMUNICATION };
François Gaffiec005e562018-11-06 15:04:49 +0100523 auto txSourceDevice = mEngine->getInputDeviceForAttributes(attr);
François Gaffie9eb18552018-11-05 10:33:26 +0100524 ALOG_ASSERT(txSourceDevice != 0, "updateCallRouting() input selected device not available");
François Gaffiec005e562018-11-06 15:04:49 +0100525
526 ALOGV("updateCallRouting device rxDevice %s txDevice %s",
François Gaffie9eb18552018-11-05 10:33:26 +0100527 rxDevices.itemAt(0)->toString().c_str(), txSourceDevice->toString().c_str());
Eric Laurentc2730ba2014-07-20 15:47:07 -0700528
529 // release existing RX patch if any
530 if (mCallRxPatch != 0) {
François Gaffieafd4cea2019-11-18 15:50:22 +0100531 releaseAudioPatchInternal(mCallRxPatch->getHandle());
Eric Laurentc2730ba2014-07-20 15:47:07 -0700532 mCallRxPatch.clear();
533 }
534 // release TX patch if any
535 if (mCallTxPatch != 0) {
François Gaffieafd4cea2019-11-18 15:50:22 +0100536 releaseAudioPatchInternal(mCallTxPatch->getHandle());
Eric Laurentc2730ba2014-07-20 15:47:07 -0700537 mCallTxPatch.clear();
538 }
539
François Gaffie9eb18552018-11-05 10:33:26 +0100540 auto telephonyRxModule =
jiabin9a3361e2019-10-01 09:38:30 -0700541 mHwModules.getModuleForDeviceType(AUDIO_DEVICE_IN_TELEPHONY_RX, AUDIO_FORMAT_DEFAULT);
François Gaffie9eb18552018-11-05 10:33:26 +0100542 auto telephonyTxModule =
jiabin9a3361e2019-10-01 09:38:30 -0700543 mHwModules.getModuleForDeviceType(AUDIO_DEVICE_OUT_TELEPHONY_TX, AUDIO_FORMAT_DEFAULT);
François Gaffie9eb18552018-11-05 10:33:26 +0100544 // retrieve Rx Source and Tx Sink device descriptors
545 sp<DeviceDescriptor> rxSourceDevice =
546 mAvailableInputDevices.getDevice(AUDIO_DEVICE_IN_TELEPHONY_RX,
547 String8(),
548 AUDIO_FORMAT_DEFAULT);
549 sp<DeviceDescriptor> txSinkDevice =
550 mAvailableOutputDevices.getDevice(AUDIO_DEVICE_OUT_TELEPHONY_TX,
551 String8(),
552 AUDIO_FORMAT_DEFAULT);
553
554 // RX and TX Telephony device are declared by Primary Audio HAL
555 if (isPrimaryModule(telephonyRxModule) && isPrimaryModule(telephonyTxModule) &&
556 (telephonyRxModule->getHalVersionMajor() >= 3)) {
557 if (rxSourceDevice == 0 || txSinkDevice == 0) {
558 // RX / TX Telephony device(s) is(are) not currently available
559 ALOGE("updateCallRouting() no telephony Tx and/or RX device");
560 return muteWaitMs;
561 }
François Gaffieafd4cea2019-11-18 15:50:22 +0100562 // createAudioPatchInternal now supports both HW / SW bridging
563 createRxPatch = true;
564 createTxPatch = true;
François Gaffie9eb18552018-11-05 10:33:26 +0100565 } else {
566 // If the RX device is on the primary HW module, then use legacy routing method for
567 // voice calls via setOutputDevice() on primary output.
568 // Otherwise, create two audio patches for TX and RX path.
569 createRxPatch = !(availablePrimaryOutputDevices().contains(rxDevices.itemAt(0))) &&
570 (rxSourceDevice != 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700571 // If the TX device is also on the primary HW module, setOutputDevice() will take care
572 // of it due to legacy implementation. If not, create a patch.
François Gaffie9eb18552018-11-05 10:33:26 +0100573 createTxPatch = !(availablePrimaryModuleInputDevices().contains(txSourceDevice)) &&
574 (txSinkDevice != 0);
575 }
576 // Use legacy routing method for voice calls via setOutputDevice() on primary output.
577 // Otherwise, create two audio patches for TX and RX path.
578 if (!createRxPatch) {
579 muteWaitMs = setOutputDevices(mPrimaryOutput, rxDevices, true, delayMs);
Eric Laurent8ae73122016-04-12 10:13:29 -0700580 } else { // create RX path audio patch
François Gaffie11d30102018-11-02 16:09:09 +0100581 mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevices.itemAt(0), delayMs);
juyuchen2224c5a2019-01-21 12:00:58 +0800582
583 // If the TX device is on the primary HW module but RX device is
584 // on other HW module, SinkMetaData of telephony input should handle it
585 // assuming the device uses audio HAL V5.0 and above
Eric Laurentc2730ba2014-07-20 15:47:07 -0700586 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700587 if (createTxPatch) { // create TX path audio patch
François Gaffieafd4cea2019-11-18 15:50:22 +0100588 // terminate active capture if on the same HW module as the call TX source device
589 // FIXME: would be better to refine to only inputs whose profile connects to the
590 // call TX device but this information is not in the audio patch and logic here must be
591 // symmetric to the one in startInput()
592 for (const auto& activeDesc : mInputs.getActiveInputs()) {
593 if (activeDesc->hasSameHwModuleAs(txSourceDevice)) {
594 closeActiveClients(activeDesc);
595 }
596 }
François Gaffie9eb18552018-11-05 10:33:26 +0100597 mCallTxPatch = createTelephonyPatch(false /*isRx*/, txSourceDevice, delayMs);
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800598 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700599
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800600 return muteWaitMs;
601}
Eric Laurentc2730ba2014-07-20 15:47:07 -0700602
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800603sp<AudioPatch> AudioPolicyManager::createTelephonyPatch(
François Gaffie11d30102018-11-02 16:09:09 +0100604 bool isRx, const sp<DeviceDescriptor> &device, uint32_t delayMs) {
Mikhail Naganovdc769682018-05-04 15:34:08 -0700605 PatchBuilder patchBuilder;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700606
François Gaffie11d30102018-11-02 16:09:09 +0100607 if (device == nullptr) {
608 return nullptr;
609 }
François Gaffieafd4cea2019-11-18 15:50:22 +0100610
611 // @TODO: still ignoring the address, or not dealing platform with multiple telephony devices
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800612 if (isRx) {
François Gaffie11d30102018-11-02 16:09:09 +0100613 patchBuilder.addSink(device).
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800614 addSource(mAvailableInputDevices.getDevice(
615 AUDIO_DEVICE_IN_TELEPHONY_RX, String8(), AUDIO_FORMAT_DEFAULT));
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800616 } else {
François Gaffie11d30102018-11-02 16:09:09 +0100617 patchBuilder.addSource(device).
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800618 addSink(mAvailableOutputDevices.getDevice(
619 AUDIO_DEVICE_OUT_TELEPHONY_TX, String8(), AUDIO_FORMAT_DEFAULT));
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800620 }
621
François Gaffieafd4cea2019-11-18 15:50:22 +0100622 audio_patch_handle_t patchHandle = AUDIO_PATCH_HANDLE_NONE;
623 status_t status =
624 createAudioPatchInternal(patchBuilder.patch(), &patchHandle, mUidCached, delayMs);
625 ssize_t index = mAudioPatches.indexOfKey(patchHandle);
626 if (status != NO_ERROR || index < 0) {
627 ALOGW("%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX");
628 return nullptr;
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800629 }
François Gaffieafd4cea2019-11-18 15:50:22 +0100630 return mAudioPatches.valueAt(index);
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800631}
632
Mikhail Naganov100f0122018-11-29 11:22:16 -0800633bool AudioPolicyManager::isDeviceOfModule(
634 const sp<DeviceDescriptor>& devDesc, const char *moduleId) const {
635 sp<HwModule> module = mHwModules.getModuleFromName(moduleId);
636 if (module != 0) {
637 return mAvailableOutputDevices.getDevicesFromHwModule(module->getHandle())
638 .indexOf(devDesc) != NAME_NOT_FOUND
639 || mAvailableInputDevices.getDevicesFromHwModule(module->getHandle())
640 .indexOf(devDesc) != NAME_NOT_FOUND;
641 }
642 return false;
643}
644
Eric Laurente0720872014-03-11 09:30:41 -0700645void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700646{
647 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100648 // store previous phone state for management of sonification strategy below
649 int oldState = mEngine->getPhoneState();
650
651 if (mEngine->setPhoneState(state) != NO_ERROR) {
652 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700653 return;
654 }
François Gaffie2110e042015-03-24 08:41:51 +0100655 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurent63dea1d2015-07-02 17:10:28 -0700656 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700657 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent63dea1d2015-07-02 17:10:28 -0700658 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800659 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700660 }
661
François Gaffie2110e042015-03-24 08:41:51 +0100662 /**
663 * Switching to or from incall state or switching between telephony and VoIP lead to force
664 * routing command.
665 */
Eric Laurent74b71512019-11-06 17:21:57 -0800666 bool force = ((isStateInCall(oldState) != isStateInCall(state))
667 || (isStateInCall(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700668
669 // check for device and output changes triggered by new phone state
Mikhail Naganov37977152018-07-11 15:54:44 -0700670 checkForDeviceAndOutputChanges();
Eric Laurente552edb2014-03-10 17:42:56 -0700671
Eric Laurente552edb2014-03-10 17:42:56 -0700672 int delayMs = 0;
673 if (isStateInCall(state)) {
674 nsecs_t sysTime = systemTime();
François Gaffiec005e562018-11-06 15:04:49 +0100675 auto musicStrategy = streamToStrategy(AUDIO_STREAM_MUSIC);
676 auto sonificationStrategy = streamToStrategy(AUDIO_STREAM_ALARM);
Eric Laurente552edb2014-03-10 17:42:56 -0700677 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700678 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700679 // mute media and sonification strategies and delay device switch by the largest
680 // latency of any output where either strategy is active.
681 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiec005e562018-11-06 15:04:49 +0100682 if ((desc->isStrategyActive(musicStrategy, SONIFICATION_HEADSET_MUSIC_DELAY, sysTime) ||
683 desc->isStrategyActive(sonificationStrategy, SONIFICATION_HEADSET_MUSIC_DELAY,
684 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700685 (delayMs < (int)desc->latency()*2)) {
686 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700687 }
François Gaffiec005e562018-11-06 15:04:49 +0100688 setStrategyMute(musicStrategy, true, desc);
689 setStrategyMute(musicStrategy, false, desc, MUTE_TIME_MS,
690 mEngine->getOutputDevicesForAttributes(attributes_initializer(AUDIO_USAGE_MEDIA),
691 nullptr, true /*fromCache*/).types());
692 setStrategyMute(sonificationStrategy, true, desc);
693 setStrategyMute(sonificationStrategy, false, desc, MUTE_TIME_MS,
694 mEngine->getOutputDevicesForAttributes(attributes_initializer(AUDIO_USAGE_ALARM),
695 nullptr, true /*fromCache*/).types());
Eric Laurente552edb2014-03-10 17:42:56 -0700696 }
697 }
698
Eric Laurent87ffa392015-05-22 10:32:38 -0700699 if (hasPrimaryOutput()) {
François Gaffie11d30102018-11-02 16:09:09 +0100700 // Note that despite the fact that getNewOutputDevices() is called on the primary output,
Eric Laurent87ffa392015-05-22 10:32:38 -0700701 // the device returned is not necessarily reachable via this output
François Gaffie11d30102018-11-02 16:09:09 +0100702 DeviceVector rxDevices = getNewOutputDevices(mPrimaryOutput, false /*fromCache*/);
Eric Laurent87ffa392015-05-22 10:32:38 -0700703 // force routing command to audio hardware when ending call
704 // even if no device change is needed
François Gaffie11d30102018-11-02 16:09:09 +0100705 if (isStateInCall(oldState) && rxDevices.isEmpty()) {
706 rxDevices = mPrimaryOutput->devices();
Eric Laurent87ffa392015-05-22 10:32:38 -0700707 }
Eric Laurente552edb2014-03-10 17:42:56 -0700708
Eric Laurent87ffa392015-05-22 10:32:38 -0700709 if (state == AUDIO_MODE_IN_CALL) {
François Gaffie11d30102018-11-02 16:09:09 +0100710 updateCallRouting(rxDevices, delayMs);
Eric Laurent87ffa392015-05-22 10:32:38 -0700711 } else if (oldState == AUDIO_MODE_IN_CALL) {
712 if (mCallRxPatch != 0) {
François Gaffieafd4cea2019-11-18 15:50:22 +0100713 releaseAudioPatchInternal(mCallRxPatch->getHandle());
Eric Laurent87ffa392015-05-22 10:32:38 -0700714 mCallRxPatch.clear();
715 }
716 if (mCallTxPatch != 0) {
François Gaffieafd4cea2019-11-18 15:50:22 +0100717 releaseAudioPatchInternal(mCallTxPatch->getHandle());
Eric Laurent87ffa392015-05-22 10:32:38 -0700718 mCallTxPatch.clear();
719 }
François Gaffie11d30102018-11-02 16:09:09 +0100720 setOutputDevices(mPrimaryOutput, rxDevices, force, 0);
Eric Laurent87ffa392015-05-22 10:32:38 -0700721 } else {
François Gaffie11d30102018-11-02 16:09:09 +0100722 setOutputDevices(mPrimaryOutput, rxDevices, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700723 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700724 }
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700725
726 // reevaluate routing on all outputs in case tracks have been started during the call
727 for (size_t i = 0; i < mOutputs.size(); i++) {
728 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
François Gaffie11d30102018-11-02 16:09:09 +0100729 DeviceVector newDevices = getNewOutputDevices(desc, true /*fromCache*/);
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700730 if (state != AUDIO_MODE_IN_CALL || desc != mPrimaryOutput) {
François Gaffie11d30102018-11-02 16:09:09 +0100731 setOutputDevices(desc, newDevices, !newDevices.isEmpty(), 0 /*delayMs*/);
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700732 }
733 }
734
Eric Laurente552edb2014-03-10 17:42:56 -0700735 if (isStateInCall(state)) {
736 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent63dea1d2015-07-02 17:10:28 -0700737 // force reevaluating accessibility routing when call starts
738 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700739 }
740
741 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
François Gaffiec005e562018-11-06 15:04:49 +0100742 mLimitRingtoneVolume = (state == AUDIO_MODE_RINGTONE &&
743 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY));
Eric Laurente552edb2014-03-10 17:42:56 -0700744}
745
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700746audio_mode_t AudioPolicyManager::getPhoneState() {
747 return mEngine->getPhoneState();
748}
749
Eric Laurente0720872014-03-11 09:30:41 -0700750void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
François Gaffie11d30102018-11-02 16:09:09 +0100751 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700752{
François Gaffie2110e042015-03-24 08:41:51 +0100753 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700754 if (config == mEngine->getForceUse(usage)) {
755 return;
756 }
Eric Laurente552edb2014-03-10 17:42:56 -0700757
François Gaffie2110e042015-03-24 08:41:51 +0100758 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
759 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
760 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700761 }
François Gaffie2110e042015-03-24 08:41:51 +0100762 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
763 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
764 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700765
766 // check for device and output changes triggered by new force usage
Mikhail Naganov37977152018-07-11 15:54:44 -0700767 checkForDeviceAndOutputChanges();
Phil Burk09bc4612016-02-24 15:58:15 -0800768
Eric Laurent22fcda22019-05-17 16:28:47 -0700769 // force client reconnection to reevaluate flag AUDIO_FLAG_AUDIBILITY_ENFORCED
770 if (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM) {
771 mpClientInterface->invalidateStream(AUDIO_STREAM_SYSTEM);
772 mpClientInterface->invalidateStream(AUDIO_STREAM_ENFORCED_AUDIBLE);
773 }
774
Eric Laurentdc462862016-07-19 12:29:53 -0700775 //FIXME: workaround for truncated touch sounds
776 // to be removed when the problem is handled by system UI
777 uint32_t delayMs = 0;
Eric Laurentdc462862016-07-19 12:29:53 -0700778 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
779 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
780 }
Jean-Michel Trivi30857152019-11-01 11:04:15 -0700781
782 updateCallAndOutputRouting(forceVolumeReeval, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -0700783
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800784 for (const auto& activeDesc : mInputs.getActiveInputs()) {
François Gaffie11d30102018-11-02 16:09:09 +0100785 auto newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700786 // Force new input selection if the new device can not be reached via current input
Francois Gaffie716e1432019-01-14 16:58:59 +0100787 if (activeDesc->mProfile->getSupportedDevices().contains(newDevice)) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800788 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700789 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800790 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700791 }
Eric Laurente552edb2014-03-10 17:42:56 -0700792 }
Eric Laurente552edb2014-03-10 17:42:56 -0700793}
794
Eric Laurente0720872014-03-11 09:30:41 -0700795void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700796{
797 ALOGV("setSystemProperty() property %s, value %s", property, value);
798}
799
Michael Chana94fbb22018-04-24 14:31:19 +1000800// Find an output profile compatible with the parameters passed. When "directOnly" is set, restrict
801// search to profiles for direct outputs.
802sp<IOProfile> AudioPolicyManager::getProfileForOutput(
François Gaffie11d30102018-11-02 16:09:09 +0100803 const DeviceVector& devices,
Michael Chana94fbb22018-04-24 14:31:19 +1000804 uint32_t samplingRate,
805 audio_format_t format,
806 audio_channel_mask_t channelMask,
807 audio_output_flags_t flags,
808 bool directOnly)
Eric Laurente552edb2014-03-10 17:42:56 -0700809{
Michael Chana94fbb22018-04-24 14:31:19 +1000810 if (directOnly) {
811 // only retain flags that will drive the direct output profile selection
812 // if explicitly requested
813 static const uint32_t kRelevantFlags =
814 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
Aniket Kumar Lataba810b82019-07-03 11:15:33 -0700815 AUDIO_OUTPUT_FLAG_VOIP_RX | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ);
Michael Chana94fbb22018-04-24 14:31:19 +1000816 flags =
817 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
818 }
Eric Laurent861a6282015-05-18 15:40:16 -0700819
820 sp<IOProfile> profile;
821
Mikhail Naganovd4120142017-12-06 15:49:22 -0800822 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -0800823 for (const auto& curProfile : hwModule->getOutputProfiles()) {
François Gaffie11d30102018-11-02 16:09:09 +0100824 if (!curProfile->isCompatibleProfile(devices,
Andy Hungf129b032015-04-07 13:45:50 -0700825 samplingRate, NULL /*updatedSamplingRate*/,
826 format, NULL /*updatedFormat*/,
827 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700828 flags)) {
829 continue;
830 }
831 // reject profiles not corresponding to a device currently available
François Gaffie11d30102018-11-02 16:09:09 +0100832 if (!mAvailableOutputDevices.containsAtLeastOne(curProfile->getSupportedDevices())) {
Eric Laurent861a6282015-05-18 15:40:16 -0700833 continue;
834 }
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800835 // reject profiles if connected device does not support codec
jiabin9a3361e2019-10-01 09:38:30 -0700836 if (!curProfile->devicesSupportEncodedFormats(devices.types())) {
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800837 continue;
838 }
Michael Chana94fbb22018-04-24 14:31:19 +1000839 if (!directOnly) return curProfile;
840 // when searching for direct outputs, if several profiles are compatible, give priority
841 // to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100842 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700843 continue;
844 }
845 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100846 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700847 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700848 }
Eric Laurente552edb2014-03-10 17:42:56 -0700849 }
850 }
Eric Laurent861a6282015-05-18 15:40:16 -0700851 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700852}
853
Eric Laurentf4e63452017-11-06 19:31:46 +0000854audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700855{
François Gaffiec005e562018-11-06 15:04:49 +0100856 DeviceVector devices = mEngine->getOutputDevicesForStream(stream, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800857
858 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
859 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
860 // format, flags, etc. This may result in some discrepancy for functions that utilize
861 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
862 // and AudioSystem::getOutputSamplingRate().
863
François Gaffie11d30102018-11-02 16:09:09 +0100864 SortedVector<audio_io_handle_t> outputs = getOutputsForDevices(devices, mOutputs);
Eric Laurent16c66dd2019-05-01 17:54:10 -0700865 const audio_io_handle_t output = selectOutput(outputs);
Eric Laurente552edb2014-03-10 17:42:56 -0700866
François Gaffie11d30102018-11-02 16:09:09 +0100867 ALOGV("getOutput() stream %d selected devices %s, output %d", stream,
868 devices.toString().c_str(), output);
Eric Laurentf4e63452017-11-06 19:31:46 +0000869 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700870}
871
Hongwei Wangbb93dfb2018-10-23 13:54:22 -0700872status_t AudioPolicyManager::getAudioAttributes(audio_attributes_t *dstAttr,
873 const audio_attributes_t *srcAttr,
874 audio_stream_type_t srcStream)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700875{
Hongwei Wangbb93dfb2018-10-23 13:54:22 -0700876 if (srcAttr != NULL) {
877 if (!isValidAttributes(srcAttr)) {
878 ALOGE("%s invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
879 __func__,
880 srcAttr->usage, srcAttr->content_type, srcAttr->flags,
881 srcAttr->tags);
882 return BAD_VALUE;
883 }
884 *dstAttr = *srcAttr;
885 } else {
886 if (srcStream < AUDIO_STREAM_MIN || srcStream >= AUDIO_STREAM_PUBLIC_CNT) {
887 ALOGE("%s: invalid stream type", __func__);
888 return BAD_VALUE;
889 }
François Gaffiec005e562018-11-06 15:04:49 +0100890 *dstAttr = mEngine->getAttributesForStreamType(srcStream);
Hongwei Wangbb93dfb2018-10-23 13:54:22 -0700891 }
Eric Laurent22fcda22019-05-17 16:28:47 -0700892
893 // Only honor audibility enforced when required. The client will be
894 // forced to reconnect if the forced usage changes.
895 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
896 dstAttr->flags &= ~AUDIO_FLAG_AUDIBILITY_ENFORCED;
897 }
898
Hongwei Wangbb93dfb2018-10-23 13:54:22 -0700899 return NO_ERROR;
900}
901
Kevin Rocard153f92d2018-12-18 18:33:28 -0800902status_t AudioPolicyManager::getOutputForAttrInt(
903 audio_attributes_t *resultAttr,
904 audio_io_handle_t *output,
905 audio_session_t session,
906 const audio_attributes_t *attr,
907 audio_stream_type_t *stream,
908 uid_t uid,
909 const audio_config_t *config,
910 audio_output_flags_t *flags,
911 audio_port_handle_t *selectedDeviceId,
912 bool *isRequestedDeviceForExclusiveUse,
Eric Laurentc529cf62020-04-17 18:19:10 -0700913 std::vector<sp<AudioPolicyMix>> *secondaryMixes,
Eric Laurent8a1095a2019-11-08 14:44:16 -0800914 output_type_t *outputType)
Hongwei Wangbb93dfb2018-10-23 13:54:22 -0700915{
François Gaffiec005e562018-11-06 15:04:49 +0100916 DeviceVector outputDevices;
Francois Gaffie716e1432019-01-14 16:58:59 +0100917 const audio_port_handle_t requestedPortId = *selectedDeviceId;
François Gaffie11d30102018-11-02 16:09:09 +0100918 DeviceVector msdDevices = getMsdAudioOutDevices();
François Gaffiec005e562018-11-06 15:04:49 +0100919 const sp<DeviceDescriptor> requestedDevice =
920 mAvailableOutputDevices.getDeviceFromId(requestedPortId);
921
Eric Laurent8a1095a2019-11-08 14:44:16 -0800922 *outputType = API_OUTPUT_INVALID;
Hongwei Wangbb93dfb2018-10-23 13:54:22 -0700923 status_t status = getAudioAttributes(resultAttr, attr, *stream);
924 if (status != NO_ERROR) {
925 return status;
Eric Laurent8f42ea12018-08-08 09:08:25 -0700926 }
Kevin Rocardb99cc752019-03-21 20:52:24 -0700927 if (auto it = mAllowedCapturePolicies.find(uid); it != end(mAllowedCapturePolicies)) {
928 resultAttr->flags |= it->second;
929 }
François Gaffiec005e562018-11-06 15:04:49 +0100930 *stream = mEngine->getStreamTypeForAttributes(*resultAttr);
Eric Laurent8f42ea12018-08-08 09:08:25 -0700931
François Gaffiec005e562018-11-06 15:04:49 +0100932 ALOGV("%s() attributes=%s stream=%s session %d selectedDeviceId %d", __func__,
933 toString(*resultAttr).c_str(), toString(*stream).c_str(), session, requestedPortId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700934
Kevin Rocard153f92d2018-12-18 18:33:28 -0800935 // The primary output is the explicit routing (eg. setPreferredDevice) if specified,
936 // otherwise, fallback to the dynamic policies, if none match, query the engine.
937 // Secondary outputs are always found by dynamic policies as the engine do not support them
Eric Laurentc529cf62020-04-17 18:19:10 -0700938 sp<AudioPolicyMix> primaryMix;
939 status = mPolicyMixes.getOutputForAttr(*resultAttr, uid, *flags, primaryMix, secondaryMixes);
Kevin Rocard94114a22019-04-01 19:38:23 -0700940 if (status != OK) {
941 return status;
Kevin Rocard153f92d2018-12-18 18:33:28 -0800942 }
Kevin Rocard94114a22019-04-01 19:38:23 -0700943
Kevin Rocard153f92d2018-12-18 18:33:28 -0800944 // Explicit routing is higher priority then any dynamic policy primary output
Eric Laurentc529cf62020-04-17 18:19:10 -0700945 bool usePrimaryOutputFromPolicyMixes = requestedDevice == nullptr && primaryMix != nullptr;
Kevin Rocard153f92d2018-12-18 18:33:28 -0800946
947 // FIXME: in case of RENDER policy, the output capabilities should be checked
Eric Laurentc529cf62020-04-17 18:19:10 -0700948 if ((usePrimaryOutputFromPolicyMixes
949 || (secondaryMixes != nullptr && !secondaryMixes->empty()))
Kevin Rocardc2afbdf2019-01-31 18:18:06 -0800950 && !audio_is_linear_pcm(config->format)) {
951 ALOGD("%s: rejecting request as dynamic audio policy only support pcm", __func__);
Kevin Rocard153f92d2018-12-18 18:33:28 -0800952 return BAD_VALUE;
953 }
954 if (usePrimaryOutputFromPolicyMixes) {
Eric Laurentc529cf62020-04-17 18:19:10 -0700955 sp<DeviceDescriptor> deviceDesc =
956 mAvailableOutputDevices.getDevice(primaryMix->mDeviceType,
957 primaryMix->mDeviceAddress,
958 AUDIO_FORMAT_DEFAULT);
959 sp<SwAudioOutputDescriptor> policyDesc = primaryMix->getOutput();
Eric Laurentc64e0ab2020-04-30 15:59:34 -0700960 if (deviceDesc != nullptr
961 && (policyDesc == nullptr || (policyDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT))) {
Eric Laurentc529cf62020-04-17 18:19:10 -0700962 audio_io_handle_t newOutput;
963 status = openDirectOutput(
964 *stream, session, config,
965 (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT),
966 DeviceVector(deviceDesc), &newOutput);
967 if (status != NO_ERROR) {
968 policyDesc = nullptr;
969 } else {
970 policyDesc = mOutputs.valueFor(newOutput);
971 primaryMix->setOutput(policyDesc);
972 }
973 }
974 if (policyDesc != nullptr) {
975 policyDesc->mPolicyMix = primaryMix;
976 *output = policyDesc->mIoHandle;
Jean-Michel Trivif41599b2020-01-07 14:22:08 -0800977 *selectedDeviceId = deviceDesc != 0 ? deviceDesc->getId() : AUDIO_PORT_HANDLE_NONE;
Eric Laurent8a1095a2019-11-08 14:44:16 -0800978
Jean-Michel Trivif41599b2020-01-07 14:22:08 -0800979 ALOGV("getOutputForAttr() returns output %d", *output);
980 if (resultAttr->usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
981 *outputType = API_OUT_MIX_PLAYBACK;
982 } else {
983 *outputType = API_OUTPUT_LEGACY;
984 }
985 return NO_ERROR;
Eric Laurent8a1095a2019-11-08 14:44:16 -0800986 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700987 }
François Gaffiec005e562018-11-06 15:04:49 +0100988 // Virtual sources must always be dynamicaly or explicitly routed
989 if (resultAttr->usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
990 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
991 return BAD_VALUE;
992 }
993 // explicit routing managed by getDeviceForStrategy in APM is now handled by engine
994 // in order to let the choice of the order to future vendor engine
995 outputDevices = mEngine->getOutputDevicesForAttributes(*resultAttr, requestedDevice, false);
Scott Randolph7b1fd232018-06-18 15:33:03 -0700996
Hongwei Wangbb93dfb2018-10-23 13:54:22 -0700997 if ((resultAttr->flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Nadav Bar766fb022018-01-07 12:18:03 +0200998 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
Eric Laurent93c3d412014-08-01 14:48:35 -0700999 }
1000
Nadav Barb2f18162018-07-18 13:01:53 +03001001 // Set incall music only if device was explicitly set, and fallback to the device which is
1002 // chosen by the engine if not.
1003 // FIXME: provide a more generic approach which is not device specific and move this back
1004 // to getOutputForDevice.
Nadav Bar20919492018-11-20 10:20:51 +02001005 // TODO: Remove check of AUDIO_STREAM_MUSIC once migration is completed on the app side.
jiabin9a3361e2019-10-01 09:38:30 -07001006 if (outputDevices.onlyContainsDevicesWithType(AUDIO_DEVICE_OUT_TELEPHONY_TX) &&
François Gaffiec005e562018-11-06 15:04:49 +01001007 (*stream == AUDIO_STREAM_MUSIC || resultAttr->usage == AUDIO_USAGE_VOICE_COMMUNICATION) &&
Nadav Barb2f18162018-07-18 13:01:53 +03001008 audio_is_linear_pcm(config->format) &&
Eric Laurent74b71512019-11-06 17:21:57 -08001009 isCallAudioAccessible()) {
Francois Gaffie716e1432019-01-14 16:58:59 +01001010 if (requestedPortId != AUDIO_PORT_HANDLE_NONE) {
Nadav Barb2f18162018-07-18 13:01:53 +03001011 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
François Gaffief579db52018-11-13 11:25:16 +01001012 *isRequestedDeviceForExclusiveUse = true;
Nadav Barb2f18162018-07-18 13:01:53 +03001013 }
1014 }
1015
François Gaffiec005e562018-11-06 15:04:49 +01001016 ALOGV("%s() device %s, sampling rate %d, format %#x, channel mask %#x, flags %#x stream %s",
1017 __func__, outputDevices.toString().c_str(), config->sample_rate, config->format,
1018 config->channel_mask, *flags, toString(*stream).c_str());
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001019
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001020 *output = AUDIO_IO_HANDLE_NONE;
François Gaffie11d30102018-11-02 16:09:09 +01001021 if (!msdDevices.isEmpty()) {
1022 *output = getOutputForDevices(msdDevices, session, *stream, config, flags);
François Gaffiec005e562018-11-06 15:04:49 +01001023 sp<DeviceDescriptor> device = outputDevices.isEmpty() ? nullptr : outputDevices.itemAt(0);
1024 if (*output != AUDIO_IO_HANDLE_NONE && setMsdPatch(device) == NO_ERROR) {
1025 ALOGV("%s() Using MSD devices %s instead of devices %s",
1026 __func__, msdDevices.toString().c_str(), outputDevices.toString().c_str());
1027 outputDevices = msdDevices;
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001028 } else {
1029 *output = AUDIO_IO_HANDLE_NONE;
1030 }
1031 }
1032 if (*output == AUDIO_IO_HANDLE_NONE) {
jiabine375d412019-02-26 12:54:53 -08001033 *output = getOutputForDevices(outputDevices, session, *stream, config,
Eric Laurent42984412019-05-09 17:57:03 -07001034 flags, resultAttr->flags & AUDIO_FLAG_MUTE_HAPTIC);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001035 }
Eric Laurente83b55d2014-11-14 10:06:21 -08001036 if (*output == AUDIO_IO_HANDLE_NONE) {
1037 return INVALID_OPERATION;
1038 }
Paul McLeanaa981192015-03-21 09:55:15 -07001039
François Gaffiec005e562018-11-06 15:04:49 +01001040 *selectedDeviceId = getFirstDeviceId(outputDevices);
Eric Laurent2ac76942017-06-22 17:17:09 -07001041
Eric Laurent8a1095a2019-11-08 14:44:16 -08001042 if (outputDevices.onlyContainsDevicesWithType(AUDIO_DEVICE_OUT_TELEPHONY_TX)) {
1043 *outputType = API_OUTPUT_TELEPHONY_TX;
1044 } else {
1045 *outputType = API_OUTPUT_LEGACY;
1046 }
1047
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001048 ALOGV("%s returns output %d selectedDeviceId %d", __func__, *output, *selectedDeviceId);
1049
1050 return NO_ERROR;
1051}
1052
1053status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
1054 audio_io_handle_t *output,
1055 audio_session_t session,
1056 audio_stream_type_t *stream,
1057 uid_t uid,
1058 const audio_config_t *config,
1059 audio_output_flags_t *flags,
1060 audio_port_handle_t *selectedDeviceId,
Kevin Rocard153f92d2018-12-18 18:33:28 -08001061 audio_port_handle_t *portId,
Eric Laurent8a1095a2019-11-08 14:44:16 -08001062 std::vector<audio_io_handle_t> *secondaryOutputs,
1063 output_type_t *outputType)
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001064{
1065 // The supplied portId must be AUDIO_PORT_HANDLE_NONE
1066 if (*portId != AUDIO_PORT_HANDLE_NONE) {
1067 return INVALID_OPERATION;
1068 }
Francois Gaffie716e1432019-01-14 16:58:59 +01001069 const audio_port_handle_t requestedPortId = *selectedDeviceId;
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001070 audio_attributes_t resultAttr;
François Gaffief579db52018-11-13 11:25:16 +01001071 bool isRequestedDeviceForExclusiveUse = false;
Eric Laurentc529cf62020-04-17 18:19:10 -07001072 std::vector<sp<AudioPolicyMix>> secondaryMixes;
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01001073 const sp<DeviceDescriptor> requestedDevice =
1074 mAvailableOutputDevices.getDeviceFromId(requestedPortId);
1075
1076 // Prevent from storing invalid requested device id in clients
1077 const audio_port_handle_t sanitizedRequestedPortId =
1078 requestedDevice != nullptr ? requestedPortId : AUDIO_PORT_HANDLE_NONE;
1079 *selectedDeviceId = sanitizedRequestedPortId;
1080
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001081 status_t status = getOutputForAttrInt(&resultAttr, output, session, attr, stream, uid,
Kevin Rocard153f92d2018-12-18 18:33:28 -08001082 config, flags, selectedDeviceId, &isRequestedDeviceForExclusiveUse,
Eric Laurentc529cf62020-04-17 18:19:10 -07001083 secondaryOutputs != nullptr ? &secondaryMixes : nullptr, outputType);
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001084 if (status != NO_ERROR) {
1085 return status;
1086 }
Kevin Rocard153f92d2018-12-18 18:33:28 -08001087 std::vector<wp<SwAudioOutputDescriptor>> weakSecondaryOutputDescs;
Eric Laurentc529cf62020-04-17 18:19:10 -07001088 if (secondaryOutputs != nullptr) {
1089 for (auto &secondaryMix : secondaryMixes) {
1090 sp<SwAudioOutputDescriptor> outputDesc = secondaryMix->getOutput();
1091 if (outputDesc != nullptr &&
1092 outputDesc->mIoHandle != AUDIO_IO_HANDLE_NONE) {
1093 secondaryOutputs->push_back(outputDesc->mIoHandle);
1094 weakSecondaryOutputDescs.push_back(outputDesc);
1095 }
1096 }
Kevin Rocard153f92d2018-12-18 18:33:28 -08001097 }
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001098
Eric Laurent8fc147b2018-07-22 19:13:55 -07001099 audio_config_base_t clientConfig = {.sample_rate = config->sample_rate,
Nick Desaulniersa30e3202019-10-18 13:38:23 -07001100 .channel_mask = config->channel_mask,
Eric Laurent8fc147b2018-07-22 19:13:55 -07001101 .format = config->format,
Nick Desaulniersa30e3202019-10-18 13:38:23 -07001102 };
jiabin4ef93452019-09-10 14:29:54 -07001103 *portId = PolicyAudioPort::getNextUniqueId();
Eric Laurent8f42ea12018-08-08 09:08:25 -07001104
Eric Laurentc209fe42020-06-05 18:11:23 -07001105 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(*output);
Eric Laurent8fc147b2018-07-22 19:13:55 -07001106 sp<TrackClientDescriptor> clientDesc =
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07001107 new TrackClientDescriptor(*portId, uid, session, resultAttr, clientConfig,
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01001108 sanitizedRequestedPortId, *stream,
François Gaffiec005e562018-11-06 15:04:49 +01001109 mEngine->getProductStrategyForAttributes(resultAttr),
François Gaffieaaac0fd2018-11-22 17:56:39 +01001110 toVolumeSource(resultAttr),
Kevin Rocard153f92d2018-12-18 18:33:28 -08001111 *flags, isRequestedDeviceForExclusiveUse,
Eric Laurentc209fe42020-06-05 18:11:23 -07001112 std::move(weakSecondaryOutputDescs),
1113 outputDesc->mPolicyMix);
Andy Hung39efb7a2018-09-26 15:39:28 -07001114 outputDesc->addClient(clientDesc);
Eric Laurent8fc147b2018-07-22 19:13:55 -07001115
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01001116 ALOGV("%s() returns output %d requestedPortId %d selectedDeviceId %d for port ID %d", __func__,
1117 *output, requestedPortId, *selectedDeviceId, *portId);
Eric Laurent2ac76942017-06-22 17:17:09 -07001118
Eric Laurente83b55d2014-11-14 10:06:21 -08001119 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001120}
1121
Eric Laurentc529cf62020-04-17 18:19:10 -07001122status_t AudioPolicyManager::openDirectOutput(audio_stream_type_t stream,
1123 audio_session_t session,
1124 const audio_config_t *config,
1125 audio_output_flags_t flags,
1126 const DeviceVector &devices,
1127 audio_io_handle_t *output) {
1128
1129 *output = AUDIO_IO_HANDLE_NONE;
1130
1131 // skip direct output selection if the request can obviously be attached to a mixed output
1132 // and not explicitly requested
1133 if (((flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
1134 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
1135 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
1136 return NAME_NOT_FOUND;
1137 }
1138
1139 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
1140 // This prevents creating an offloaded track and tearing it down immediately after start
1141 // when audioflinger detects there is an active non offloadable effect.
1142 // FIXME: We should check the audio session here but we do not have it in this context.
1143 // This may prevent offloading in rare situations where effects are left active by apps
1144 // in the background.
1145 sp<IOProfile> profile;
1146 if (((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
1147 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
1148 profile = getProfileForOutput(
1149 devices, config->sample_rate, config->format, config->channel_mask,
1150 flags, true /* directOnly */);
1151 }
1152
1153 if (profile == nullptr) {
1154 return NAME_NOT_FOUND;
1155 }
1156
1157 // exclusive outputs for MMAP and Offload are enforced by different session ids.
1158 for (size_t i = 0; i < mOutputs.size(); i++) {
1159 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
1160 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
1161 // reuse direct output if currently open by the same client
1162 // and configured with same parameters
1163 if ((config->sample_rate == desc->getSamplingRate()) &&
1164 (config->format == desc->getFormat()) &&
1165 (config->channel_mask == desc->getChannelMask()) &&
1166 (session == desc->mDirectClientSession)) {
1167 desc->mDirectOpenCount++;
1168 ALOGI("%s reusing direct output %d for session %d", __func__,
1169 mOutputs.keyAt(i), session);
1170 *output = mOutputs.keyAt(i);
1171 return NO_ERROR;
1172 }
1173 }
1174 }
1175
1176 if (!profile->canOpenNewIo()) {
1177 return NAME_NOT_FOUND;
1178 }
1179
1180 sp<SwAudioOutputDescriptor> outputDesc =
1181 new SwAudioOutputDescriptor(profile, mpClientInterface);
1182
1183 String8 address = getFirstDeviceAddress(devices);
1184
1185 // MSD patch may be using the only output stream that can service this request. Release
1186 // MSD patch to prioritize this request over any active output on MSD.
1187 AudioPatchCollection msdPatches = getMsdPatches();
1188 for (size_t i = 0; i < msdPatches.size(); i++) {
1189 const auto& patch = msdPatches[i];
1190 for (size_t j = 0; j < patch->mPatch.num_sinks; ++j) {
1191 const struct audio_port_config *sink = &patch->mPatch.sinks[j];
1192 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
1193 devices.containsDeviceWithType(sink->ext.device.type) &&
1194 (address.isEmpty() || strncmp(sink->ext.device.address, address.string(),
1195 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
1196 releaseAudioPatch(patch->getHandle(), mUidCached);
1197 break;
1198 }
1199 }
1200 }
1201
1202 status_t status = outputDesc->open(config, devices, stream, flags, output);
1203
1204 // only accept an output with the requested parameters
1205 if (status != NO_ERROR ||
1206 (config->sample_rate != 0 && config->sample_rate != outputDesc->getSamplingRate()) ||
1207 (config->format != AUDIO_FORMAT_DEFAULT && config->format != outputDesc->getFormat()) ||
1208 (config->channel_mask != 0 && config->channel_mask != outputDesc->getChannelMask())) {
1209 ALOGV("%s failed opening direct output: output %d sample rate %d %d,"
1210 "format %d %d, channel mask %04x %04x", __func__, *output, config->sample_rate,
1211 outputDesc->getSamplingRate(), config->format, outputDesc->getFormat(),
1212 config->channel_mask, outputDesc->getChannelMask());
1213 if (*output != AUDIO_IO_HANDLE_NONE) {
1214 outputDesc->close();
1215 }
1216 // fall back to mixer output if possible when the direct output could not be open
1217 if (audio_is_linear_pcm(config->format) &&
1218 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
1219 return NAME_NOT_FOUND;
1220 }
1221 *output = AUDIO_IO_HANDLE_NONE;
1222 return BAD_VALUE;
1223 }
1224 outputDesc->mDirectOpenCount = 1;
1225 outputDesc->mDirectClientSession = session;
1226
1227 addOutput(*output, outputDesc);
1228 mPreviousOutputs = mOutputs;
1229 ALOGV("%s returns new direct output %d", __func__, *output);
1230 mpClientInterface->onAudioPortListUpdate();
1231 return NO_ERROR;
1232}
1233
François Gaffie11d30102018-11-02 16:09:09 +01001234audio_io_handle_t AudioPolicyManager::getOutputForDevices(
1235 const DeviceVector &devices,
Kevin Rocard169753c2017-03-06 14:18:23 -08001236 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001237 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -08001238 const audio_config_t *config,
jiabine375d412019-02-26 12:54:53 -08001239 audio_output_flags_t *flags,
1240 bool forceMutingHaptic)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001241{
Andy Hungc88b0642018-04-27 15:42:35 -07001242 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07001243
jiabine375d412019-02-26 12:54:53 -08001244 // Discard haptic channel mask when forcing muting haptic channels.
1245 audio_channel_mask_t channelMask = forceMutingHaptic
1246 ? (config->channel_mask & ~AUDIO_CHANNEL_HAPTIC_ALL) : config->channel_mask;
1247
Eric Laurente552edb2014-03-10 17:42:56 -07001248 // open a direct output if required by specified parameters
1249 //force direct flag if offload flag is set: offloading implies a direct output stream
1250 // and all common behaviors are driven by checking only the direct flag
1251 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +02001252 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
1253 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -07001254 }
Nadav Bar766fb022018-01-07 12:18:03 +02001255 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
1256 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -07001257 }
Eric Laurente83b55d2014-11-14 10:06:21 -08001258 // only allow deep buffering for music stream type
1259 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +02001260 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -07001261 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +02001262 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -07001263 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
1264 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +02001265 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -08001266 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -07001267 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +02001268 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -07001269 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Nadav Bar20919492018-11-20 10:20:51 +02001270 audio_is_linear_pcm(config->format) &&
1271 (*flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) == 0) {
Nadav Bar766fb022018-01-07 12:18:03 +02001272 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -07001273 AUDIO_OUTPUT_FLAG_DIRECT);
1274 ALOGV("Set VoIP and Direct output flags for PCM format");
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -07001275 }
Eric Laurente552edb2014-03-10 17:42:56 -07001276
Eric Laurentc529cf62020-04-17 18:19:10 -07001277 audio_config_t directConfig = *config;
1278 directConfig.channel_mask = channelMask;
1279 status_t status = openDirectOutput(stream, session, &directConfig, *flags, devices, &output);
1280 if (status != NAME_NOT_FOUND) {
Eric Laurente552edb2014-03-10 17:42:56 -07001281 return output;
1282 }
1283
Eric Laurent14cbfca2016-03-17 09:42:16 -07001284 // A request for HW A/V sync cannot fallback to a mixed output because time
1285 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -08001286 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -07001287 return AUDIO_IO_HANDLE_NONE;
1288 }
1289
Eric Laurente552edb2014-03-10 17:42:56 -07001290 // ignoring channel mask due to downmix capability in mixer
1291
1292 // open a non direct output
1293
1294 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -08001295 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -07001296 // get which output is suitable for the specified stream. The actual
1297 // routing change will happen when startOutput() will be called
François Gaffie11d30102018-11-02 16:09:09 +01001298 SortedVector<audio_io_handle_t> outputs = getOutputsForDevices(devices, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07001299
Eric Laurent8838a382014-09-08 16:44:28 -07001300 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +02001301 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
jiabine375d412019-02-26 12:54:53 -08001302 output = selectOutput(outputs, *flags, config->format, channelMask, config->sample_rate);
Eric Laurente552edb2014-03-10 17:42:56 -07001303 }
François Gaffie11d30102018-11-02 16:09:09 +01001304 ALOGW_IF((output == 0), "getOutputForDevices() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001305 "sampling rate %d, format %#x, channels %#x, flags %#x",
jiabine375d412019-02-26 12:54:53 -08001306 stream, config->sample_rate, config->format, channelMask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001307
Eric Laurente552edb2014-03-10 17:42:56 -07001308 return output;
1309}
1310
Mikhail Naganovf02f3672018-11-09 12:44:16 -08001311sp<DeviceDescriptor> AudioPolicyManager::getMsdAudioInDevice() const {
François Gaffie11d30102018-11-02 16:09:09 +01001312 auto msdInDevices = mHwModules.getAvailableDevicesFromModuleName(AUDIO_HARDWARE_MODULE_ID_MSD,
1313 mAvailableInputDevices);
1314 return msdInDevices.isEmpty()? nullptr : msdInDevices.itemAt(0);
1315}
1316
1317DeviceVector AudioPolicyManager::getMsdAudioOutDevices() const {
1318 return mHwModules.getAvailableDevicesFromModuleName(AUDIO_HARDWARE_MODULE_ID_MSD,
1319 mAvailableOutputDevices);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001320}
1321
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001322const AudioPatchCollection AudioPolicyManager::getMsdPatches() const {
1323 AudioPatchCollection msdPatches;
Mikhail Naganov86112352018-10-04 09:02:49 -07001324 sp<HwModule> msdModule = mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_MSD);
1325 if (msdModule != 0) {
1326 for (size_t i = 0; i < mAudioPatches.size(); ++i) {
1327 sp<AudioPatch> patch = mAudioPatches.valueAt(i);
1328 for (size_t j = 0; j < patch->mPatch.num_sources; ++j) {
1329 const struct audio_port_config *source = &patch->mPatch.sources[j];
1330 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
1331 source->ext.device.hw_module == msdModule->getHandle()) {
François Gaffieafd4cea2019-11-18 15:50:22 +01001332 msdPatches.addAudioPatch(patch->getHandle(), patch);
Mikhail Naganov86112352018-10-04 09:02:49 -07001333 }
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001334 }
1335 }
1336 }
1337 return msdPatches;
1338}
1339
François Gaffie11d30102018-11-02 16:09:09 +01001340status_t AudioPolicyManager::getBestMsdAudioProfileFor(const sp<DeviceDescriptor> &outputDevice,
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001341 bool hwAvSync, audio_port_config *sourceConfig, audio_port_config *sinkConfig) const
1342{
Mikhail Naganov7bd9b8d2018-11-15 02:09:03 +00001343 sp<HwModule> msdModule = mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_MSD);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001344 if (msdModule == nullptr) {
1345 ALOGE("%s() unable to get MSD module", __func__);
1346 return NO_INIT;
1347 }
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08001348 sp<HwModule> deviceModule = mHwModules.getModuleForDevice(outputDevice, AUDIO_FORMAT_DEFAULT);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001349 if (deviceModule == nullptr) {
François Gaffie11d30102018-11-02 16:09:09 +01001350 ALOGE("%s() unable to get module for %s", __func__, outputDevice->toString().c_str());
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001351 return NO_INIT;
1352 }
1353 const InputProfileCollection &inputProfiles = msdModule->getInputProfiles();
1354 if (inputProfiles.isEmpty()) {
1355 ALOGE("%s() no input profiles for MSD module", __func__);
1356 return NO_INIT;
1357 }
1358 const OutputProfileCollection &outputProfiles = deviceModule->getOutputProfiles();
1359 if (outputProfiles.isEmpty()) {
François Gaffie11d30102018-11-02 16:09:09 +01001360 ALOGE("%s() no output profiles for device %s", __func__, outputDevice->toString().c_str());
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001361 return NO_INIT;
1362 }
1363 AudioProfileVector msdProfiles;
1364 // Each IOProfile represents a MixPort from audio_policy_configuration.xml
1365 for (const auto &inProfile : inputProfiles) {
1366 if (hwAvSync == ((inProfile->getFlags() & AUDIO_INPUT_FLAG_HW_AV_SYNC) != 0)) {
jiabin3e277cc2019-09-10 14:27:34 -07001367 appendAudioProfiles(msdProfiles, inProfile->getAudioProfiles());
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001368 }
1369 }
1370 AudioProfileVector deviceProfiles;
1371 for (const auto &outProfile : outputProfiles) {
1372 if (hwAvSync == ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0)) {
jiabin3e277cc2019-09-10 14:27:34 -07001373 appendAudioProfiles(deviceProfiles, outProfile->getAudioProfiles());
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001374 }
1375 }
1376 struct audio_config_base bestSinkConfig;
jiabin3e277cc2019-09-10 14:27:34 -07001377 status_t result = findBestMatchingOutputConfig(msdProfiles, deviceProfiles,
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001378 compressedFormatsOrder, surroundChannelMasksOrder, true /*preferHigherSamplingRates*/,
jiabin3e277cc2019-09-10 14:27:34 -07001379 bestSinkConfig);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001380 if (result != NO_ERROR) {
François Gaffie11d30102018-11-02 16:09:09 +01001381 ALOGD("%s() no matching profiles found for device: %s, hwAvSync: %d",
1382 __func__, outputDevice->toString().c_str(), hwAvSync);
Greg Kaiser83289652018-07-30 06:13:57 -07001383 return result;
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001384 }
1385 sinkConfig->sample_rate = bestSinkConfig.sample_rate;
1386 sinkConfig->channel_mask = bestSinkConfig.channel_mask;
1387 sinkConfig->format = bestSinkConfig.format;
1388 // For encoded streams force direct flag to prevent downstream mixing.
1389 sinkConfig->flags.output = static_cast<audio_output_flags_t>(
1390 sinkConfig->flags.output | AUDIO_OUTPUT_FLAG_DIRECT);
Dean Wheatley5c9f0832019-11-21 13:39:31 +11001391 if (audio_is_iec61937_compatible(sinkConfig->format)) {
1392 // For formats compatible with IEC61937 encapsulation, assume that
1393 // the record thread input from MSD is IEC61937 framed (for proportional buffer sizing).
1394 // Add the AUDIO_OUTPUT_FLAG_IEC958_NONAUDIO flag so downstream HAL can distinguish between
1395 // raw and IEC61937 framed streams.
1396 sinkConfig->flags.output = static_cast<audio_output_flags_t>(
1397 sinkConfig->flags.output | AUDIO_OUTPUT_FLAG_IEC958_NONAUDIO);
1398 }
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001399 sourceConfig->sample_rate = bestSinkConfig.sample_rate;
1400 // Specify exact channel mask to prevent guessing by bit count in PatchPanel.
1401 sourceConfig->channel_mask = audio_channel_mask_out_to_in(bestSinkConfig.channel_mask);
1402 sourceConfig->format = bestSinkConfig.format;
1403 // Copy input stream directly without any processing (e.g. resampling).
1404 sourceConfig->flags.input = static_cast<audio_input_flags_t>(
1405 sourceConfig->flags.input | AUDIO_INPUT_FLAG_DIRECT);
1406 if (hwAvSync) {
1407 sinkConfig->flags.output = static_cast<audio_output_flags_t>(
1408 sinkConfig->flags.output | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
1409 sourceConfig->flags.input = static_cast<audio_input_flags_t>(
1410 sourceConfig->flags.input | AUDIO_INPUT_FLAG_HW_AV_SYNC);
1411 }
1412 const unsigned int config_mask = AUDIO_PORT_CONFIG_SAMPLE_RATE |
1413 AUDIO_PORT_CONFIG_CHANNEL_MASK | AUDIO_PORT_CONFIG_FORMAT | AUDIO_PORT_CONFIG_FLAGS;
1414 sinkConfig->config_mask |= config_mask;
1415 sourceConfig->config_mask |= config_mask;
1416 return NO_ERROR;
1417}
1418
François Gaffie11d30102018-11-02 16:09:09 +01001419PatchBuilder AudioPolicyManager::buildMsdPatch(const sp<DeviceDescriptor> &outputDevice) const
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001420{
1421 PatchBuilder patchBuilder;
François Gaffie11d30102018-11-02 16:09:09 +01001422 patchBuilder.addSource(getMsdAudioInDevice()).addSink(outputDevice);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001423 audio_port_config sourceConfig = patchBuilder.patch()->sources[0];
1424 audio_port_config sinkConfig = patchBuilder.patch()->sinks[0];
1425 // TODO: Figure out whether MSD module has HW_AV_SYNC flag set in the AP config file.
1426 // For now, we just forcefully try with HwAvSync first.
1427 status_t res = getBestMsdAudioProfileFor(outputDevice, true /*hwAvSync*/,
1428 &sourceConfig, &sinkConfig) == NO_ERROR ? NO_ERROR :
1429 getBestMsdAudioProfileFor(
1430 outputDevice, false /*hwAvSync*/, &sourceConfig, &sinkConfig);
1431 if (res == NO_ERROR) {
1432 // Found a matching profile for encoded audio. Re-create PatchBuilder with this config.
1433 return (PatchBuilder()).addSource(sourceConfig).addSink(sinkConfig);
1434 }
1435 ALOGV("%s() no matching profile found. Fall through to default PCM patch"
1436 " supporting PCM format conversion.", __func__);
1437 return patchBuilder;
1438}
1439
François Gaffie11d30102018-11-02 16:09:09 +01001440status_t AudioPolicyManager::setMsdPatch(const sp<DeviceDescriptor> &outputDevice) {
1441 sp<DeviceDescriptor> device = outputDevice;
1442 if (device == nullptr) {
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001443 // Use media strategy for unspecified output device. This should only
1444 // occur on checkForDeviceAndOutputChanges(). Device connection events may
1445 // therefore invalidate explicit routing requests.
François Gaffiec005e562018-11-06 15:04:49 +01001446 DeviceVector devices = mEngine->getOutputDevicesForAttributes(
1447 attributes_initializer(AUDIO_USAGE_MEDIA), nullptr, false /*fromCache*/);
François Gaffie11d30102018-11-02 16:09:09 +01001448 LOG_ALWAYS_FATAL_IF(devices.isEmpty(), "no outpudevice to set Msd Patch");
1449 device = devices.itemAt(0);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001450 }
François Gaffie11d30102018-11-02 16:09:09 +01001451 ALOGV("%s() for device %s", __func__, device->toString().c_str());
1452 PatchBuilder patchBuilder = buildMsdPatch(device);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001453 const struct audio_patch* patch = patchBuilder.patch();
1454 const AudioPatchCollection msdPatches = getMsdPatches();
1455 if (!msdPatches.isEmpty()) {
1456 LOG_ALWAYS_FATAL_IF(msdPatches.size() > 1,
1457 "The current MSD prototype only supports one output patch");
1458 sp<AudioPatch> currentPatch = msdPatches.valueAt(0);
1459 if (audio_patches_are_equal(&currentPatch->mPatch, patch)) {
1460 return NO_ERROR;
1461 }
François Gaffieafd4cea2019-11-18 15:50:22 +01001462 releaseAudioPatch(currentPatch->getHandle(), mUidCached);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001463 }
1464 status_t status = installPatch(__func__, -1 /*index*/, nullptr /*patchHandle*/,
1465 patch, 0 /*delayMs*/, mUidCached, nullptr /*patchDescPtr*/);
1466 ALOGE_IF(status != NO_ERROR, "%s() error %d creating MSD audio patch", __func__, status);
1467 ALOGI_IF(status == NO_ERROR, "%s() Patch created from MSD_IN to "
François Gaffie11d30102018-11-02 16:09:09 +01001468 "device:%s (format:%#x channels:%#x samplerate:%d)", __func__,
1469 device->toString().c_str(), patch->sources[0].format,
1470 patch->sources[0].channel_mask, patch->sources[0].sample_rate);
Mikhail Naganov15be9d22017-11-08 14:18:13 +11001471 return status;
1472}
1473
Eric Laurente0720872014-03-11 09:30:41 -07001474audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -07001475 audio_output_flags_t flags,
jiabin40573322018-11-08 12:08:02 -08001476 audio_format_t format,
1477 audio_channel_mask_t channelMask,
1478 uint32_t samplingRate)
Eric Laurente552edb2014-03-10 17:42:56 -07001479{
Eric Laurent16c66dd2019-05-01 17:54:10 -07001480 LOG_ALWAYS_FATAL_IF(!(format == AUDIO_FORMAT_INVALID || audio_is_linear_pcm(format)),
1481 "%s called with format %#x", __func__, format);
1482
1483 // Flags disqualifying an output: the match must happen before calling selectOutput()
1484 static const audio_output_flags_t kExcludedFlags = (audio_output_flags_t)
1485 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ | AUDIO_OUTPUT_FLAG_DIRECT);
1486
1487 // Flags expressing a functional request: must be honored in priority over
1488 // other criteria
1489 static const audio_output_flags_t kFunctionalFlags = (audio_output_flags_t)
1490 (AUDIO_OUTPUT_FLAG_VOIP_RX | AUDIO_OUTPUT_FLAG_INCALL_MUSIC |
1491 AUDIO_OUTPUT_FLAG_TTS | AUDIO_OUTPUT_FLAG_DIRECT_PCM);
1492 // Flags expressing a performance request: have lower priority than serving
1493 // requested sampling rate or channel mask
1494 static const audio_output_flags_t kPerformanceFlags = (audio_output_flags_t)
1495 (AUDIO_OUTPUT_FLAG_FAST | AUDIO_OUTPUT_FLAG_DEEP_BUFFER |
1496 AUDIO_OUTPUT_FLAG_RAW | AUDIO_OUTPUT_FLAG_SYNC);
1497
1498 const audio_output_flags_t functionalFlags =
1499 (audio_output_flags_t)(flags & kFunctionalFlags);
1500 const audio_output_flags_t performanceFlags =
1501 (audio_output_flags_t)(flags & kPerformanceFlags);
1502
1503 audio_io_handle_t bestOutput = (outputs.size() == 0) ? AUDIO_IO_HANDLE_NONE : outputs[0];
1504
Eric Laurente552edb2014-03-10 17:42:56 -07001505 // select one output among several that provide a path to a particular device or set of
François Gaffie11d30102018-11-02 16:09:09 +01001506 // devices (the list was previously build by getOutputsForDevices()).
Eric Laurente552edb2014-03-10 17:42:56 -07001507 // The priority is as follows:
jiabin40573322018-11-08 12:08:02 -08001508 // 1: the output supporting haptic playback when requesting haptic playback
Eric Laurent16c66dd2019-05-01 17:54:10 -07001509 // 2: the output with the highest number of requested functional flags
1510 // 3: the output supporting the exact channel mask
1511 // 4: the output with a higher channel count than requested
1512 // 5: the output with a higher sampling rate than requested
1513 // 6: the output with the highest number of requested performance flags
1514 // 7: the output with the bit depth the closest to the requested one
1515 // 8: the primary output
1516 // 9: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001517
Eric Laurent16c66dd2019-05-01 17:54:10 -07001518 // matching criteria values in priority order for best matching output so far
1519 std::vector<uint32_t> bestMatchCriteria(8, 0);
Eric Laurente552edb2014-03-10 17:42:56 -07001520
Eric Laurent16c66dd2019-05-01 17:54:10 -07001521 const uint32_t channelCount = audio_channel_count_from_out_mask(channelMask);
1522 const uint32_t hapticChannelCount = audio_channel_count_from_out_mask(
1523 channelMask & AUDIO_CHANNEL_HAPTIC_ALL);
Eric Laurente78b6762018-12-19 16:29:01 -08001524
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001525 for (audio_io_handle_t output : outputs) {
1526 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent16c66dd2019-05-01 17:54:10 -07001527 // matching criteria values in priority order for current output
1528 std::vector<uint32_t> currentMatchCriteria(8, 0);
jiabin40573322018-11-08 12:08:02 -08001529
Eric Laurent16c66dd2019-05-01 17:54:10 -07001530 if (outputDesc->isDuplicated()) {
1531 continue;
1532 }
1533 if ((kExcludedFlags & outputDesc->mFlags) != 0) {
1534 continue;
1535 }
Eric Laurent8838a382014-09-08 16:44:28 -07001536
Eric Laurent16c66dd2019-05-01 17:54:10 -07001537 // If haptic channel is specified, use the haptic output if present.
1538 // When using haptic output, same audio format and sample rate are required.
1539 const uint32_t outputHapticChannelCount = audio_channel_count_from_out_mask(
jiabin5740f082019-08-19 15:08:30 -07001540 outputDesc->getChannelMask() & AUDIO_CHANNEL_HAPTIC_ALL);
Eric Laurent16c66dd2019-05-01 17:54:10 -07001541 if ((hapticChannelCount == 0) != (outputHapticChannelCount == 0)) {
1542 continue;
1543 }
1544 if (outputHapticChannelCount >= hapticChannelCount
jiabin5740f082019-08-19 15:08:30 -07001545 && format == outputDesc->getFormat()
1546 && samplingRate == outputDesc->getSamplingRate()) {
Eric Laurent16c66dd2019-05-01 17:54:10 -07001547 currentMatchCriteria[0] = outputHapticChannelCount;
1548 }
1549
1550 // functional flags match
1551 currentMatchCriteria[1] = popcount(outputDesc->mFlags & functionalFlags);
1552
1553 // channel mask and channel count match
jiabin5740f082019-08-19 15:08:30 -07001554 uint32_t outputChannelCount = audio_channel_count_from_out_mask(
1555 outputDesc->getChannelMask());
Eric Laurent16c66dd2019-05-01 17:54:10 -07001556 if (channelMask != AUDIO_CHANNEL_NONE && channelCount > 2 &&
1557 channelCount <= outputChannelCount) {
1558 if ((audio_channel_mask_get_representation(channelMask) ==
jiabin5740f082019-08-19 15:08:30 -07001559 audio_channel_mask_get_representation(outputDesc->getChannelMask())) &&
1560 ((channelMask & outputDesc->getChannelMask()) == channelMask)) {
Eric Laurent16c66dd2019-05-01 17:54:10 -07001561 currentMatchCriteria[2] = outputChannelCount;
Eric Laurente552edb2014-03-10 17:42:56 -07001562 }
Eric Laurent16c66dd2019-05-01 17:54:10 -07001563 currentMatchCriteria[3] = outputChannelCount;
1564 }
1565
1566 // sampling rate match
1567 if (samplingRate > SAMPLE_RATE_HZ_DEFAULT &&
jiabin5740f082019-08-19 15:08:30 -07001568 samplingRate <= outputDesc->getSamplingRate()) {
1569 currentMatchCriteria[4] = outputDesc->getSamplingRate();
Eric Laurent16c66dd2019-05-01 17:54:10 -07001570 }
1571
1572 // performance flags match
1573 currentMatchCriteria[5] = popcount(outputDesc->mFlags & performanceFlags);
1574
1575 // format match
1576 if (format != AUDIO_FORMAT_INVALID) {
1577 currentMatchCriteria[6] =
jiabin4ef93452019-09-10 14:29:54 -07001578 PolicyAudioPort::kFormatDistanceMax -
1579 PolicyAudioPort::formatDistance(format, outputDesc->getFormat());
Eric Laurent16c66dd2019-05-01 17:54:10 -07001580 }
1581
1582 // primary output match
1583 currentMatchCriteria[7] = outputDesc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY;
1584
1585 // compare match criteria by priority then value
1586 if (std::lexicographical_compare(bestMatchCriteria.begin(), bestMatchCriteria.end(),
1587 currentMatchCriteria.begin(), currentMatchCriteria.end())) {
1588 bestMatchCriteria = currentMatchCriteria;
1589 bestOutput = output;
1590
1591 std::stringstream result;
1592 std::copy(bestMatchCriteria.begin(), bestMatchCriteria.end(),
1593 std::ostream_iterator<int>(result, " "));
1594 ALOGV("%s new bestOutput %d criteria %s",
1595 __func__, bestOutput, result.str().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07001596 }
1597 }
1598
Eric Laurent16c66dd2019-05-01 17:54:10 -07001599 return bestOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07001600}
1601
Eric Laurent8fc147b2018-07-22 19:13:55 -07001602status_t AudioPolicyManager::startOutput(audio_port_handle_t portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001603{
Eric Laurent8fc147b2018-07-22 19:13:55 -07001604 ALOGV("%s portId %d", __FUNCTION__, portId);
1605
1606 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputForClient(portId);
1607 if (outputDesc == 0) {
1608 ALOGW("startOutput() no output for client %d", portId);
Eric Laurente552edb2014-03-10 17:42:56 -07001609 return BAD_VALUE;
1610 }
Andy Hung39efb7a2018-09-26 15:39:28 -07001611 sp<TrackClientDescriptor> client = outputDesc->getClient(portId);
Eric Laurente552edb2014-03-10 17:42:56 -07001612
Eric Laurent8fc147b2018-07-22 19:13:55 -07001613 ALOGV("startOutput() output %d, stream %d, session %d",
Eric Laurent97ac8712018-07-27 18:59:02 -07001614 outputDesc->mIoHandle, client->stream(), client->session());
Eric Laurentc75307b2015-03-17 15:29:32 -07001615
Eric Laurent733ce942017-12-07 12:18:25 -08001616 status_t status = outputDesc->start();
1617 if (status != NO_ERROR) {
1618 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001619 }
1620
Eric Laurent97ac8712018-07-27 18:59:02 -07001621 uint32_t delayMs;
1622 status = startSource(outputDesc, client, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001623
1624 if (status != NO_ERROR) {
Eric Laurent733ce942017-12-07 12:18:25 -08001625 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001626 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001627 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001628 if (delayMs != 0) {
1629 usleep(delayMs * 1000);
1630 }
1631
1632 return status;
1633}
1634
Eric Laurent97ac8712018-07-27 18:59:02 -07001635status_t AudioPolicyManager::startSource(const sp<SwAudioOutputDescriptor>& outputDesc,
1636 const sp<TrackClientDescriptor>& client,
1637 uint32_t *delayMs)
Eric Laurentc75307b2015-03-17 15:29:32 -07001638{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001639 // cannot start playback of STREAM_TTS if any other output is being used
1640 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001641
1642 *delayMs = 0;
Eric Laurent97ac8712018-07-27 18:59:02 -07001643 audio_stream_type_t stream = client->stream();
François Gaffie1c878552018-11-22 16:53:21 +01001644 auto clientVolSrc = client->volumeSource();
François Gaffiec005e562018-11-06 15:04:49 +01001645 auto clientStrategy = client->strategy();
1646 auto clientAttr = client->attributes();
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001647 if (stream == AUDIO_STREAM_TTS) {
1648 ALOGV("\t found BEACON stream");
François Gaffie1c878552018-11-22 16:53:21 +01001649 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(
Eric Laurent83d17c22019-04-02 17:10:01 -07001650 toVolumeSource(AUDIO_STREAM_TTS) /*sourceToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001651 return INVALID_OPERATION;
1652 } else {
1653 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1654 }
1655 } else {
1656 // some playback other than beacon starts
1657 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1658 }
1659
Eric Laurent77305a62016-07-25 16:39:22 -07001660 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001661 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001662 bool force = !outputDesc->isActive() &&
1663 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001664
François Gaffie11d30102018-11-02 16:09:09 +01001665 DeviceVector devices;
Mikhail Naganovbfac5832019-03-05 16:55:28 -08001666 sp<AudioPolicyMix> policyMix = outputDesc->mPolicyMix.promote();
Eric Laurent97ac8712018-07-27 18:59:02 -07001667 const char *address = NULL;
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08001668 if (policyMix != nullptr) {
François Gaffie11d30102018-11-02 16:09:09 +01001669 audio_devices_t newDeviceType;
Eric Laurent97ac8712018-07-27 18:59:02 -07001670 address = policyMix->mDeviceAddress.string();
Kevin Rocard153f92d2018-12-18 18:33:28 -08001671 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie11d30102018-11-02 16:09:09 +01001672 newDeviceType = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
Kevin Rocard153f92d2018-12-18 18:33:28 -08001673 } else {
1674 newDeviceType = policyMix->mDeviceType;
Eric Laurent97ac8712018-07-27 18:59:02 -07001675 }
Kevin Rocard153f92d2018-12-18 18:33:28 -08001676 sp device = mAvailableOutputDevices.getDevice(newDeviceType, String8(address),
1677 AUDIO_FORMAT_DEFAULT);
1678 ALOG_ASSERT(device, "%s: no device found t=%u, a=%s", __func__, newDeviceType, address);
1679 devices.add(device);
Eric Laurent97ac8712018-07-27 18:59:02 -07001680 }
1681
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001682 // requiresMuteCheck is false when we can bypass mute strategy.
1683 // It covers a common case when there is no materially active audio
1684 // and muting would result in unnecessary delay and dropped audio.
1685 const uint32_t outputLatencyMs = outputDesc->latency();
1686 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1687
Eric Laurente552edb2014-03-10 17:42:56 -07001688 // increment usage count for this stream on the requested output:
1689 // NOTE that the usage count is the same for duplicated output and hardware output which is
1690 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
Eric Laurent592dd7b2018-08-05 18:58:48 -07001691 outputDesc->setClientActive(client, true);
Eric Laurent97ac8712018-07-27 18:59:02 -07001692
1693 if (client->hasPreferredDevice(true)) {
François Gaffief96e5432019-04-09 17:13:56 +02001694 if (outputDesc->clientsList(true /*activeOnly*/).size() == 1 &&
1695 client->isPreferredDeviceForExclusiveUse()) {
1696 // Preferred device may be exclusive, use only if no other active clients on this output
1697 devices = DeviceVector(
1698 mAvailableOutputDevices.getDeviceFromId(client->preferredDeviceId()));
1699 } else {
1700 devices = getNewOutputDevices(outputDesc, false /*fromCache*/);
1701 }
François Gaffie11d30102018-11-02 16:09:09 +01001702 if (devices != outputDesc->devices()) {
François Gaffiec005e562018-11-06 15:04:49 +01001703 checkStrategyRoute(clientStrategy, outputDesc->mIoHandle);
Eric Laurent97ac8712018-07-27 18:59:02 -07001704 }
1705 }
Eric Laurente552edb2014-03-10 17:42:56 -07001706
François Gaffiec005e562018-11-06 15:04:49 +01001707 if (followsSameRouting(clientAttr, attributes_initializer(AUDIO_USAGE_MEDIA))) {
Eric Laurent36829f92017-04-07 19:04:42 -07001708 selectOutputForMusicEffects();
1709 }
1710
François Gaffie1c878552018-11-22 16:53:21 +01001711 if (outputDesc->getActivityCount(clientVolSrc) == 1 || !devices.isEmpty()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001712 // starting an output being rerouted?
François Gaffie11d30102018-11-02 16:09:09 +01001713 if (devices.isEmpty()) {
1714 devices = getNewOutputDevices(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001715 }
François Gaffiec005e562018-11-06 15:04:49 +01001716 bool shouldWait =
1717 (followsSameRouting(clientAttr, attributes_initializer(AUDIO_USAGE_ALARM)) ||
1718 followsSameRouting(clientAttr, attributes_initializer(AUDIO_USAGE_NOTIFICATION)) ||
1719 (beaconMuteLatency > 0));
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001720 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001721 for (size_t i = 0; i < mOutputs.size(); i++) {
François Gaffie11d30102018-11-02 16:09:09 +01001722 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001723 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001724 // An output has a shared device if
1725 // - managed by the same hw module
1726 // - supports the currently selected device
1727 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
François Gaffie11d30102018-11-02 16:09:09 +01001728 && (!desc->filterSupportedDevices(devices).isEmpty());
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001729
Eric Laurent77305a62016-07-25 16:39:22 -07001730 // force a device change if any other output is:
1731 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001732 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001733 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001734 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001735 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001736 // change the device currently selected by the other output.
1737 if (sharedDevice &&
François Gaffie11d30102018-11-02 16:09:09 +01001738 desc->devices() != devices &&
Eric Laurent77305a62016-07-25 16:39:22 -07001739 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001740 force = true;
1741 }
1742 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001743 // a notification so that audio focus effect can propagate, or that a mute/unmute
1744 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001745 const uint32_t latencyMs = desc->latency();
1746 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1747
1748 if (shouldWait && isActive && (waitMs < latencyMs)) {
1749 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001750 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001751
1752 // Require mute check if another output is on a shared device
1753 // and currently active to have proper drain and avoid pops.
1754 // Note restoring AudioTracks onto this output needs to invoke
1755 // a volume ramp if there is no mute.
1756 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001757 }
1758 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001759
1760 const uint32_t muteWaitMs =
François Gaffie11d30102018-11-02 16:09:09 +01001761 setOutputDevices(outputDesc, devices, force, 0, NULL, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001762
Eric Laurente552edb2014-03-10 17:42:56 -07001763 // apply volume rules for current stream and device if necessary
François Gaffieaaac0fd2018-11-22 17:56:39 +01001764 auto &curves = getVolumeCurves(client->attributes());
1765 checkAndSetVolume(curves, client->volumeSource(),
1766 curves.getVolumeIndex(outputDesc->devices().types()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001767 outputDesc,
François Gaffie11d30102018-11-02 16:09:09 +01001768 outputDesc->devices().types());
Eric Laurente552edb2014-03-10 17:42:56 -07001769
1770 // update the outputs if starting an output with a stream that can affect notification
1771 // routing
1772 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001773
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001774 // force reevaluating accessibility routing when ringtone or alarm starts
François Gaffiec005e562018-11-06 15:04:49 +01001775 if (followsSameRouting(clientAttr, attributes_initializer(AUDIO_USAGE_ALARM))) {
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001776 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1777 }
Eric Laurentdc462862016-07-19 12:29:53 -07001778
1779 if (waitMs > muteWaitMs) {
1780 *delayMs = waitMs - muteWaitMs;
1781 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001782
1783 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1784 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1785 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1786 // change occurs after the MixerThread starts and causes a stream volume
1787 // glitch.
1788 //
1789 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001790 }
Eric Laurentdc462862016-07-19 12:29:53 -07001791
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001792 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
jiabin9a3361e2019-10-01 09:38:30 -07001793 mEngine->getForceUse(
1794 AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
François Gaffiec005e562018-11-06 15:04:49 +01001795 setStrategyMute(streamToStrategy(AUDIO_STREAM_ALARM), true, outputDesc);
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001796 }
1797
Eric Laurent97ac8712018-07-27 18:59:02 -07001798 // Automatically enable the remote submix input when output is started on a re routing mix
1799 // of type MIX_TYPE_RECORDERS
jiabin9a3361e2019-10-01 09:38:30 -07001800 if (isSingleDeviceType(devices.types(), &audio_is_remote_submix_device) &&
1801 policyMix != NULL && policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurent97ac8712018-07-27 18:59:02 -07001802 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1803 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
1804 address,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08001805 "remote-submix",
1806 AUDIO_FORMAT_DEFAULT);
Eric Laurent97ac8712018-07-27 18:59:02 -07001807 }
1808
Eric Laurente552edb2014-03-10 17:42:56 -07001809 return NO_ERROR;
1810}
1811
Eric Laurent8fc147b2018-07-22 19:13:55 -07001812status_t AudioPolicyManager::stopOutput(audio_port_handle_t portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001813{
Eric Laurent8fc147b2018-07-22 19:13:55 -07001814 ALOGV("%s portId %d", __FUNCTION__, portId);
1815
1816 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputForClient(portId);
1817 if (outputDesc == 0) {
1818 ALOGW("stopOutput() no output for client %d", portId);
Eric Laurente552edb2014-03-10 17:42:56 -07001819 return BAD_VALUE;
1820 }
Andy Hung39efb7a2018-09-26 15:39:28 -07001821 sp<TrackClientDescriptor> client = outputDesc->getClient(portId);
Eric Laurente552edb2014-03-10 17:42:56 -07001822
Eric Laurent97ac8712018-07-27 18:59:02 -07001823 ALOGV("stopOutput() output %d, stream %d, session %d",
1824 outputDesc->mIoHandle, client->stream(), client->session());
Eric Laurente552edb2014-03-10 17:42:56 -07001825
Eric Laurent97ac8712018-07-27 18:59:02 -07001826 status_t status = stopSource(outputDesc, client);
Eric Laurent3974e3b2017-12-07 17:58:43 -08001827
Eric Laurent733ce942017-12-07 12:18:25 -08001828 if (status == NO_ERROR ) {
1829 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001830 }
1831 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001832}
1833
Eric Laurent97ac8712018-07-27 18:59:02 -07001834status_t AudioPolicyManager::stopSource(const sp<SwAudioOutputDescriptor>& outputDesc,
1835 const sp<TrackClientDescriptor>& client)
Eric Laurentc75307b2015-03-17 15:29:32 -07001836{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001837 // always handle stream stop, check which stream type is stopping
Eric Laurent97ac8712018-07-27 18:59:02 -07001838 audio_stream_type_t stream = client->stream();
François Gaffie1c878552018-11-22 16:53:21 +01001839 auto clientVolSrc = client->volumeSource();
Eric Laurent97ac8712018-07-27 18:59:02 -07001840
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001841 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1842
François Gaffie1c878552018-11-22 16:53:21 +01001843 if (outputDesc->getActivityCount(clientVolSrc) > 0) {
1844 if (outputDesc->getActivityCount(clientVolSrc) == 1) {
Eric Laurent97ac8712018-07-27 18:59:02 -07001845 // Automatically disable the remote submix input when output is stopped on a
1846 // re routing mix of type MIX_TYPE_RECORDERS
Mikhail Naganovbfac5832019-03-05 16:55:28 -08001847 sp<AudioPolicyMix> policyMix = outputDesc->mPolicyMix.promote();
jiabin9a3361e2019-10-01 09:38:30 -07001848 if (isSingleDeviceType(
1849 outputDesc->devices().types(), &audio_is_remote_submix_device) &&
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08001850 policyMix != nullptr &&
Mikhail Naganovbfac5832019-03-05 16:55:28 -08001851 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurent97ac8712018-07-27 18:59:02 -07001852 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1853 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Mikhail Naganovbfac5832019-03-05 16:55:28 -08001854 policyMix->mDeviceAddress,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08001855 "remote-submix", AUDIO_FORMAT_DEFAULT);
Eric Laurent97ac8712018-07-27 18:59:02 -07001856 }
1857 }
1858 bool forceDeviceUpdate = false;
1859 if (client->hasPreferredDevice(true)) {
François Gaffiec005e562018-11-06 15:04:49 +01001860 checkStrategyRoute(client->strategy(), AUDIO_IO_HANDLE_NONE);
Eric Laurent97ac8712018-07-27 18:59:02 -07001861 forceDeviceUpdate = true;
1862 }
1863
Eric Laurente552edb2014-03-10 17:42:56 -07001864 // decrement usage count of this stream on the output
Eric Laurent592dd7b2018-08-05 18:58:48 -07001865 outputDesc->setClientActive(client, false);
Paul McLeanaa981192015-03-21 09:55:15 -07001866
Eric Laurente552edb2014-03-10 17:42:56 -07001867 // store time at which the stream was stopped - see isStreamActive()
François Gaffie1c878552018-11-22 16:53:21 +01001868 if (outputDesc->getActivityCount(clientVolSrc) == 0 || forceDeviceUpdate) {
François Gaffiec005e562018-11-06 15:04:49 +01001869 outputDesc->setStopTime(client, systemTime());
François Gaffie11d30102018-11-02 16:09:09 +01001870 DeviceVector newDevices = getNewOutputDevices(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001871 // delay the device switch by twice the latency because stopOutput() is executed when
1872 // the track stop() command is received and at that time the audio track buffer can
1873 // still contain data that needs to be drained. The latency only covers the audio HAL
1874 // and kernel buffers. Also the latency does not always include additional delay in the
1875 // audio path (audio DSP, CODEC ...)
François Gaffie11d30102018-11-02 16:09:09 +01001876 setOutputDevices(outputDesc, newDevices, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001877
1878 // force restoring the device selection on other active outputs if it differs from the
1879 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001880 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001881 for (size_t i = 0; i < mOutputs.size(); i++) {
François Gaffie11d30102018-11-02 16:09:09 +01001882 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001883 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001884 desc->isActive() &&
1885 outputDesc->sharesHwModuleWith(desc) &&
François Gaffie11d30102018-11-02 16:09:09 +01001886 (newDevices != desc->devices())) {
1887 DeviceVector newDevices2 = getNewOutputDevices(desc, false /*fromCache*/);
1888 bool force = desc->devices() != newDevices2;
Eric Laurentf3a5a602018-05-22 18:42:55 -07001889
François Gaffie11d30102018-11-02 16:09:09 +01001890 setOutputDevices(desc, newDevices2, force, delayMs);
1891
Eric Laurent57de36c2016-09-28 16:59:11 -07001892 // re-apply device specific volume if not done by setOutputDevice()
1893 if (!force) {
François Gaffie11d30102018-11-02 16:09:09 +01001894 applyStreamVolumes(desc, newDevices2.types(), delayMs);
Eric Laurent57de36c2016-09-28 16:59:11 -07001895 }
Eric Laurente552edb2014-03-10 17:42:56 -07001896 }
1897 }
1898 // update the outputs if stopping one with a stream that can affect notification routing
1899 handleNotificationRoutingForStream(stream);
1900 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001901
1902 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1903 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Jean-Michel Trivi74e01fa2019-02-25 12:18:09 -08001904 setStrategyMute(streamToStrategy(AUDIO_STREAM_ALARM), false, outputDesc);
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001905 }
1906
François Gaffiec005e562018-11-06 15:04:49 +01001907 if (followsSameRouting(client->attributes(), attributes_initializer(AUDIO_USAGE_MEDIA))) {
Eric Laurent36829f92017-04-07 19:04:42 -07001908 selectOutputForMusicEffects();
1909 }
Eric Laurente552edb2014-03-10 17:42:56 -07001910 return NO_ERROR;
1911 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001912 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001913 return INVALID_OPERATION;
1914 }
1915}
1916
Eric Laurent8fc147b2018-07-22 19:13:55 -07001917void AudioPolicyManager::releaseOutput(audio_port_handle_t portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001918{
Eric Laurent8fc147b2018-07-22 19:13:55 -07001919 ALOGV("%s portId %d", __FUNCTION__, portId);
1920
1921 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputForClient(portId);
1922 if (outputDesc == 0) {
Andy Hung39efb7a2018-09-26 15:39:28 -07001923 // If an output descriptor is closed due to a device routing change,
1924 // then there are race conditions with releaseOutput from tracks
1925 // that may be destroyed (with no PlaybackThread) or a PlaybackThread
1926 // destroyed shortly thereafter.
1927 //
1928 // Here we just log a warning, instead of a fatal error.
Eric Laurent8fc147b2018-07-22 19:13:55 -07001929 ALOGW("releaseOutput() no output for client %d", portId);
Eric Laurente552edb2014-03-10 17:42:56 -07001930 return;
1931 }
Eric Laurent8fc147b2018-07-22 19:13:55 -07001932
1933 ALOGV("releaseOutput() %d", outputDesc->mIoHandle);
Eric Laurente552edb2014-03-10 17:42:56 -07001934
Eric Laurent8fc147b2018-07-22 19:13:55 -07001935 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
1936 if (outputDesc->mDirectOpenCount <= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07001937 ALOGW("releaseOutput() invalid open count %d for output %d",
Eric Laurent8fc147b2018-07-22 19:13:55 -07001938 outputDesc->mDirectOpenCount, outputDesc->mIoHandle);
Eric Laurente552edb2014-03-10 17:42:56 -07001939 return;
1940 }
Eric Laurent8fc147b2018-07-22 19:13:55 -07001941 if (--outputDesc->mDirectOpenCount == 0) {
1942 closeOutput(outputDesc->mIoHandle);
Eric Laurentb52c1522014-05-20 11:27:36 -07001943 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001944 }
1945 }
Andy Hung39efb7a2018-09-26 15:39:28 -07001946 // stopOutput() needs to be successfully called before releaseOutput()
1947 // otherwise there may be inaccurate stream reference counts.
1948 // This is checked in outputDesc->removeClient below.
1949 outputDesc->removeClient(portId);
Eric Laurente552edb2014-03-10 17:42:56 -07001950}
1951
Eric Laurentcaf7f482014-11-25 17:50:47 -08001952status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1953 audio_io_handle_t *input,
Mikhail Naganov2996f672019-04-18 12:29:59 -07001954 audio_unique_id_t riid,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001955 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001956 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001957 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001958 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001959 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001960 input_type_t *inputType,
1961 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001962{
François Gaffiec005e562018-11-06 15:04:49 +01001963 ALOGV("%s() source %d, sampling rate %d, format %#x, channel mask %#x, session %d, "
1964 "flags %#x attributes=%s", __func__, attr->source, config->sample_rate,
1965 config->format, config->channel_mask, session, flags, toString(*attr).c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07001966
Eric Laurentad2e7b92017-09-14 20:06:42 -07001967 status_t status = NO_ERROR;
Eric Laurentc447ded2015-01-06 08:47:05 -08001968 audio_source_t halInputSource;
Francois Gaffie716e1432019-01-14 16:58:59 +01001969 audio_attributes_t attributes = *attr;
Mikhail Naganovbfac5832019-03-05 16:55:28 -08001970 sp<AudioPolicyMix> policyMix;
François Gaffie11d30102018-11-02 16:09:09 +01001971 sp<DeviceDescriptor> device;
Eric Laurent8fc147b2018-07-22 19:13:55 -07001972 sp<AudioInputDescriptor> inputDesc;
1973 sp<RecordClientDescriptor> clientDesc;
1974 audio_port_handle_t requestedDeviceId = *selectedDeviceId;
Eric Laurent8f42ea12018-08-08 09:08:25 -07001975 bool isSoundTrigger;
Eric Laurent8f42ea12018-08-08 09:08:25 -07001976
1977 // The supplied portId must be AUDIO_PORT_HANDLE_NONE
1978 if (*portId != AUDIO_PORT_HANDLE_NONE) {
1979 return INVALID_OPERATION;
1980 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001981
Francois Gaffie716e1432019-01-14 16:58:59 +01001982 if (attr->source == AUDIO_SOURCE_DEFAULT) {
1983 attributes.source = AUDIO_SOURCE_MIC;
Eric Laurentfe231122017-11-17 17:48:06 -08001984 }
1985
Paul McLean466dc8e2015-04-17 13:15:36 -06001986 // Explicit routing?
François Gaffie11d30102018-11-02 16:09:09 +01001987 sp<DeviceDescriptor> explicitRoutingDevice =
1988 mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001989
Eric Laurentad2e7b92017-09-14 20:06:42 -07001990 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1991 // possible
1992 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1993 *input != AUDIO_IO_HANDLE_NONE) {
1994 ssize_t index = mInputs.indexOfKey(*input);
1995 if (index < 0) {
1996 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1997 status = BAD_VALUE;
1998 goto error;
1999 }
2000 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002001 RecordClientVector clients = inputDesc->getClientsForSession(session);
2002 if (clients.size() == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07002003 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
2004 status = BAD_VALUE;
2005 goto error;
2006 }
2007 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
2008 // The second call is for the first active client and sets the UID. Any further call
Eric Laurent331679c2018-04-16 17:03:16 -07002009 // corresponds to a new client and is only permitted from the same UID.
2010 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurent8f42ea12018-08-08 09:08:25 -07002011 if (clients.size() > 1) {
2012 for (const auto& client : clients) {
2013 // The client map is ordered by key values (portId) and portIds are allocated
2014 // incrementaly. So the first client in this list is the one opened by audio flinger
2015 // when the mmap stream is created and should be ignored as it does not correspond
2016 // to an actual client
2017 if (client == *clients.cbegin()) {
2018 continue;
2019 }
2020 if (uid != client->uid() && !client->isSilenced()) {
2021 ALOGW("getInputForAttr() bad uid %d for client %d uid %d",
2022 uid, client->portId(), client->uid());
2023 status = INVALID_OPERATION;
2024 goto error;
2025 }
Eric Laurent331679c2018-04-16 17:03:16 -07002026 }
Eric Laurentad2e7b92017-09-14 20:06:42 -07002027 }
Eric Laurentad2e7b92017-09-14 20:06:42 -07002028 *inputType = API_INPUT_LEGACY;
François Gaffie11d30102018-11-02 16:09:09 +01002029 device = inputDesc->getDevice();
Eric Laurentad2e7b92017-09-14 20:06:42 -07002030
Eric Laurent8f42ea12018-08-08 09:08:25 -07002031 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002032 goto exit;
Eric Laurentad2e7b92017-09-14 20:06:42 -07002033 }
2034
2035 *input = AUDIO_IO_HANDLE_NONE;
2036 *inputType = API_INPUT_INVALID;
2037
Francois Gaffie716e1432019-01-14 16:58:59 +01002038 halInputSource = attributes.source;
Eric Laurentad2e7b92017-09-14 20:06:42 -07002039
Francois Gaffie716e1432019-01-14 16:58:59 +01002040 if (attributes.source == AUDIO_SOURCE_REMOTE_SUBMIX &&
2041 strncmp(attributes.tags, "addr=", strlen("addr=")) == 0) {
2042 status = mPolicyMixes.getInputMixForAttr(attributes, &policyMix);
Eric Laurentad2e7b92017-09-14 20:06:42 -07002043 if (status != NO_ERROR) {
jiabinc1de2df2019-05-07 14:26:40 -07002044 ALOGW("%s could not find input mix for attr %s",
2045 __func__, toString(attributes).c_str());
Eric Laurentad2e7b92017-09-14 20:06:42 -07002046 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01002047 }
jiabinc1de2df2019-05-07 14:26:40 -07002048 device = mAvailableInputDevices.getDevice(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2049 String8(attr->tags + strlen("addr=")),
2050 AUDIO_FORMAT_DEFAULT);
2051 if (device == nullptr) {
Kevin Rocard04ed0462019-05-02 17:53:24 -07002052 ALOGW("%s could not find in Remote Submix device for source %d, tags %s",
jiabinc1de2df2019-05-07 14:26:40 -07002053 __func__, attributes.source, attributes.tags);
2054 status = BAD_VALUE;
2055 goto error;
2056 }
2057
Kevin Rocard25f9b052019-02-27 15:08:54 -08002058 if (is_mix_loopback_render(policyMix->mRouteFlags)) {
2059 *inputType = API_INPUT_MIX_PUBLIC_CAPTURE_PLAYBACK;
2060 } else {
2061 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
2062 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002063 } else {
François Gaffie11d30102018-11-02 16:09:09 +01002064 if (explicitRoutingDevice != nullptr) {
2065 device = explicitRoutingDevice;
Eric Laurent97ac8712018-07-27 18:59:02 -07002066 } else {
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01002067 // Prevent from storing invalid requested device id in clients
2068 requestedDeviceId = AUDIO_PORT_HANDLE_NONE;
François Gaffiec005e562018-11-06 15:04:49 +01002069 device = mEngine->getInputDeviceForAttributes(attributes, &policyMix);
Eric Laurent97ac8712018-07-27 18:59:02 -07002070 }
François Gaffie11d30102018-11-02 16:09:09 +01002071 if (device == nullptr) {
Francois Gaffie716e1432019-01-14 16:58:59 +01002072 ALOGW("getInputForAttr() could not find device for source %d", attributes.source);
Eric Laurentad2e7b92017-09-14 20:06:42 -07002073 status = BAD_VALUE;
2074 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08002075 }
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002076 if (policyMix) {
François Gaffie11d30102018-11-02 16:09:09 +01002077 ALOG_ASSERT(policyMix->mMixType == MIX_TYPE_RECORDERS, "Invalid Mix Type");
2078 // there is an external policy, but this input is attached to a mix of recorders,
2079 // meaning it receives audio injected into the framework, so the recorder doesn't
2080 // know about it and is therefore considered "legacy"
2081 *inputType = API_INPUT_LEGACY;
2082 } else if (audio_is_remote_submix_device(device->type())) {
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08002083 *inputType = API_INPUT_MIX_CAPTURE;
François Gaffie11d30102018-11-02 16:09:09 +01002084 } else if (device->type() == AUDIO_DEVICE_IN_TELEPHONY_RX) {
Eric Laurent82db2692015-08-07 13:59:42 -07002085 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08002086 } else {
2087 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08002088 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07002089
Eric Laurent599c7582015-12-07 18:05:55 -08002090 }
2091
François Gaffiec005e562018-11-06 15:04:49 +01002092 *input = getInputForDevice(device, session, attributes, config, flags, policyMix);
Eric Laurent599c7582015-12-07 18:05:55 -08002093 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07002094 status = INVALID_OPERATION;
2095 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08002096 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08002097
Eric Laurent8f42ea12018-08-08 09:08:25 -07002098exit:
2099
François Gaffiec005e562018-11-06 15:04:49 +01002100 *selectedDeviceId = mAvailableInputDevices.contains(device) ?
2101 device->getId() : AUDIO_PORT_HANDLE_NONE;
Eric Laurent2ac76942017-06-22 17:17:09 -07002102
Francois Gaffie716e1432019-01-14 16:58:59 +01002103 isSoundTrigger = attributes.source == AUDIO_SOURCE_HOTWORD &&
Carter Hsud0cce2e2019-05-03 17:36:28 +08002104 mSoundTriggerSessions.indexOfKey(session) >= 0;
jiabin4ef93452019-09-10 14:29:54 -07002105 *portId = PolicyAudioPort::getNextUniqueId();
Eric Laurent8f42ea12018-08-08 09:08:25 -07002106
Mikhail Naganov2996f672019-04-18 12:29:59 -07002107 clientDesc = new RecordClientDescriptor(*portId, riid, uid, session, attributes, *config,
Francois Gaffie716e1432019-01-14 16:58:59 +01002108 requestedDeviceId, attributes.source, flags,
2109 isSoundTrigger);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002110 inputDesc = mInputs.valueFor(*input);
Andy Hung39efb7a2018-09-26 15:39:28 -07002111 inputDesc->addClient(clientDesc);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002112
2113 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d for port ID %d",
2114 *input, *inputType, *selectedDeviceId, *portId);
Eric Laurent2ac76942017-06-22 17:17:09 -07002115
Eric Laurent599c7582015-12-07 18:05:55 -08002116 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07002117
2118error:
Eric Laurentad2e7b92017-09-14 20:06:42 -07002119 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08002120}
2121
2122
François Gaffie11d30102018-11-02 16:09:09 +01002123audio_io_handle_t AudioPolicyManager::getInputForDevice(const sp<DeviceDescriptor> &device,
Eric Laurent599c7582015-12-07 18:05:55 -08002124 audio_session_t session,
François Gaffiec005e562018-11-06 15:04:49 +01002125 const audio_attributes_t &attributes,
Eric Laurentfe231122017-11-17 17:48:06 -08002126 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08002127 audio_input_flags_t flags,
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002128 const sp<AudioPolicyMix> &policyMix)
Eric Laurent599c7582015-12-07 18:05:55 -08002129{
2130 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
François Gaffiec005e562018-11-06 15:04:49 +01002131 audio_source_t halInputSource = attributes.source;
Eric Laurent599c7582015-12-07 18:05:55 -08002132 bool isSoundTrigger = false;
2133
François Gaffiec005e562018-11-06 15:04:49 +01002134 if (attributes.source == AUDIO_SOURCE_HOTWORD) {
Eric Laurent599c7582015-12-07 18:05:55 -08002135 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
2136 if (index >= 0) {
2137 input = mSoundTriggerSessions.valueFor(session);
2138 isSoundTrigger = true;
2139 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
2140 ALOGV("SoundTrigger capture on session %d input %d", session, input);
2141 } else {
2142 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07002143 }
François Gaffiec005e562018-11-06 15:04:49 +01002144 } else if (attributes.source == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08002145 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07002146 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07002147 }
2148
Andy Hungf129b032015-04-07 13:45:50 -07002149 // find a compatible input profile (not necessarily identical in parameters)
2150 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08002151 // sampling rate and flags may be updated by getInputProfile
2152 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
2153 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07002154 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08002155 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07002156 audio_input_flags_t profileFlags = flags;
2157 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07002158 profileFormat = config->format; // reset each time through loop, in case it is updated
François Gaffie11d30102018-11-02 16:09:09 +01002159 profile = getInputProfile(device, profileSamplingRate, profileFormat, profileChannelMask,
Andy Hungf129b032015-04-07 13:45:50 -07002160 profileFlags);
2161 if (profile != 0) {
2162 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07002163 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
2164 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07002165 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
2166 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
2167 } else { // fail
François Gaffie11d30102018-11-02 16:09:09 +01002168 ALOGW("%s could not find profile for device %s, sampling rate %u, format %#x, "
2169 "channel mask 0x%X, flags %#x", __func__, device->toString().c_str(),
2170 config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08002171 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07002172 }
Eric Laurente552edb2014-03-10 17:42:56 -07002173 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08002174 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08002175 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08002176 if (samplingRate == 0) {
2177 samplingRate = profileSamplingRate;
2178 }
Eric Laurente552edb2014-03-10 17:42:56 -07002179
Eric Laurent322b4d22015-04-03 15:57:54 -07002180 if (profile->getModuleHandle() == 0) {
2181 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08002182 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07002183 }
2184
Eric Laurent3974e3b2017-12-07 17:58:43 -08002185 if (!profile->canOpenNewIo()) {
Eric Laurent4eb58f12018-12-07 16:41:02 -08002186 for (size_t i = 0; i < mInputs.size(); ) {
Eric Laurentc529cf62020-04-17 18:19:10 -07002187 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurent4eb58f12018-12-07 16:41:02 -08002188 if (desc->mProfile != profile) {
Carter Hsu9a645a92019-05-15 12:15:32 +08002189 i++;
Eric Laurent4eb58f12018-12-07 16:41:02 -08002190 continue;
2191 }
2192 // if sound trigger, reuse input if used by other sound trigger on same session
2193 // else
2194 // reuse input if active client app is not in IDLE state
2195 //
2196 RecordClientVector clients = desc->clientsList();
2197 bool doClose = false;
2198 for (const auto& client : clients) {
2199 if (isSoundTrigger != client->isSoundTrigger()) {
2200 continue;
2201 }
2202 if (client->isSoundTrigger()) {
2203 if (session == client->session()) {
2204 return desc->mIoHandle;
2205 }
2206 continue;
2207 }
2208 if (client->active() && client->appState() != APP_STATE_IDLE) {
2209 return desc->mIoHandle;
2210 }
2211 doClose = true;
2212 }
2213 if (doClose) {
2214 closeInput(desc->mIoHandle);
2215 } else {
2216 i++;
2217 }
2218 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08002219 }
2220
Eric Laurentfe231122017-11-17 17:48:06 -08002221 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07002222
Eric Laurentfe231122017-11-17 17:48:06 -08002223 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
2224 lConfig.sample_rate = profileSamplingRate;
2225 lConfig.channel_mask = profileChannelMask;
2226 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07002227
François Gaffie11d30102018-11-02 16:09:09 +01002228 status_t status = inputDesc->open(&lConfig, device, halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07002229
2230 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08002231 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08002232 (profileSamplingRate != lConfig.sample_rate) ||
2233 !audio_formats_match(profileFormat, lConfig.format) ||
2234 (profileChannelMask != lConfig.channel_mask)) {
2235 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08002236 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08002237 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08002238 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08002239 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07002240 }
Eric Laurent599c7582015-12-07 18:05:55 -08002241 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07002242 }
2243
Eric Laurentc722f302014-12-10 11:21:49 -08002244 inputDesc->mPolicyMix = policyMix;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002245
Eric Laurent599c7582015-12-07 18:05:55 -08002246 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07002247 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06002248
Eric Laurent599c7582015-12-07 18:05:55 -08002249 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07002250}
2251
Eric Laurent4eb58f12018-12-07 16:41:02 -08002252status_t AudioPolicyManager::startInput(audio_port_handle_t portId)
Eric Laurentbb948092017-01-23 18:33:30 -08002253{
Eric Laurent8fc147b2018-07-22 19:13:55 -07002254 ALOGV("%s portId %d", __FUNCTION__, portId);
2255
2256 sp<AudioInputDescriptor> inputDesc = mInputs.getInputForClient(portId);
2257 if (inputDesc == 0) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002258 ALOGW("%s no input for client %d", __FUNCTION__, portId);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002259 return BAD_VALUE;
2260 }
Eric Laurent8fc147b2018-07-22 19:13:55 -07002261 audio_io_handle_t input = inputDesc->mIoHandle;
Andy Hung39efb7a2018-09-26 15:39:28 -07002262 sp<RecordClientDescriptor> client = inputDesc->getClient(portId);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002263 if (client->active()) {
2264 ALOGW("%s input %d client %d already started", __FUNCTION__, input, client->portId());
2265 return INVALID_OPERATION;
Eric Laurent4dc68062014-07-28 17:26:49 -07002266 }
2267
Eric Laurent8f42ea12018-08-08 09:08:25 -07002268 audio_session_t session = client->session();
2269
Eric Laurent4eb58f12018-12-07 16:41:02 -08002270 ALOGV("%s input:%d, session:%d)", __FUNCTION__, input, session);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002271
Eric Laurent4eb58f12018-12-07 16:41:02 -08002272 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07002273
Eric Laurent4eb58f12018-12-07 16:41:02 -08002274 status_t status = inputDesc->start();
2275 if (status != NO_ERROR) {
2276 return status;
Eric Laurent74708e72017-04-07 17:13:42 -07002277 }
Eric Laurente552edb2014-03-10 17:42:56 -07002278
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002279 // increment activity count before calling getNewInputDevice() below as only active sessions
Eric Laurent313d1e72016-01-29 09:56:57 -08002280 // are considered for device selection
Eric Laurent8f42ea12018-08-08 09:08:25 -07002281 inputDesc->setClientActive(client, true);
Eric Laurent313d1e72016-01-29 09:56:57 -08002282
Eric Laurent8f42ea12018-08-08 09:08:25 -07002283 // indicate active capture to sound trigger service if starting capture from a mic on
2284 // primary HW module
François Gaffie11d30102018-11-02 16:09:09 +01002285 sp<DeviceDescriptor> device = getNewInputDevice(inputDesc);
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002286 if (device != nullptr) {
2287 status = setInputDevice(input, device, true /* force */);
2288 } else {
2289 ALOGW("%s no new input device can be found for descriptor %d",
2290 __FUNCTION__, inputDesc->getId());
2291 status = BAD_VALUE;
2292 }
Eric Laurente552edb2014-03-10 17:42:56 -07002293
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002294 if (status == NO_ERROR && inputDesc->activeCount() == 1) {
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002295 sp<AudioPolicyMix> policyMix = inputDesc->mPolicyMix.promote();
Eric Laurent8f42ea12018-08-08 09:08:25 -07002296 // if input maps to a dynamic policy with an activity listener, notify of state change
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08002297 if ((policyMix != nullptr)
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002298 && ((policyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2299 mpClientInterface->onDynamicPolicyMixStateUpdate(policyMix->mDeviceAddress,
Eric Laurent8f42ea12018-08-08 09:08:25 -07002300 MIX_STATE_MIXING);
Eric Laurent733ce942017-12-07 12:18:25 -08002301 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08002302
François Gaffie11d30102018-11-02 16:09:09 +01002303 DeviceVector primaryInputDevices = availablePrimaryModuleInputDevices();
2304 if (primaryInputDevices.contains(device) &&
Eric Laurent8f42ea12018-08-08 09:08:25 -07002305 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Ytai Ben-Tsvi74cd6b02019-10-25 10:06:40 -07002306 mpClientInterface->setSoundTriggerCaptureState(true);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002307 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002308
Eric Laurent8f42ea12018-08-08 09:08:25 -07002309 // automatically enable the remote submix output when input is started if not
2310 // used by a policy mix of type MIX_TYPE_RECORDERS
2311 // For remote submix (a virtual device), we open only one input per capture request.
François Gaffie11d30102018-11-02 16:09:09 +01002312 if (audio_is_remote_submix_device(inputDesc->getDeviceType())) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002313 String8 address = String8("");
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08002314 if (policyMix == nullptr) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002315 address = String8("0");
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002316 } else if (policyMix->mMixType == MIX_TYPE_PLAYERS) {
2317 address = policyMix->mDeviceAddress;
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002318 }
Eric Laurent8f42ea12018-08-08 09:08:25 -07002319 if (address != "") {
2320 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2321 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08002322 address, "remote-submix", AUDIO_FORMAT_DEFAULT);
Eric Laurentc722f302014-12-10 11:21:49 -08002323 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002324 }
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002325 } else if (status != NO_ERROR) {
2326 // Restore client activity state.
2327 inputDesc->setClientActive(client, false);
2328 inputDesc->stop();
Eric Laurente552edb2014-03-10 17:42:56 -07002329 }
2330
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002331 ALOGV("%s input %d source = %d status = %d exit",
2332 __FUNCTION__, input, client->source(), status);
Eric Laurente552edb2014-03-10 17:42:56 -07002333
Mikhail Naganov480ffee2019-07-01 15:07:19 -07002334 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07002335}
2336
Eric Laurent8fc147b2018-07-22 19:13:55 -07002337status_t AudioPolicyManager::stopInput(audio_port_handle_t portId)
Eric Laurente552edb2014-03-10 17:42:56 -07002338{
Eric Laurent8fc147b2018-07-22 19:13:55 -07002339 ALOGV("%s portId %d", __FUNCTION__, portId);
2340
2341 sp<AudioInputDescriptor> inputDesc = mInputs.getInputForClient(portId);
2342 if (inputDesc == 0) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002343 ALOGW("%s no input for client %d", __FUNCTION__, portId);
Eric Laurente552edb2014-03-10 17:42:56 -07002344 return BAD_VALUE;
2345 }
Eric Laurent8fc147b2018-07-22 19:13:55 -07002346 audio_io_handle_t input = inputDesc->mIoHandle;
Andy Hung39efb7a2018-09-26 15:39:28 -07002347 sp<RecordClientDescriptor> client = inputDesc->getClient(portId);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002348 if (!client->active()) {
2349 ALOGW("%s input %d client %d already stopped", __FUNCTION__, input, client->portId());
Eric Laurente552edb2014-03-10 17:42:56 -07002350 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002351 }
2352
Eric Laurent8f42ea12018-08-08 09:08:25 -07002353 inputDesc->setClientActive(client, false);
Paul McLean466dc8e2015-04-17 13:15:36 -06002354
Eric Laurent8f42ea12018-08-08 09:08:25 -07002355 inputDesc->stop();
2356 if (inputDesc->isActive()) {
2357 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2358 } else {
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002359 sp<AudioPolicyMix> policyMix = inputDesc->mPolicyMix.promote();
Eric Laurent8f42ea12018-08-08 09:08:25 -07002360 // if input maps to a dynamic policy with an activity listener, notify of state change
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08002361 if ((policyMix != nullptr)
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002362 && ((policyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2363 mpClientInterface->onDynamicPolicyMixStateUpdate(policyMix->mDeviceAddress,
Eric Laurent8f42ea12018-08-08 09:08:25 -07002364 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002365 }
Eric Laurent8f42ea12018-08-08 09:08:25 -07002366
2367 // automatically disable the remote submix output when input is stopped if not
2368 // used by a policy mix of type MIX_TYPE_RECORDERS
François Gaffie11d30102018-11-02 16:09:09 +01002369 if (audio_is_remote_submix_device(inputDesc->getDeviceType())) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002370 String8 address = String8("");
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08002371 if (policyMix == nullptr) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002372 address = String8("0");
Mikhail Naganovbfac5832019-03-05 16:55:28 -08002373 } else if (policyMix->mMixType == MIX_TYPE_PLAYERS) {
2374 address = policyMix->mDeviceAddress;
Eric Laurent8f42ea12018-08-08 09:08:25 -07002375 }
2376 if (address != "") {
2377 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2378 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08002379 address, "remote-submix", AUDIO_FORMAT_DEFAULT);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002380 }
2381 }
Eric Laurent8f42ea12018-08-08 09:08:25 -07002382 resetInputDevice(input);
2383
2384 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2385 // primary HW module
François Gaffie11d30102018-11-02 16:09:09 +01002386 DeviceVector primaryInputDevices = availablePrimaryModuleInputDevices();
2387 if (primaryInputDevices.contains(inputDesc->getDevice()) &&
Eric Laurent8f42ea12018-08-08 09:08:25 -07002388 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Ytai Ben-Tsvi74cd6b02019-10-25 10:06:40 -07002389 mpClientInterface->setSoundTriggerCaptureState(false);
Eric Laurent8f42ea12018-08-08 09:08:25 -07002390 }
2391 inputDesc->clearPreemptedSessions();
Eric Laurente552edb2014-03-10 17:42:56 -07002392 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002393 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002394}
2395
Eric Laurent8fc147b2018-07-22 19:13:55 -07002396void AudioPolicyManager::releaseInput(audio_port_handle_t portId)
Eric Laurente552edb2014-03-10 17:42:56 -07002397{
Eric Laurent8fc147b2018-07-22 19:13:55 -07002398 ALOGV("%s portId %d", __FUNCTION__, portId);
2399
2400 sp<AudioInputDescriptor> inputDesc = mInputs.getInputForClient(portId);
2401 if (inputDesc == 0) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002402 ALOGW("%s no input for client %d", __FUNCTION__, portId);
Eric Laurente552edb2014-03-10 17:42:56 -07002403 return;
2404 }
Andy Hung39efb7a2018-09-26 15:39:28 -07002405 sp<RecordClientDescriptor> client = inputDesc->getClient(portId);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002406 audio_io_handle_t input = inputDesc->mIoHandle;
2407
Eric Laurent8f42ea12018-08-08 09:08:25 -07002408 ALOGV("%s %d", __FUNCTION__, input);
Paul McLean466dc8e2015-04-17 13:15:36 -06002409
Andy Hung39efb7a2018-09-26 15:39:28 -07002410 inputDesc->removeClient(portId);
Eric Laurent599c7582015-12-07 18:05:55 -08002411
Andy Hung39efb7a2018-09-26 15:39:28 -07002412 if (inputDesc->getClientCount() > 0) {
2413 ALOGV("%s(%d) %zu clients remaining", __func__, portId, inputDesc->getClientCount());
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002414 return;
2415 }
2416
Eric Laurent05b90f82014-08-27 15:32:29 -07002417 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002418 mpClientInterface->onAudioPortListUpdate();
Eric Laurent8f42ea12018-08-08 09:08:25 -07002419 ALOGV("%s exit", __FUNCTION__);
Eric Laurente552edb2014-03-10 17:42:56 -07002420}
2421
Eric Laurent8f42ea12018-08-08 09:08:25 -07002422void AudioPolicyManager::closeActiveClients(const sp<AudioInputDescriptor>& input)
Eric Laurent8fc147b2018-07-22 19:13:55 -07002423{
Eric Laurent8f42ea12018-08-08 09:08:25 -07002424 RecordClientVector clients = input->clientsList(true);
Eric Laurent8fc147b2018-07-22 19:13:55 -07002425
2426 for (const auto& client : clients) {
Eric Laurent8f42ea12018-08-08 09:08:25 -07002427 closeClient(client->portId());
Eric Laurent8fc147b2018-07-22 19:13:55 -07002428 }
2429}
2430
Eric Laurent8f42ea12018-08-08 09:08:25 -07002431void AudioPolicyManager::closeClient(audio_port_handle_t portId)
2432{
2433 stopInput(portId);
2434 releaseInput(portId);
2435}
Eric Laurent8fc147b2018-07-22 19:13:55 -07002436
Eric Laurent0dd51852019-04-19 18:18:58 -07002437void AudioPolicyManager::checkCloseInputs() {
2438 // After connecting or disconnecting an input device, close input if:
2439 // - it has no client (was just opened to check profile) OR
2440 // - none of its supported devices are connected anymore OR
2441 // - one of its clients cannot be routed to one of its supported
2442 // devices anymore. Otherwise update device selection
2443 std::vector<audio_io_handle_t> inputsToClose;
2444 for (size_t i = 0; i < mInputs.size(); i++) {
2445 const sp<AudioInputDescriptor> input = mInputs.valueAt(i);
2446 if (input->clientsList().size() == 0
Eric Laurent85732f42020-03-19 11:31:10 -07002447 || !mAvailableInputDevices.containsAtLeastOne(input->supportedDevices())) {
Eric Laurent0dd51852019-04-19 18:18:58 -07002448 inputsToClose.push_back(mInputs.keyAt(i));
2449 } else {
2450 bool close = false;
2451 for (const auto& client : input->clientsList()) {
2452 sp<DeviceDescriptor> device =
2453 mEngine->getInputDeviceForAttributes(client->attributes());
2454 if (!input->supportedDevices().contains(device)) {
2455 close = true;
2456 break;
2457 }
2458 }
2459 if (close) {
2460 inputsToClose.push_back(mInputs.keyAt(i));
2461 } else {
2462 setInputDevice(input->mIoHandle, getNewInputDevice(input));
2463 }
2464 }
2465 }
2466
2467 for (const audio_io_handle_t handle : inputsToClose) {
2468 ALOGV("%s closing input %d", __func__, handle);
2469 closeInput(handle);
Eric Laurent05b90f82014-08-27 15:32:29 -07002470 }
Eric Laurentd4692962014-05-05 18:13:44 -07002471}
2472
François Gaffie251c7f02018-11-07 10:41:08 +01002473void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream, int indexMin, int indexMax)
Eric Laurente552edb2014-03-10 17:42:56 -07002474{
2475 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
Revathi Uddarajufe0fb8b2017-07-27 17:05:37 +08002476 if (indexMin < 0 || indexMax < 0) {
2477 ALOGE("%s for stream %d: invalid min %d or max %d", __func__, stream , indexMin, indexMax);
2478 return;
2479 }
Eric Laurentf5aa58d2019-02-22 18:20:11 -08002480 getVolumeCurves(stream).initVolume(indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002481
2482 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002483 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2484 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002485 continue;
2486 }
Eric Laurentf5aa58d2019-02-22 18:20:11 -08002487 getVolumeCurves((audio_stream_type_t)curStream).initVolume(indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002488 }
Eric Laurente552edb2014-03-10 17:42:56 -07002489}
2490
Eric Laurente0720872014-03-11 09:30:41 -07002491status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002492 int index,
2493 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002494{
François Gaffieaaac0fd2018-11-22 17:56:39 +01002495 auto attributes = mEngine->getAttributesForStreamType(stream);
Eric Laurent242a9f82020-03-23 15:57:04 -07002496 if (attributes == AUDIO_ATTRIBUTES_INITIALIZER) {
2497 ALOGW("%s: no group for stream %s, bailing out", __func__, toString(stream).c_str());
2498 return NO_ERROR;
2499 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01002500 ALOGV("%s: stream %s attributes=%s", __func__,
2501 toString(stream).c_str(), toString(attributes).c_str());
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002502 return setVolumeIndexForAttributes(attributes, index, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002503}
2504
Eric Laurente0720872014-03-11 09:30:41 -07002505status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
François Gaffieaaac0fd2018-11-22 17:56:39 +01002506 int *index,
2507 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002508{
François Gaffiec005e562018-11-06 15:04:49 +01002509 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device selected for this
2510 // stream by the engine.
jiabin9a3361e2019-10-01 09:38:30 -07002511 DeviceTypeSet deviceTypes = {device};
Eric Laurent5a2b6292016-04-14 18:05:57 -07002512 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
jiabin9a3361e2019-10-01 09:38:30 -07002513 deviceTypes = mEngine->getOutputDevicesForStream(
2514 stream, true /*fromCache*/).types();
Eric Laurente552edb2014-03-10 17:42:56 -07002515 }
jiabin9a3361e2019-10-01 09:38:30 -07002516 return getVolumeIndex(getVolumeCurves(stream), *index, deviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07002517}
2518
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002519status_t AudioPolicyManager::setVolumeIndexForAttributes(const audio_attributes_t &attributes,
François Gaffiecfe17322018-11-07 13:41:29 +01002520 int index,
2521 audio_devices_t device)
2522{
2523 // Get Volume group matching the Audio Attributes
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002524 auto group = mEngine->getVolumeGroupForAttributes(attributes);
2525 if (group == VOLUME_GROUP_NONE) {
2526 ALOGD("%s: no group matching with %s", __FUNCTION__, toString(attributes).c_str());
François Gaffiecfe17322018-11-07 13:41:29 +01002527 return BAD_VALUE;
2528 }
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002529 ALOGV("%s: group %d matching with %s", __FUNCTION__, group, toString(attributes).c_str());
François Gaffiecfe17322018-11-07 13:41:29 +01002530 status_t status = NO_ERROR;
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002531 IVolumeCurves &curves = getVolumeCurves(attributes);
François Gaffieaaac0fd2018-11-22 17:56:39 +01002532 VolumeSource vs = toVolumeSource(group);
2533 product_strategy_t strategy = mEngine->getProductStrategyForAttributes(attributes);
2534
2535 status = setVolumeCurveIndex(index, device, curves);
2536 if (status != NO_ERROR) {
2537 ALOGE("%s failed to set curve index for group %d device 0x%X", __func__, group, device);
2538 return status;
2539 }
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002540
jiabin9a3361e2019-10-01 09:38:30 -07002541 DeviceTypeSet curSrcDevices;
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002542 auto curCurvAttrs = curves.getAttributes();
2543 if (!curCurvAttrs.empty() && curCurvAttrs.front() != defaultAttr) {
2544 auto attr = curCurvAttrs.front();
jiabin9a3361e2019-10-01 09:38:30 -07002545 curSrcDevices = mEngine->getOutputDevicesForAttributes(attr, nullptr, false).types();
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002546 } else if (!curves.getStreamTypes().empty()) {
2547 auto stream = curves.getStreamTypes().front();
jiabin9a3361e2019-10-01 09:38:30 -07002548 curSrcDevices = mEngine->getOutputDevicesForStream(stream, false).types();
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002549 } else {
2550 ALOGE("%s: Invalid src %d: no valid attributes nor stream",__func__, vs);
2551 return BAD_VALUE;
2552 }
jiabin9a3361e2019-10-01 09:38:30 -07002553 audio_devices_t curSrcDevice = Volume::getDeviceForVolume(curSrcDevices);
2554 resetDeviceTypes(curSrcDevices, curSrcDevice);
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01002555
François Gaffiecfe17322018-11-07 13:41:29 +01002556 // update volume on all outputs and streams matching the following:
2557 // - The requested stream (or a stream matching for volume control) is active on the output
2558 // - The device (or devices) selected by the engine for this stream includes
2559 // the requested device
2560 // - For non default requested device, currently selected device on the output is either the
2561 // requested device or one of the devices selected by the engine for this stream
2562 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2563 // no specific device volume value exists for currently selected device.
François Gaffieaaac0fd2018-11-22 17:56:39 +01002564 for (size_t i = 0; i < mOutputs.size(); i++) {
2565 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
jiabin9a3361e2019-10-01 09:38:30 -07002566 DeviceTypeSet curDevices = desc->devices().types();
François Gaffieaaac0fd2018-11-22 17:56:39 +01002567
jiabin9a3361e2019-10-01 09:38:30 -07002568 if (curDevices.erase(AUDIO_DEVICE_OUT_SPEAKER_SAFE)) {
2569 curDevices.insert(AUDIO_DEVICE_OUT_SPEAKER);
Robert Lee5e66e792019-04-03 18:37:15 +08002570 }
François Gaffieed91f582020-01-31 10:35:37 +01002571 if (!(desc->isActive(vs) || isInCall())) {
2572 continue;
2573 }
2574 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME &&
2575 curDevices.find(device) == curDevices.end()) {
2576 continue;
2577 }
2578 bool applyVolume = false;
2579 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
2580 curSrcDevices.insert(device);
2581 applyVolume = (curSrcDevices.find(
2582 Volume::getDeviceForVolume(curDevices)) != curSrcDevices.end());
2583 } else {
2584 applyVolume = !curves.hasVolumeIndexForDevice(curSrcDevice);
2585 }
2586 if (!applyVolume) {
2587 continue; // next output
2588 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01002589 // Inter / intra volume group priority management: Loop on strategies arranged by priority
2590 // If a higher priority strategy is active, and the output is routed to a device with a
2591 // HW Gain management, do not change the volume
François Gaffieaaac0fd2018-11-22 17:56:39 +01002592 if (desc->useHwGain()) {
François Gaffieed91f582020-01-31 10:35:37 +01002593 applyVolume = false;
François Gaffieaaac0fd2018-11-22 17:56:39 +01002594 for (const auto &productStrategy : mEngine->getOrderedProductStrategies()) {
2595 auto activeClients = desc->clientsList(true /*activeOnly*/, productStrategy,
2596 false /*preferredDevice*/);
2597 if (activeClients.empty()) {
2598 continue;
2599 }
2600 bool isPreempted = false;
2601 bool isHigherPriority = productStrategy < strategy;
2602 for (const auto &client : activeClients) {
2603 if (isHigherPriority && (client->volumeSource() != vs)) {
2604 ALOGV("%s: Strategy=%d (\nrequester:\n"
2605 " group %d, volumeGroup=%d attributes=%s)\n"
2606 " higher priority source active:\n"
2607 " volumeGroup=%d attributes=%s) \n"
2608 " on output %zu, bailing out", __func__, productStrategy,
2609 group, group, toString(attributes).c_str(),
2610 client->volumeSource(), toString(client->attributes()).c_str(), i);
2611 applyVolume = false;
2612 isPreempted = true;
2613 break;
2614 }
2615 // However, continue for loop to ensure no higher prio clients running on output
2616 if (client->volumeSource() == vs) {
2617 applyVolume = true;
2618 }
2619 }
2620 if (isPreempted || applyVolume) {
2621 break;
2622 }
2623 }
2624 if (!applyVolume) {
2625 continue; // next output
2626 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01002627 }
François Gaffieed91f582020-01-31 10:35:37 +01002628 //FIXME: workaround for truncated touch sounds
2629 // delayed volume change for system stream to be removed when the problem is
2630 // handled by system UI
2631 status_t volStatus = checkAndSetVolume(
2632 curves, vs, index, desc, curDevices,
2633 ((vs == toVolumeSource(AUDIO_STREAM_SYSTEM))?
2634 TOUCH_SOUND_FIXED_DELAY_MS : 0));
2635 if (volStatus != NO_ERROR) {
2636 status = volStatus;
François Gaffieaaac0fd2018-11-22 17:56:39 +01002637 }
2638 }
François Gaffiecfe17322018-11-07 13:41:29 +01002639 mpClientInterface->onAudioVolumeGroupChanged(group, 0 /*flags*/);
2640 return status;
2641}
2642
François Gaffieaaac0fd2018-11-22 17:56:39 +01002643status_t AudioPolicyManager::setVolumeCurveIndex(int index,
François Gaffiecfe17322018-11-07 13:41:29 +01002644 audio_devices_t device,
2645 IVolumeCurves &volumeCurves)
2646{
2647 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2648 // app that has MODIFY_PHONE_STATE permission.
François Gaffieaaac0fd2018-11-22 17:56:39 +01002649 bool hasVoice = hasVoiceStream(volumeCurves.getStreamTypes());
2650 if (((index < volumeCurves.getVolumeIndexMin()) && !(hasVoice && index == 0)) ||
François Gaffiecfe17322018-11-07 13:41:29 +01002651 (index > volumeCurves.getVolumeIndexMax())) {
2652 ALOGD("%s: wrong index %d min=%d max=%d", __FUNCTION__, index,
2653 volumeCurves.getVolumeIndexMin(), volumeCurves.getVolumeIndexMax());
2654 return BAD_VALUE;
2655 }
2656 if (!audio_is_output_device(device)) {
2657 return BAD_VALUE;
2658 }
2659
2660 // Force max volume if stream cannot be muted
2661 if (!volumeCurves.canBeMuted()) index = volumeCurves.getVolumeIndexMax();
2662
François Gaffieaaac0fd2018-11-22 17:56:39 +01002663 ALOGV("%s device %08x, index %d", __FUNCTION__ , device, index);
François Gaffiecfe17322018-11-07 13:41:29 +01002664 volumeCurves.addCurrentVolumeIndex(device, index);
2665 return NO_ERROR;
2666}
2667
2668status_t AudioPolicyManager::getVolumeIndexForAttributes(const audio_attributes_t &attr,
2669 int &index,
2670 audio_devices_t device)
2671{
2672 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device selected for this
2673 // stream by the engine.
jiabin9a3361e2019-10-01 09:38:30 -07002674 DeviceTypeSet deviceTypes = {device};
François Gaffiecfe17322018-11-07 13:41:29 +01002675 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
jiabin9a3361e2019-10-01 09:38:30 -07002676 DeviceTypeSet deviceTypes = mEngine->getOutputDevicesForAttributes(
2677 attr, nullptr, true /*fromCache*/).types();
François Gaffiecfe17322018-11-07 13:41:29 +01002678 }
jiabin9a3361e2019-10-01 09:38:30 -07002679 return getVolumeIndex(getVolumeCurves(attr), index, deviceTypes);
François Gaffiecfe17322018-11-07 13:41:29 +01002680}
2681
2682status_t AudioPolicyManager::getVolumeIndex(const IVolumeCurves &curves,
2683 int &index,
jiabin9a3361e2019-10-01 09:38:30 -07002684 const DeviceTypeSet& deviceTypes) const
François Gaffiecfe17322018-11-07 13:41:29 +01002685{
jiabin9a3361e2019-10-01 09:38:30 -07002686 if (isSingleDeviceType(deviceTypes, audio_is_output_device)) {
François Gaffiecfe17322018-11-07 13:41:29 +01002687 return BAD_VALUE;
2688 }
jiabin9a3361e2019-10-01 09:38:30 -07002689 index = curves.getVolumeIndex(deviceTypes);
2690 ALOGV("%s: device %s index %d", __FUNCTION__, dumpDeviceTypes(deviceTypes).c_str(), index);
François Gaffiecfe17322018-11-07 13:41:29 +01002691 return NO_ERROR;
2692}
2693
2694status_t AudioPolicyManager::getMinVolumeIndexForAttributes(const audio_attributes_t &attr,
2695 int &index)
2696{
2697 index = getVolumeCurves(attr).getVolumeIndexMin();
2698 return NO_ERROR;
2699}
2700
2701status_t AudioPolicyManager::getMaxVolumeIndexForAttributes(const audio_attributes_t &attr,
2702 int &index)
2703{
2704 index = getVolumeCurves(attr).getVolumeIndexMax();
2705 return NO_ERROR;
2706}
2707
Eric Laurent36829f92017-04-07 19:04:42 -07002708audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002709{
2710 // select one output among several suitable for global effects.
2711 // The priority is as follows:
2712 // 1: An offloaded output. If the effect ends up not being offloadable,
2713 // AudioFlinger will invalidate the track and the offloaded output
2714 // will be closed causing the effect to be moved to a PCM output.
2715 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002716 // 3: The primary output
2717 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002718
François Gaffiec005e562018-11-06 15:04:49 +01002719 DeviceVector devices = mEngine->getOutputDevicesForAttributes(
2720 attributes_initializer(AUDIO_USAGE_MEDIA), nullptr, false /*fromCache*/);
François Gaffie11d30102018-11-02 16:09:09 +01002721 SortedVector<audio_io_handle_t> outputs = getOutputsForDevices(devices, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002722
Eric Laurent36829f92017-04-07 19:04:42 -07002723 if (outputs.size() == 0) {
2724 return AUDIO_IO_HANDLE_NONE;
2725 }
Eric Laurente552edb2014-03-10 17:42:56 -07002726
Eric Laurent36829f92017-04-07 19:04:42 -07002727 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2728 bool activeOnly = true;
2729
2730 while (output == AUDIO_IO_HANDLE_NONE) {
2731 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2732 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2733 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2734
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002735 for (audio_io_handle_t output : outputs) {
2736 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent83d17c22019-04-02 17:10:01 -07002737 if (activeOnly && !desc->isActive(toVolumeSource(AUDIO_STREAM_MUSIC))) {
Eric Laurent36829f92017-04-07 19:04:42 -07002738 continue;
2739 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002740 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2741 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002742 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002743 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002744 }
2745 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002746 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002747 }
2748 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002749 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002750 }
2751 }
2752 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2753 output = outputOffloaded;
2754 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2755 output = outputDeepBuffer;
2756 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2757 output = outputPrimary;
2758 } else {
2759 output = outputs[0];
2760 }
2761 activeOnly = false;
2762 }
2763
2764 if (output != mMusicEffectOutput) {
Eric Laurent6c796322019-04-09 14:13:17 -07002765 mEffects.moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
Eric Laurent36829f92017-04-07 19:04:42 -07002766 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2767 mMusicEffectOutput = output;
2768 }
2769
2770 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002771 return output;
2772}
2773
Eric Laurent36829f92017-04-07 19:04:42 -07002774audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2775{
2776 return selectOutputForMusicEffects();
2777}
2778
Eric Laurente0720872014-03-11 09:30:41 -07002779status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002780 audio_io_handle_t io,
2781 uint32_t strategy,
2782 int session,
2783 int id)
2784{
Eric Laurentb82e6b72019-11-22 17:25:04 -08002785 if (session != AUDIO_SESSION_DEVICE) {
2786 ssize_t index = mOutputs.indexOfKey(io);
Eric Laurente552edb2014-03-10 17:42:56 -07002787 if (index < 0) {
Eric Laurentb82e6b72019-11-22 17:25:04 -08002788 index = mInputs.indexOfKey(io);
2789 if (index < 0) {
2790 ALOGW("registerEffect() unknown io %d", io);
2791 return INVALID_OPERATION;
2792 }
Eric Laurente552edb2014-03-10 17:42:56 -07002793 }
2794 }
François Gaffiec005e562018-11-06 15:04:49 +01002795 return mEffects.registerEffect(desc, io, session, id,
2796 (strategy == streamToStrategy(AUDIO_STREAM_MUSIC) ||
2797 strategy == PRODUCT_STRATEGY_NONE));
Eric Laurente552edb2014-03-10 17:42:56 -07002798}
2799
Eric Laurentc241b0d2018-11-28 09:08:49 -08002800status_t AudioPolicyManager::unregisterEffect(int id)
2801{
2802 if (mEffects.getEffect(id) == nullptr) {
2803 return INVALID_OPERATION;
2804 }
Eric Laurentc241b0d2018-11-28 09:08:49 -08002805 if (mEffects.isEffectEnabled(id)) {
2806 ALOGW("%s effect %d enabled", __FUNCTION__, id);
2807 setEffectEnabled(id, false);
2808 }
2809 return mEffects.unregisterEffect(id);
2810}
2811
2812status_t AudioPolicyManager::setEffectEnabled(int id, bool enabled)
2813{
2814 sp<EffectDescriptor> effect = mEffects.getEffect(id);
2815 if (effect == nullptr) {
2816 return INVALID_OPERATION;
2817 }
2818
2819 status_t status = mEffects.setEffectEnabled(id, enabled);
2820 if (status == NO_ERROR) {
2821 mInputs.trackEffectEnabled(effect, enabled);
2822 }
2823 return status;
2824}
2825
Eric Laurent6c796322019-04-09 14:13:17 -07002826
2827status_t AudioPolicyManager::moveEffectsToIo(const std::vector<int>& ids, audio_io_handle_t io)
2828{
2829 mEffects.moveEffects(ids, io);
2830 return NO_ERROR;
2831}
2832
Eric Laurentc75307b2015-03-17 15:29:32 -07002833bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2834{
François Gaffieaaac0fd2018-11-22 17:56:39 +01002835 return mOutputs.isActive(toVolumeSource(stream), inPastMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07002836}
2837
2838bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2839{
François Gaffieaaac0fd2018-11-22 17:56:39 +01002840 return mOutputs.isActiveRemotely(toVolumeSource(stream), inPastMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07002841}
2842
Eric Laurente0720872014-03-11 09:30:41 -07002843bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002844{
2845 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002846 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002847 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002848 return true;
2849 }
2850 }
2851 return false;
2852}
2853
Eric Laurent275e8e92014-11-30 15:14:47 -08002854// Register a list of custom mixes with their attributes and format.
2855// When a mix is registered, corresponding input and output profiles are
2856// added to the remote submix hw module. The profile contains only the
2857// parameters (sampling rate, format...) specified by the mix.
2858// The corresponding input remote submix device is also connected.
2859//
2860// When a remote submix device is connected, the address is checked to select the
2861// appropriate profile and the corresponding input or output stream is opened.
2862//
2863// When capture starts, getInputForAttr() will:
2864// - 1 look for a mix matching the address passed in attribtutes tags if any
2865// - 2 if none found, getDeviceForInputSource() will:
2866// - 2.1 look for a mix matching the attributes source
2867// - 2.2 if none found, default to device selection by policy rules
2868// At this time, the corresponding output remote submix device is also connected
2869// and active playback use cases can be transferred to this mix if needed when reconnecting
2870// after AudioTracks are invalidated
2871//
2872// When playback starts, getOutputForAttr() will:
2873// - 1 look for a mix matching the address passed in attribtutes tags if any
2874// - 2 if none found, look for a mix matching the attributes usage
2875// - 3 if none found, default to device and output selection by policy rules.
2876
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002877status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002878{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002879 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2880 status_t res = NO_ERROR;
Eric Laurentc209fe42020-06-05 18:11:23 -07002881 bool checkOutputs = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002882 sp<HwModule> rSubmixModule;
2883 // examine each mix's route type
2884 for (size_t i = 0; i < mixes.size(); i++) {
Eric Laurent97ac8712018-07-27 18:59:02 -07002885 AudioMix mix = mixes[i];
Kevin Rocard153f92d2018-12-18 18:33:28 -08002886 // Only capture of playback is allowed in LOOP_BACK & RENDER mode
2887 if (is_mix_loopback_render(mix.mRouteFlags) && mix.mMixType != MIX_TYPE_PLAYERS) {
2888 ALOGE("Unsupported Policy Mix %zu of %zu: "
2889 "Only capture of playback is allowed in LOOP_BACK & RENDER mode",
2890 i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002891 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002892 break;
2893 }
Kevin Rocard153f92d2018-12-18 18:33:28 -08002894 // LOOP_BACK and LOOP_BACK | RENDER have the same remote submix backend and are handled
2895 // in the same way.
Eric Laurent97ac8712018-07-27 18:59:02 -07002896 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Kevin Rocard153f92d2018-12-18 18:33:28 -08002897 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK %d", i, mixes.size(),
2898 mix.mRouteFlags);
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002899 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002900 rSubmixModule = mHwModules.getModuleFromName(
2901 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2902 if (rSubmixModule == 0) {
Kevin Rocard153f92d2018-12-18 18:33:28 -08002903 ALOGE("Unable to find audio module for submix, aborting mix %zu registration",
Mikhail Naganovd4120142017-12-06 15:49:22 -08002904 i);
2905 res = INVALID_OPERATION;
2906 break;
2907 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002908 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002909
Eric Laurent97ac8712018-07-27 18:59:02 -07002910 String8 address = mix.mDeviceAddress;
Jean-Michel Trivi67917272019-05-22 11:54:37 -07002911 audio_devices_t deviceTypeToMakeAvailable;
Eric Laurent97ac8712018-07-27 18:59:02 -07002912 if (mix.mMixType == MIX_TYPE_PLAYERS) {
Eric Laurent97ac8712018-07-27 18:59:02 -07002913 mix.mDeviceType = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
Jean-Michel Trivi67917272019-05-22 11:54:37 -07002914 deviceTypeToMakeAvailable = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
2915 } else {
2916 mix.mDeviceType = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
2917 deviceTypeToMakeAvailable = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
Eric Laurent97ac8712018-07-27 18:59:02 -07002918 }
François Gaffie036e1e92015-03-19 10:16:24 +01002919
Jean-Michel Trivi67917272019-05-22 11:54:37 -07002920 if (mPolicyMixes.registerMix(mix, 0 /*output desc*/) != NO_ERROR) {
Kevin Rocard153f92d2018-12-18 18:33:28 -08002921 ALOGE("Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002922 res = INVALID_OPERATION;
2923 break;
2924 }
Eric Laurent97ac8712018-07-27 18:59:02 -07002925 audio_config_t outputConfig = mix.mFormat;
2926 audio_config_t inputConfig = mix.mFormat;
Eric Laurentc529cf62020-04-17 18:19:10 -07002927 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL
2928 // in stereo and let audio flinger do the channel conversion if needed.
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002929 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2930 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
jiabin5740f082019-08-19 15:08:30 -07002931 rSubmixModule->addOutputProfile(address.c_str(), &outputConfig,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002932 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
jiabin5740f082019-08-19 15:08:30 -07002933 rSubmixModule->addInputProfile(address.c_str(), &inputConfig,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002934 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002935
Jean-Michel Trivi67917272019-05-22 11:54:37 -07002936 if ((res = setDeviceConnectionStateInt(deviceTypeToMakeAvailable,
jiabinc1de2df2019-05-07 14:26:40 -07002937 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2938 address.string(), "remote-submix", AUDIO_FORMAT_DEFAULT)) != NO_ERROR) {
2939 ALOGE("Failed to set remote submix device available, type %u, address %s",
2940 mix.mDeviceType, address.string());
2941 break;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002942 }
Eric Laurent97ac8712018-07-27 18:59:02 -07002943 } else if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2944 String8 address = mix.mDeviceAddress;
Eric Laurent2c80be02019-01-23 18:06:37 -08002945 audio_devices_t type = mix.mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002946 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
Eric Laurent2c80be02019-01-23 18:06:37 -08002947 i, mixes.size(), type, address.string());
2948
2949 sp<DeviceDescriptor> device = mHwModules.getDeviceDescriptor(
2950 mix.mDeviceType, mix.mDeviceAddress,
2951 String8(), AUDIO_FORMAT_DEFAULT);
2952 if (device == nullptr) {
2953 res = INVALID_OPERATION;
2954 break;
2955 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002956
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002957 bool foundOutput = false;
Eric Laurentc529cf62020-04-17 18:19:10 -07002958 // First try to find an already opened output supporting the device
2959 for (size_t j = 0 ; j < mOutputs.size() && !foundOutput && res == NO_ERROR; j++) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002960 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurent2c80be02019-01-23 18:06:37 -08002961
Eric Laurentc529cf62020-04-17 18:19:10 -07002962 if (!desc->isDuplicated() && desc->supportedDevices().contains(device)) {
Jean-Michel Trivi67917272019-05-22 11:54:37 -07002963 if (mPolicyMixes.registerMix(mix, desc) != NO_ERROR) {
Kevin Rocard153f92d2018-12-18 18:33:28 -08002964 ALOGE("Could not register mix RENDER, dev=0x%X addr=%s", type,
2965 address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002966 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002967 } else {
2968 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002969 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002970 }
2971 }
Eric Laurentc529cf62020-04-17 18:19:10 -07002972 // If no output found, try to find a direct output profile supporting the device
2973 for (size_t i = 0; i < mHwModules.size() && !foundOutput && res == NO_ERROR; i++) {
2974 sp<HwModule> module = mHwModules[i];
2975 for (size_t j = 0;
2976 j < module->getOutputProfiles().size() && !foundOutput && res == NO_ERROR;
2977 j++) {
2978 sp<IOProfile> profile = module->getOutputProfiles()[j];
2979 if (profile->isDirectOutput() && profile->supportsDevice(device)) {
2980 if (mPolicyMixes.registerMix(mix, nullptr) != NO_ERROR) {
2981 ALOGE("Could not register mix RENDER, dev=0x%X addr=%s", type,
2982 address.string());
2983 res = INVALID_OPERATION;
2984 } else {
2985 foundOutput = true;
2986 }
2987 }
2988 }
2989 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002990 if (res != NO_ERROR) {
2991 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Eric Laurent2c80be02019-01-23 18:06:37 -08002992 i, type, address.string());
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002993 res = INVALID_OPERATION;
2994 break;
2995 } else if (!foundOutput) {
2996 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
Eric Laurent2c80be02019-01-23 18:06:37 -08002997 i, type, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002998 res = INVALID_OPERATION;
2999 break;
Eric Laurentc209fe42020-06-05 18:11:23 -07003000 } else {
3001 checkOutputs = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003002 }
Eric Laurentc722f302014-12-10 11:21:49 -08003003 }
Eric Laurent275e8e92014-11-30 15:14:47 -08003004 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003005 if (res != NO_ERROR) {
3006 unregisterPolicyMixes(mixes);
Eric Laurentc209fe42020-06-05 18:11:23 -07003007 } else if (checkOutputs) {
3008 checkForDeviceAndOutputChanges();
3009 updateCallAndOutputRouting();
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003010 }
3011 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08003012}
3013
3014status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
3015{
Eric Laurent7b279bb2015-12-14 10:18:23 -08003016 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003017 status_t res = NO_ERROR;
Eric Laurentc209fe42020-06-05 18:11:23 -07003018 bool checkOutputs = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003019 sp<HwModule> rSubmixModule;
3020 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003021 for (const auto& mix : mixes) {
3022 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01003023
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003024 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003025 rSubmixModule = mHwModules.getModuleFromName(
3026 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
3027 if (rSubmixModule == 0) {
3028 res = INVALID_OPERATION;
3029 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003030 }
3031 }
Eric Laurent275e8e92014-11-30 15:14:47 -08003032
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003033 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08003034
Jean-Michel Trivi67917272019-05-22 11:54:37 -07003035 if (mPolicyMixes.unregisterMix(mix) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003036 res = INVALID_OPERATION;
3037 continue;
3038 }
3039
Kevin Rocard04ed0462019-05-02 17:53:24 -07003040 for (auto device : {AUDIO_DEVICE_IN_REMOTE_SUBMIX, AUDIO_DEVICE_OUT_REMOTE_SUBMIX}) {
3041 if (getDeviceConnectionState(device, address.string()) ==
3042 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
3043 res = setDeviceConnectionStateInt(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
3044 address.string(), "remote-submix",
3045 AUDIO_FORMAT_DEFAULT);
3046 if (res != OK) {
3047 ALOGE("Error making RemoteSubmix device unavailable for mix "
3048 "with type %d, address %s", device, address.string());
3049 }
3050 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003051 }
jiabin5740f082019-08-19 15:08:30 -07003052 rSubmixModule->removeOutputProfile(address.c_str());
3053 rSubmixModule->removeInputProfile(address.c_str());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003054
Kevin Rocard153f92d2018-12-18 18:33:28 -08003055 } else if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi67917272019-05-22 11:54:37 -07003056 if (mPolicyMixes.unregisterMix(mix) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003057 res = INVALID_OPERATION;
3058 continue;
Eric Laurentc209fe42020-06-05 18:11:23 -07003059 } else {
3060 checkOutputs = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003061 }
Eric Laurent275e8e92014-11-30 15:14:47 -08003062 }
Eric Laurent275e8e92014-11-30 15:14:47 -08003063 }
Eric Laurentc209fe42020-06-05 18:11:23 -07003064 if (res == NO_ERROR && checkOutputs) {
3065 checkForDeviceAndOutputChanges();
3066 updateCallAndOutputRouting();
3067 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08003068 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08003069}
3070
Mikhail Naganov100f0122018-11-29 11:22:16 -08003071void AudioPolicyManager::dumpManualSurroundFormats(String8 *dst) const
3072{
3073 size_t i = 0;
3074 constexpr size_t audioFormatPrefixLen = sizeof("AUDIO_FORMAT_");
3075 for (const auto& fmt : mManualSurroundFormats) {
3076 if (i++ != 0) dst->append(", ");
3077 std::string sfmt;
3078 FormatConverter::toString(fmt, sfmt);
3079 dst->append(sfmt.size() >= audioFormatPrefixLen ?
3080 sfmt.c_str() + audioFormatPrefixLen - 1 : sfmt.c_str());
3081 }
3082}
3083
Eric Laurentc529cf62020-04-17 18:19:10 -07003084// Returns true if all devices types match the predicate and are supported by one HW module
3085bool AudioPolicyManager::areAllDevicesSupported(
3086 const Vector<AudioDeviceTypeAddr>& devices,
3087 std::function<bool(audio_devices_t)> predicate,
3088 const char *context) {
3089 for (size_t i = 0; i < devices.size(); i++) {
3090 sp<DeviceDescriptor> devDesc = mHwModules.getDeviceDescriptor(
3091 devices[i].mType, devices[i].mAddress.c_str(), String8(),
Eric Laurent0e26e3f2020-04-29 14:24:16 -07003092 AUDIO_FORMAT_DEFAULT, false /*allowToCreate*/, true /*matchAddress*/);
Eric Laurentc529cf62020-04-17 18:19:10 -07003093 if (devDesc == nullptr || (predicate != nullptr && !predicate(devices[i].mType))) {
3094 ALOGE("%s: device type %#x address %s not supported or not an output device",
3095 context, devices[i].mType, devices[i].mAddress.c_str());
3096 return false;
3097 }
3098 }
3099 return true;
3100}
3101
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003102status_t AudioPolicyManager::setUidDeviceAffinities(uid_t uid,
3103 const Vector<AudioDeviceTypeAddr>& devices) {
3104 ALOGV("%s() uid=%d num devices %zu", __FUNCTION__, uid, devices.size());
Eric Laurentc529cf62020-04-17 18:19:10 -07003105 if (!areAllDevicesSupported(devices, audio_is_output_device, __func__)) {
3106 return BAD_VALUE;
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003107 }
3108 status_t res = mPolicyMixes.setUidDeviceAffinities(uid, devices);
Eric Laurentc529cf62020-04-17 18:19:10 -07003109 if (res != NO_ERROR) {
3110 ALOGE("%s() Could not set all device affinities for uid = %d", __FUNCTION__, uid);
3111 return res;
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003112 }
Eric Laurentc529cf62020-04-17 18:19:10 -07003113
3114 checkForDeviceAndOutputChanges();
3115 updateCallAndOutputRouting();
3116
3117 return NO_ERROR;
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003118}
3119
3120status_t AudioPolicyManager::removeUidDeviceAffinities(uid_t uid) {
3121 ALOGV("%s() uid=%d", __FUNCTION__, uid);
Oscar Azucena4b2a8212019-04-26 23:48:59 -07003122 status_t res = mPolicyMixes.removeUidDeviceAffinities(uid);
3123 if (res != NO_ERROR) {
Eric Laurentc529cf62020-04-17 18:19:10 -07003124 ALOGE("%s() Could not remove all device affinities for uid = %d",
Oscar Azucena4b2a8212019-04-26 23:48:59 -07003125 __FUNCTION__, uid);
3126 return INVALID_OPERATION;
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003127 }
3128
Eric Laurentc529cf62020-04-17 18:19:10 -07003129 checkForDeviceAndOutputChanges();
3130 updateCallAndOutputRouting();
3131
Jean-Michel Trivibda70da2018-12-19 07:30:15 -08003132 return res;
3133}
3134
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003135status_t AudioPolicyManager::setPreferredDeviceForStrategy(product_strategy_t strategy,
3136 const AudioDeviceTypeAddr &device) {
Eric Laurentc529cf62020-04-17 18:19:10 -07003137 ALOGV("%s() strategy=%d device=%08x addr=%s", __FUNCTION__,
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003138 strategy, device.mType, device.mAddress.c_str());
Eric Laurentc529cf62020-04-17 18:19:10 -07003139
3140 Vector<AudioDeviceTypeAddr> devices;
3141 devices.add(device);
3142 if (!areAllDevicesSupported(devices, audio_is_output_device, __func__)) {
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003143 return BAD_VALUE;
3144 }
Jean-Michel Trivi30857152019-11-01 11:04:15 -07003145 status_t status = mEngine->setPreferredDeviceForStrategy(strategy, device);
3146 if (status != NO_ERROR) {
3147 ALOGW("Engine could not set preferred device %08x %s for strategy %d",
3148 device.mType, device.mAddress.c_str(), strategy);
3149 return status;
3150 }
3151
3152 checkForDeviceAndOutputChanges();
3153 updateCallAndOutputRouting();
3154
3155 return NO_ERROR;
3156}
3157
3158void AudioPolicyManager::updateCallAndOutputRouting(bool forceVolumeReeval, uint32_t delayMs)
3159{
3160 uint32_t waitMs = 0;
3161 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
3162 DeviceVector newDevices = getNewOutputDevices(mPrimaryOutput, true /*fromCache*/);
3163 waitMs = updateCallRouting(newDevices, delayMs);
3164 }
3165 for (size_t i = 0; i < mOutputs.size(); i++) {
3166 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
3167 DeviceVector newDevices = getNewOutputDevices(outputDesc, true /*fromCache*/);
3168 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
3169 // As done in setDeviceConnectionState, we could also fix default device issue by
3170 // preventing the force re-routing in case of default dev that distinguishes on address.
3171 // Let's give back to engine full device choice decision however.
3172 waitMs = setOutputDevices(outputDesc, newDevices, !newDevices.isEmpty(), delayMs);
3173 }
3174 if (forceVolumeReeval && !newDevices.isEmpty()) {
3175 applyStreamVolumes(outputDesc, newDevices.types(), waitMs, true);
3176 }
3177 }
3178}
3179
3180status_t AudioPolicyManager::removePreferredDeviceForStrategy(product_strategy_t strategy)
3181{
3182 ALOGI("%s() strategy=%d", __FUNCTION__, strategy);
3183
3184 status_t status = mEngine->removePreferredDeviceForStrategy(strategy);
3185 if (status != NO_ERROR) {
3186 ALOGW("Engine could not remove preferred device for strategy %d", strategy);
3187 return status;
3188 }
3189
3190 checkForDeviceAndOutputChanges();
3191 updateCallAndOutputRouting();
3192
3193 return NO_ERROR;
3194}
3195
3196status_t AudioPolicyManager::getPreferredDeviceForStrategy(product_strategy_t strategy,
3197 AudioDeviceTypeAddr &device) {
3198 return mEngine->getPreferredDeviceForStrategy(strategy, device);
3199}
3200
Oscar Azucena90e77632019-11-27 17:12:28 -08003201status_t AudioPolicyManager::setUserIdDeviceAffinities(int userId,
3202 const Vector<AudioDeviceTypeAddr>& devices) {
Eric Laurentc529cf62020-04-17 18:19:10 -07003203 ALOGI("%s() userId=%d num devices %zu", __FUNCTION__, userId, devices.size());\
3204 if (!areAllDevicesSupported(devices, audio_is_output_device, __func__)) {
3205 return BAD_VALUE;
Oscar Azucena90e77632019-11-27 17:12:28 -08003206 }
Oscar Azucena90e77632019-11-27 17:12:28 -08003207 status_t status = mPolicyMixes.setUserIdDeviceAffinities(userId, devices);
3208 if (status != NO_ERROR) {
3209 ALOGE("%s() could not set device affinity for userId %d",
3210 __FUNCTION__, userId);
3211 return status;
3212 }
3213
3214 // reevaluate outputs for all devices
3215 checkForDeviceAndOutputChanges();
3216 updateCallAndOutputRouting();
3217
3218 return NO_ERROR;
3219}
3220
3221status_t AudioPolicyManager::removeUserIdDeviceAffinities(int userId) {
3222 ALOGI("%s() userId=%d", __FUNCTION__, userId);
3223 status_t status = mPolicyMixes.removeUserIdDeviceAffinities(userId);
3224 if (status != NO_ERROR) {
3225 ALOGE("%s() Could not remove all device affinities fo userId = %d",
3226 __FUNCTION__, userId);
3227 return status;
3228 }
3229
3230 // reevaluate outputs for all devices
3231 checkForDeviceAndOutputChanges();
3232 updateCallAndOutputRouting();
3233
3234 return NO_ERROR;
3235}
3236
Andy Hungc29d82b2018-10-05 12:23:17 -07003237void AudioPolicyManager::dump(String8 *dst) const
Eric Laurente552edb2014-03-10 17:42:56 -07003238{
Andy Hungc29d82b2018-10-05 12:23:17 -07003239 dst->appendFormat("\nAudioPolicyManager Dump: %p\n", this);
3240 dst->appendFormat(" Primary Output: %d\n",
Eric Laurent87ffa392015-05-22 10:32:38 -07003241 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07003242 std::string stateLiteral;
3243 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
Andy Hungc29d82b2018-10-05 12:23:17 -07003244 dst->appendFormat(" Phone state: %s\n", stateLiteral.c_str());
Mikhail Naganov2e5167e12018-04-19 13:41:22 -07003245 const char* forceUses[AUDIO_POLICY_FORCE_USE_CNT] = {
3246 "communications", "media", "record", "dock", "system",
3247 "HDMI system audio", "encoded surround output", "vibrate ringing" };
3248 for (audio_policy_force_use_t i = AUDIO_POLICY_FORCE_FOR_COMMUNICATION;
3249 i < AUDIO_POLICY_FORCE_USE_CNT; i = (audio_policy_force_use_t)((int)i + 1)) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08003250 audio_policy_forced_cfg_t forceUseValue = mEngine->getForceUse(i);
3251 dst->appendFormat(" Force use for %s: %d", forceUses[i], forceUseValue);
3252 if (i == AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND &&
3253 forceUseValue == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
3254 dst->append(" (MANUAL: ");
3255 dumpManualSurroundFormats(dst);
3256 dst->append(")");
3257 }
3258 dst->append("\n");
Mikhail Naganov2e5167e12018-04-19 13:41:22 -07003259 }
Andy Hungc29d82b2018-10-05 12:23:17 -07003260 dst->appendFormat(" TTS output %savailable\n", mTtsOutputAvailable ? "" : "not ");
3261 dst->appendFormat(" Master mono: %s\n", mMasterMono ? "on" : "off");
3262 dst->appendFormat(" Config source: %s\n", mConfig.getSource().c_str()); // getConfig not const
3263 mAvailableOutputDevices.dump(dst, String8("Available output"));
3264 mAvailableInputDevices.dump(dst, String8("Available input"));
3265 mHwModulesAll.dump(dst);
3266 mOutputs.dump(dst);
3267 mInputs.dump(dst);
Andy Hungc29d82b2018-10-05 12:23:17 -07003268 mEffects.dump(dst);
3269 mAudioPatches.dump(dst);
3270 mPolicyMixes.dump(dst);
3271 mAudioSources.dump(dst);
François Gaffiec005e562018-11-06 15:04:49 +01003272
Kevin Rocardb99cc752019-03-21 20:52:24 -07003273 dst->appendFormat(" AllowedCapturePolicies:\n");
3274 for (auto& policy : mAllowedCapturePolicies) {
3275 dst->appendFormat(" - uid=%d flag_mask=%#x\n", policy.first, policy.second);
3276 }
3277
François Gaffiec005e562018-11-06 15:04:49 +01003278 dst->appendFormat("\nPolicy Engine dump:\n");
3279 mEngine->dump(dst);
Andy Hungc29d82b2018-10-05 12:23:17 -07003280}
3281
3282status_t AudioPolicyManager::dump(int fd)
3283{
3284 String8 result;
3285 dump(&result);
Andy Hungbb54e202018-10-05 11:42:02 -07003286 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07003287 return NO_ERROR;
3288}
3289
Kevin Rocardb99cc752019-03-21 20:52:24 -07003290status_t AudioPolicyManager::setAllowedCapturePolicy(uid_t uid, audio_flags_mask_t capturePolicy)
3291{
3292 mAllowedCapturePolicies[uid] = capturePolicy;
3293 return NO_ERROR;
3294}
3295
Eric Laurente552edb2014-03-10 17:42:56 -07003296// This function checks for the parameters which can be offloaded.
3297// This can be enhanced depending on the capability of the DSP and policy
3298// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07003299bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07003300{
3301 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07003302 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07003303 offloadInfo.sample_rate, offloadInfo.channel_mask,
3304 offloadInfo.format,
3305 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
3306 offloadInfo.has_video);
3307
Andy Hung2ddee192015-12-18 17:34:44 -08003308 if (mMasterMono) {
3309 return false; // no offloading if mono is set.
3310 }
3311
Eric Laurente552edb2014-03-10 17:42:56 -07003312 // Check if offload has been disabled
Andy Hung0f6e6402018-09-06 11:20:45 -07003313 if (property_get_bool("audio.offload.disable", false /* default_value */)) {
3314 ALOGV("offload disabled by audio.offload.disable");
3315 return false;
Eric Laurente552edb2014-03-10 17:42:56 -07003316 }
3317
3318 // Check if stream type is music, then only allow offload as of now.
3319 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
3320 {
3321 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
3322 return false;
3323 }
3324
3325 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07003326 const bool allowOffloadWithVideo =
3327 property_get_bool("audio.offload.video", false /* default_value */);
3328 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07003329 ALOGV("isOffloadSupported: has_video == true, returning false");
3330 return false;
3331 }
3332
3333 //If duration is less than minimum value defined in property, return false
Andy Hung0f6e6402018-09-06 11:20:45 -07003334 const int min_duration_secs = property_get_int32(
3335 "audio.offload.min.duration.secs", -1 /* default_value */);
3336 if (min_duration_secs >= 0) {
3337 if (offloadInfo.duration_us < min_duration_secs * 1000000LL) {
3338 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%d)",
3339 min_duration_secs);
Eric Laurente552edb2014-03-10 17:42:56 -07003340 return false;
3341 }
3342 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
3343 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
3344 return false;
3345 }
3346
3347 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
3348 // creating an offloaded track and tearing it down immediately after start when audioflinger
3349 // detects there is an active non offloadable effect.
3350 // FIXME: We should check the audio session here but we do not have it in this context.
3351 // This may prevent offloading in rare situations where effects are left active by apps
3352 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01003353 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003354 return false;
3355 }
3356
3357 // See if there is a profile to support this.
3358 // AUDIO_DEVICE_NONE
François Gaffie11d30102018-11-02 16:09:09 +01003359 sp<IOProfile> profile = getProfileForOutput(DeviceVector() /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07003360 offloadInfo.sample_rate,
3361 offloadInfo.format,
3362 offloadInfo.channel_mask,
Michael Chana94fbb22018-04-24 14:31:19 +10003363 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD,
3364 true /* directOnly */);
Eric Laurent1c333e22014-05-20 10:48:17 -07003365 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
3366 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07003367}
3368
Michael Chana94fbb22018-04-24 14:31:19 +10003369bool AudioPolicyManager::isDirectOutputSupported(const audio_config_base_t& config,
3370 const audio_attributes_t& attributes) {
3371 audio_output_flags_t output_flags = AUDIO_OUTPUT_FLAG_NONE;
François Gaffie58d4be52018-11-06 15:30:12 +01003372 audio_flags_to_audio_output_flags(attributes.flags, &output_flags);
François Gaffie11d30102018-11-02 16:09:09 +01003373 sp<IOProfile> profile = getProfileForOutput(DeviceVector() /*ignore device */,
Michael Chana94fbb22018-04-24 14:31:19 +10003374 config.sample_rate,
3375 config.format,
3376 config.channel_mask,
3377 output_flags,
3378 true /* directOnly */);
3379 ALOGV("%s() profile %sfound with name: %s, "
3380 "sample rate: %u, format: 0x%x, channel_mask: 0x%x, output flags: 0x%x",
3381 __FUNCTION__, profile != 0 ? "" : "NOT ",
jiabin5740f082019-08-19 15:08:30 -07003382 (profile != 0 ? profile->getTagName().c_str() : "null"),
Michael Chana94fbb22018-04-24 14:31:19 +10003383 config.sample_rate, config.format, config.channel_mask, output_flags);
3384 return (profile != 0);
3385}
3386
Eric Laurent6a94d692014-05-20 11:18:06 -07003387status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
3388 audio_port_type_t type,
3389 unsigned int *num_ports,
3390 struct audio_port *ports,
3391 unsigned int *generation)
3392{
3393 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
3394 generation == NULL) {
3395 return BAD_VALUE;
3396 }
3397 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
3398 if (ports == NULL) {
3399 *num_ports = 0;
3400 }
3401
3402 size_t portsWritten = 0;
3403 size_t portsMax = *num_ports;
3404 *num_ports = 0;
3405 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07003406 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
3407 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07003408 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003409 for (const auto& dev : mAvailableOutputDevices) {
3410 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07003411 continue;
3412 }
3413 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003414 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07003415 }
3416 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003417 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003418 }
3419 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003420 for (const auto& dev : mAvailableInputDevices) {
3421 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07003422 continue;
3423 }
3424 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003425 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07003426 }
3427 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003428 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003429 }
3430 }
3431 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
3432 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
3433 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
3434 mInputs[i]->toAudioPort(&ports[portsWritten++]);
3435 }
3436 *num_ports += mInputs.size();
3437 }
3438 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07003439 size_t numOutputs = 0;
3440 for (size_t i = 0; i < mOutputs.size(); i++) {
3441 if (!mOutputs[i]->isDuplicated()) {
3442 numOutputs++;
3443 if (portsWritten < portsMax) {
3444 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
3445 }
3446 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003447 }
Eric Laurent84c70242014-06-23 08:46:27 -07003448 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07003449 }
3450 }
3451 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07003452 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07003453 return NO_ERROR;
3454}
3455
Eric Laurent99fcae42018-05-17 16:59:18 -07003456status_t AudioPolicyManager::getAudioPort(struct audio_port *port)
Eric Laurent6a94d692014-05-20 11:18:06 -07003457{
Eric Laurent99fcae42018-05-17 16:59:18 -07003458 if (port == nullptr || port->id == AUDIO_PORT_HANDLE_NONE) {
3459 return BAD_VALUE;
3460 }
3461 sp<DeviceDescriptor> dev = mAvailableOutputDevices.getDeviceFromId(port->id);
3462 if (dev != 0) {
3463 dev->toAudioPort(port);
3464 return NO_ERROR;
3465 }
3466 dev = mAvailableInputDevices.getDeviceFromId(port->id);
3467 if (dev != 0) {
3468 dev->toAudioPort(port);
3469 return NO_ERROR;
3470 }
3471 sp<SwAudioOutputDescriptor> out = mOutputs.getOutputFromId(port->id);
3472 if (out != 0) {
3473 out->toAudioPort(port);
3474 return NO_ERROR;
3475 }
3476 sp<AudioInputDescriptor> in = mInputs.getInputFromId(port->id);
3477 if (in != 0) {
3478 in->toAudioPort(port);
3479 return NO_ERROR;
3480 }
3481 return BAD_VALUE;
Eric Laurent6a94d692014-05-20 11:18:06 -07003482}
3483
François Gaffieafd4cea2019-11-18 15:50:22 +01003484status_t AudioPolicyManager::createAudioPatchInternal(const struct audio_patch *patch,
3485 audio_patch_handle_t *handle,
3486 uid_t uid, uint32_t delayMs,
3487 const sp<SourceClientDescriptor>& sourceDesc)
Eric Laurent6a94d692014-05-20 11:18:06 -07003488{
François Gaffieafd4cea2019-11-18 15:50:22 +01003489 ALOGV("%s", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07003490 if (handle == NULL || patch == NULL) {
3491 return BAD_VALUE;
3492 }
François Gaffieafd4cea2019-11-18 15:50:22 +01003493 ALOGV("%s num sources %d num sinks %d", __func__, patch->num_sources, patch->num_sinks);
Eric Laurent6a94d692014-05-20 11:18:06 -07003494
Mikhail Naganovac9858b2018-06-15 13:12:37 -07003495 if (!audio_patch_is_valid(patch)) {
Eric Laurent874c42872014-08-08 15:13:39 -07003496 return BAD_VALUE;
3497 }
3498 // only one source per audio patch supported for now
3499 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003500 return INVALID_OPERATION;
3501 }
Eric Laurent874c42872014-08-08 15:13:39 -07003502
3503 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003504 return INVALID_OPERATION;
3505 }
Eric Laurent874c42872014-08-08 15:13:39 -07003506 for (size_t i = 0; i < patch->num_sinks; i++) {
3507 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
3508 return INVALID_OPERATION;
3509 }
3510 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003511
3512 sp<AudioPatch> patchDesc;
3513 ssize_t index = mAudioPatches.indexOfKey(*handle);
3514
François Gaffieafd4cea2019-11-18 15:50:22 +01003515 ALOGV("%s source id %d role %d type %d", __func__, patch->sources[0].id,
3516 patch->sources[0].role,
3517 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07003518#if LOG_NDEBUG == 0
3519 for (size_t i = 0; i < patch->num_sinks; i++) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003520 ALOGV("%s sink %zu: id %d role %d type %d", __func__ ,i, patch->sinks[i].id,
3521 patch->sinks[i].role,
3522 patch->sinks[i].type);
Eric Laurent874c42872014-08-08 15:13:39 -07003523 }
3524#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07003525
3526 if (index >= 0) {
3527 patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01003528 ALOGV("%s mUidCached %d patchDesc->mUid %d uid %d",
3529 __func__, mUidCached, patchDesc->getUid(), uid);
3530 if (patchDesc->getUid() != mUidCached && uid != patchDesc->getUid()) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003531 return INVALID_OPERATION;
3532 }
3533 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07003534 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07003535 }
3536
3537 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003538 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003539 if (outputDesc == NULL) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003540 ALOGV("%s output not found for id %d", __func__, patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003541 return BAD_VALUE;
3542 }
Eric Laurent84c70242014-06-23 08:46:27 -07003543 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
3544 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07003545 if (patchDesc != 0) {
3546 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003547 ALOGV("%s source id differs for patch current id %d new id %d",
3548 __func__, patchDesc->mPatch.sources[0].id, patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003549 return BAD_VALUE;
3550 }
3551 }
Eric Laurent874c42872014-08-08 15:13:39 -07003552 DeviceVector devices;
3553 for (size_t i = 0; i < patch->num_sinks; i++) {
3554 // Only support mix to devices connection
3555 // TODO add support for mix to mix connection
3556 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003557 ALOGV("%s source mix but sink is not a device", __func__);
Eric Laurent874c42872014-08-08 15:13:39 -07003558 return INVALID_OPERATION;
3559 }
3560 sp<DeviceDescriptor> devDesc =
3561 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
3562 if (devDesc == 0) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003563 ALOGV("%s out device not found for id %d", __func__, patch->sinks[i].id);
Eric Laurent874c42872014-08-08 15:13:39 -07003564 return BAD_VALUE;
3565 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003566
François Gaffie11d30102018-11-02 16:09:09 +01003567 if (!outputDesc->mProfile->isCompatibleProfile(DeviceVector(devDesc),
Eric Laurent874c42872014-08-08 15:13:39 -07003568 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01003569 NULL, // updatedSamplingRate
3570 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07003571 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01003572 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07003573 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01003574 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003575 ALOGV("%s profile not supported for device %08x", __func__, devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07003576 return INVALID_OPERATION;
3577 }
3578 devices.add(devDesc);
3579 }
3580 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003581 return INVALID_OPERATION;
3582 }
Eric Laurent874c42872014-08-08 15:13:39 -07003583
Eric Laurent6a94d692014-05-20 11:18:06 -07003584 // TODO: reconfigure output format and channels here
François Gaffieafd4cea2019-11-18 15:50:22 +01003585 ALOGV("%s setting device %s on output %d",
3586 __func__, dumpDeviceTypes(devices.types()).c_str(), outputDesc->mIoHandle);
François Gaffie11d30102018-11-02 16:09:09 +01003587 setOutputDevices(outputDesc, devices, true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07003588 index = mAudioPatches.indexOfKey(*handle);
3589 if (index >= 0) {
3590 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003591 ALOGW("%s setOutputDevice() did not reuse the patch provided", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07003592 }
3593 patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01003594 patchDesc->setUid(uid);
3595 ALOGV("%s success", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07003596 } else {
François Gaffieafd4cea2019-11-18 15:50:22 +01003597 ALOGW("%s setOutputDevice() failed to create a patch", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07003598 return INVALID_OPERATION;
3599 }
3600 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3601 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
3602 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07003603 // only one sink supported when connecting an input device to a mix
3604 if (patch->num_sinks > 1) {
3605 return INVALID_OPERATION;
3606 }
François Gaffie53615e22015-03-19 09:24:12 +01003607 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003608 if (inputDesc == NULL) {
3609 return BAD_VALUE;
3610 }
3611 if (patchDesc != 0) {
3612 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
3613 return BAD_VALUE;
3614 }
3615 }
François Gaffie11d30102018-11-02 16:09:09 +01003616 sp<DeviceDescriptor> device =
Eric Laurent6a94d692014-05-20 11:18:06 -07003617 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
François Gaffie11d30102018-11-02 16:09:09 +01003618 if (device == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003619 return BAD_VALUE;
3620 }
3621
François Gaffie11d30102018-11-02 16:09:09 +01003622 if (!inputDesc->mProfile->isCompatibleProfile(DeviceVector(device),
Eric Laurent275e8e92014-11-30 15:14:47 -08003623 patch->sinks[0].sample_rate,
3624 NULL, /*updatedSampleRate*/
3625 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07003626 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08003627 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07003628 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08003629 // FIXME for the parameter type,
3630 // and the NONE
3631 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07003632 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003633 return INVALID_OPERATION;
3634 }
3635 // TODO: reconfigure output format and channels here
François Gaffieafd4cea2019-11-18 15:50:22 +01003636 ALOGV("%s setting device %s on output %d", __func__,
François Gaffie11d30102018-11-02 16:09:09 +01003637 device->toString().c_str(), inputDesc->mIoHandle);
3638 setInputDevice(inputDesc->mIoHandle, device, true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07003639 index = mAudioPatches.indexOfKey(*handle);
3640 if (index >= 0) {
3641 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003642 ALOGW("%s setInputDevice() did not reuse the patch provided", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07003643 }
3644 patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01003645 patchDesc->setUid(uid);
3646 ALOGV("%s success", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07003647 } else {
François Gaffieafd4cea2019-11-18 15:50:22 +01003648 ALOGW("%s setInputDevice() failed to create a patch", __func__);
Eric Laurent6a94d692014-05-20 11:18:06 -07003649 return INVALID_OPERATION;
3650 }
3651 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
3652 // device to device connection
3653 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07003654 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003655 return BAD_VALUE;
3656 }
3657 }
François Gaffie11d30102018-11-02 16:09:09 +01003658 sp<DeviceDescriptor> srcDevice =
Eric Laurent6a94d692014-05-20 11:18:06 -07003659 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
François Gaffie11d30102018-11-02 16:09:09 +01003660 if (srcDevice == 0) {
Eric Laurent58f8eb72014-09-12 16:19:41 -07003661 return BAD_VALUE;
3662 }
Eric Laurent874c42872014-08-08 15:13:39 -07003663
Eric Laurent6a94d692014-05-20 11:18:06 -07003664 //update source and sink with our own data as the data passed in the patch may
3665 // be incomplete.
François Gaffieafd4cea2019-11-18 15:50:22 +01003666 PatchBuilder patchBuilder;
3667 audio_port_config sourcePortConfig = {};
3668 srcDevice->toAudioPortConfig(&sourcePortConfig, &patch->sources[0]);
3669 patchBuilder.addSource(sourcePortConfig);
Eric Laurent6a94d692014-05-20 11:18:06 -07003670
Eric Laurent874c42872014-08-08 15:13:39 -07003671 for (size_t i = 0; i < patch->num_sinks; i++) {
3672 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003673 ALOGV("%s source device but one sink is not a device", __func__);
Eric Laurent874c42872014-08-08 15:13:39 -07003674 return INVALID_OPERATION;
3675 }
François Gaffie11d30102018-11-02 16:09:09 +01003676 sp<DeviceDescriptor> sinkDevice =
Eric Laurent874c42872014-08-08 15:13:39 -07003677 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
François Gaffie11d30102018-11-02 16:09:09 +01003678 if (sinkDevice == 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07003679 return BAD_VALUE;
3680 }
François Gaffieafd4cea2019-11-18 15:50:22 +01003681 audio_port_config sinkPortConfig = {};
3682 sinkDevice->toAudioPortConfig(&sinkPortConfig, &patch->sinks[i]);
3683 patchBuilder.addSink(sinkPortConfig);
Eric Laurent874c42872014-08-08 15:13:39 -07003684
Eric Laurent3bcf8592015-04-03 12:13:24 -07003685 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08003686 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07003687 // - audio HAL version is < 3.0
Francois Gaffie99896da2018-04-09 11:05:33 +02003688 // - audio HAL version is >= 3.0 but no route has been declared between devices
François Gaffieafd4cea2019-11-18 15:50:22 +01003689 // - called from startAudioSource (aka sourceDesc != nullptr) and source device does
3690 // not have a gain controller
François Gaffie11d30102018-11-02 16:09:09 +01003691 if (!srcDevice->hasSameHwModuleAs(sinkDevice) ||
3692 (srcDevice->getModuleVersionMajor() < 3) ||
François Gaffieafd4cea2019-11-18 15:50:22 +01003693 !srcDevice->getModule()->supportsPatch(srcDevice, sinkDevice) ||
3694 (sourceDesc != nullptr &&
3695 srcDevice->getAudioPort()->getGains().size() == 0)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07003696 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07003697 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07003698 return INVALID_OPERATION;
3699 }
François Gaffieafd4cea2019-11-18 15:50:22 +01003700 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
3701 if (sourceDesc != nullptr) {
3702 // take care of dynamic routing for SwOutput selection,
3703 audio_attributes_t attributes = sourceDesc->attributes();
3704 audio_stream_type_t stream = sourceDesc->stream();
3705 audio_attributes_t resultAttr;
3706 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3707 config.sample_rate = sourceDesc->config().sample_rate;
3708 config.channel_mask = sourceDesc->config().channel_mask;
3709 config.format = sourceDesc->config().format;
3710 audio_output_flags_t flags = AUDIO_OUTPUT_FLAG_NONE;
3711 audio_port_handle_t selectedDeviceId = AUDIO_PORT_HANDLE_NONE;
3712 bool isRequestedDeviceForExclusiveUse = false;
François Gaffieafd4cea2019-11-18 15:50:22 +01003713 output_type_t outputType;
3714 getOutputForAttrInt(&resultAttr, &output, AUDIO_SESSION_NONE, &attributes,
3715 &stream, sourceDesc->uid(), &config, &flags,
3716 &selectedDeviceId, &isRequestedDeviceForExclusiveUse,
Eric Laurentc529cf62020-04-17 18:19:10 -07003717 nullptr, &outputType);
François Gaffieafd4cea2019-11-18 15:50:22 +01003718 if (output == AUDIO_IO_HANDLE_NONE) {
3719 ALOGV("%s no output for device %s",
3720 __FUNCTION__, sinkDevice->toString().c_str());
Eric Laurent874c42872014-08-08 15:13:39 -07003721 return INVALID_OPERATION;
3722 }
François Gaffieafd4cea2019-11-18 15:50:22 +01003723 } else {
3724 SortedVector<audio_io_handle_t> outputs =
3725 getOutputsForDevices(DeviceVector(sinkDevice), mOutputs);
3726 // if the sink device is reachable via an opened output stream, request to
3727 // go via this output stream by adding a second source to the patch
3728 // description
3729 output = selectOutput(outputs);
3730 }
3731 if (output != AUDIO_IO_HANDLE_NONE) {
3732 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3733 if (outputDesc->isDuplicated()) {
3734 ALOGV("%s output for device %s is duplicated",
3735 __FUNCTION__, sinkDevice->toString().c_str());
3736 return INVALID_OPERATION;
3737 }
3738 audio_port_config srcMixPortConfig = {};
3739 outputDesc->toAudioPortConfig(&srcMixPortConfig, &patch->sources[0]);
3740 if (sourceDesc != nullptr) {
3741 sourceDesc->setSwOutput(outputDesc);
3742 }
3743 // for volume control, we may need a valid stream
3744 srcMixPortConfig.ext.mix.usecase.stream = sourceDesc != nullptr ?
3745 sourceDesc->stream() : AUDIO_STREAM_PATCH;
3746 patchBuilder.addSource(srcMixPortConfig);
Eric Laurent874c42872014-08-08 15:13:39 -07003747 }
Eric Laurent83b88082014-06-20 18:31:16 -07003748 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003749 }
3750 // TODO: check from routing capabilities in config file and other conflicting patches
3751
François Gaffieafd4cea2019-11-18 15:50:22 +01003752 status_t status = installPatch(
3753 __func__, index, handle, patchBuilder.patch(), delayMs, uid, &patchDesc);
Mikhail Naganovdc769682018-05-04 15:34:08 -07003754 if (status != NO_ERROR) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003755 ALOGW("%s patch panel could not connect device patch, error %d", __func__, status);
Eric Laurent6a94d692014-05-20 11:18:06 -07003756 return INVALID_OPERATION;
3757 }
3758 } else {
3759 return BAD_VALUE;
3760 }
3761 } else {
3762 return BAD_VALUE;
3763 }
3764 return NO_ERROR;
3765}
3766
3767status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3768 uid_t uid)
3769{
3770 ALOGV("releaseAudioPatch() patch %d", handle);
3771
3772 ssize_t index = mAudioPatches.indexOfKey(handle);
3773
3774 if (index < 0) {
3775 return BAD_VALUE;
3776 }
3777 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01003778 ALOGV("%s() mUidCached %d patchDesc->mUid %d uid %d",
3779 __func__, mUidCached, patchDesc->getUid(), uid);
3780 if (patchDesc->getUid() != mUidCached && uid != patchDesc->getUid()) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003781 return INVALID_OPERATION;
3782 }
François Gaffieafd4cea2019-11-18 15:50:22 +01003783 return releaseAudioPatchInternal(handle);
3784}
Eric Laurent6a94d692014-05-20 11:18:06 -07003785
François Gaffieafd4cea2019-11-18 15:50:22 +01003786status_t AudioPolicyManager::releaseAudioPatchInternal(audio_patch_handle_t handle,
3787 uint32_t delayMs)
3788{
3789 ALOGV("%s patch %d", __func__, handle);
3790 if (mAudioPatches.indexOfKey(handle) < 0) {
3791 ALOGE("%s: no patch found with handle=%d", __func__, handle);
3792 return BAD_VALUE;
3793 }
3794 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07003795 struct audio_patch *patch = &patchDesc->mPatch;
François Gaffieafd4cea2019-11-18 15:50:22 +01003796 patchDesc->setUid(mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07003797 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003798 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003799 if (outputDesc == NULL) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003800 ALOGV("%s output not found for id %d", __func__, patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003801 return BAD_VALUE;
3802 }
3803
François Gaffie11d30102018-11-02 16:09:09 +01003804 setOutputDevices(outputDesc,
3805 getNewOutputDevices(outputDesc, true /*fromCache*/),
3806 true,
3807 0,
3808 NULL);
Eric Laurent6a94d692014-05-20 11:18:06 -07003809 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3810 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003811 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003812 if (inputDesc == NULL) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003813 ALOGV("%s input not found for id %d", __func__, patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003814 return BAD_VALUE;
3815 }
3816 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003817 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003818 true,
3819 NULL);
3820 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
François Gaffieafd4cea2019-11-18 15:50:22 +01003821 status_t status =
3822 mpClientInterface->releaseAudioPatch(patchDesc->getAfHandle(), delayMs);
3823 ALOGV("%s patch panel returned %d patchHandle %d",
3824 __func__, status, patchDesc->getAfHandle());
3825 removeAudioPatch(patchDesc->getHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07003826 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003827 mpClientInterface->onAudioPatchListUpdate();
Francois Gaffie7feb8542020-04-06 17:39:47 +02003828 // SW Bridge
3829 if (patch->num_sources > 1 && patch->sources[1].type == AUDIO_PORT_TYPE_MIX) {
3830 sp<SwAudioOutputDescriptor> outputDesc =
3831 mOutputs.getOutputFromId(patch->sources[1].id);
3832 if (outputDesc == NULL) {
3833 ALOGE("%s output not found for id %d", __func__, patch->sources[0].id);
3834 return BAD_VALUE;
3835 }
Francois Gaffie8e544542020-05-11 14:12:53 +02003836 if (patchDesc->getHandle() != outputDesc->getPatchHandle()) {
3837 // force SwOutput patch removal as AF counter part patch has already gone.
3838 ALOGV("%s reset patch handle on Output as different from SWBridge", __func__);
3839 removeAudioPatch(outputDesc->getPatchHandle());
3840 }
Francois Gaffie7feb8542020-04-06 17:39:47 +02003841 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
3842 setOutputDevices(outputDesc,
3843 getNewOutputDevices(outputDesc, true /*fromCache*/),
3844 true, /*force*/
3845 0,
3846 NULL);
3847 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003848 } else {
3849 return BAD_VALUE;
3850 }
3851 } else {
3852 return BAD_VALUE;
3853 }
3854 return NO_ERROR;
3855}
3856
3857status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3858 struct audio_patch *patches,
3859 unsigned int *generation)
3860{
François Gaffie53615e22015-03-19 09:24:12 +01003861 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003862 return BAD_VALUE;
3863 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003864 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003865 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003866}
3867
Eric Laurente1715a42014-05-20 11:30:42 -07003868status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003869{
Eric Laurente1715a42014-05-20 11:30:42 -07003870 ALOGV("setAudioPortConfig()");
3871
3872 if (config == NULL) {
3873 return BAD_VALUE;
3874 }
3875 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3876 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003877 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3878 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003879 }
3880
Eric Laurenta121f902014-06-03 13:32:54 -07003881 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003882 if (config->type == AUDIO_PORT_TYPE_MIX) {
3883 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003884 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003885 if (outputDesc == NULL) {
3886 return BAD_VALUE;
3887 }
Eric Laurent84c70242014-06-23 08:46:27 -07003888 ALOG_ASSERT(!outputDesc->isDuplicated(),
3889 "setAudioPortConfig() called on duplicated output %d",
3890 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003891 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003892 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003893 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003894 if (inputDesc == NULL) {
3895 return BAD_VALUE;
3896 }
Eric Laurenta121f902014-06-03 13:32:54 -07003897 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003898 } else {
3899 return BAD_VALUE;
3900 }
3901 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3902 sp<DeviceDescriptor> deviceDesc;
3903 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3904 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3905 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3906 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3907 } else {
3908 return BAD_VALUE;
3909 }
3910 if (deviceDesc == NULL) {
3911 return BAD_VALUE;
3912 }
Eric Laurenta121f902014-06-03 13:32:54 -07003913 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003914 } else {
3915 return BAD_VALUE;
3916 }
3917
Mikhail Naganov7be71d22018-05-23 16:51:46 -07003918 struct audio_port_config backupConfig = {};
Eric Laurenta121f902014-06-03 13:32:54 -07003919 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3920 if (status == NO_ERROR) {
Mikhail Naganov7be71d22018-05-23 16:51:46 -07003921 struct audio_port_config newConfig = {};
Eric Laurenta121f902014-06-03 13:32:54 -07003922 audioPortConfig->toAudioPortConfig(&newConfig, config);
3923 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003924 }
Eric Laurenta121f902014-06-03 13:32:54 -07003925 if (status != NO_ERROR) {
3926 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003927 }
Eric Laurente1715a42014-05-20 11:30:42 -07003928
3929 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003930}
3931
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003932void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3933{
Eric Laurentd60560a2015-04-10 11:31:20 -07003934 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003935 clearAudioPatches(uid);
3936 clearSessionRoutes(uid);
3937}
3938
Eric Laurent6a94d692014-05-20 11:18:06 -07003939void AudioPolicyManager::clearAudioPatches(uid_t uid)
3940{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003941 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003942 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
François Gaffieafd4cea2019-11-18 15:50:22 +01003943 if (patchDesc->getUid() == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003944 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003945 }
3946 }
3947}
3948
François Gaffiec005e562018-11-06 15:04:49 +01003949void AudioPolicyManager::checkStrategyRoute(product_strategy_t ps, audio_io_handle_t ouptutToSkip)
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003950{
François Gaffiec005e562018-11-06 15:04:49 +01003951 // Take the first attributes following the product strategy as it is used to retrieve the routed
3952 // device. All attributes wihin a strategy follows the same "routing strategy"
3953 auto attributes = mEngine->getAllAttributesForProductStrategy(ps).front();
3954 DeviceVector devices = mEngine->getOutputDevicesForAttributes(attributes, nullptr, false);
François Gaffie11d30102018-11-02 16:09:09 +01003955 SortedVector<audio_io_handle_t> outputs = getOutputsForDevices(devices, mOutputs);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003956 for (size_t j = 0; j < mOutputs.size(); j++) {
3957 if (mOutputs.keyAt(j) == ouptutToSkip) {
3958 continue;
3959 }
3960 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
François Gaffiec005e562018-11-06 15:04:49 +01003961 if (!outputDesc->isStrategyActive(ps)) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003962 continue;
3963 }
3964 // If the default device for this strategy is on another output mix,
3965 // invalidate all tracks in this strategy to force re connection.
3966 // Otherwise select new device on the output mix.
3967 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
François Gaffiec005e562018-11-06 15:04:49 +01003968 for (auto stream : mEngine->getStreamTypesForProductStrategy(ps)) {
3969 mpClientInterface->invalidateStream(stream);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003970 }
3971 } else {
François Gaffie11d30102018-11-02 16:09:09 +01003972 setOutputDevices(
3973 outputDesc, getNewOutputDevices(outputDesc, false /*fromCache*/), false);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003974 }
3975 }
3976}
3977
3978void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3979{
3980 // remove output routes associated with this uid
François Gaffiec005e562018-11-06 15:04:49 +01003981 std::vector<product_strategy_t> affectedStrategies;
Eric Laurent97ac8712018-07-27 18:59:02 -07003982 for (size_t i = 0; i < mOutputs.size(); i++) {
3983 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
Andy Hung39efb7a2018-09-26 15:39:28 -07003984 for (const auto& client : outputDesc->getClientIterable()) {
3985 if (client->hasPreferredDevice() && client->uid() == uid) {
3986 client->setPreferredDeviceId(AUDIO_PORT_HANDLE_NONE);
François Gaffiec005e562018-11-06 15:04:49 +01003987 auto clientStrategy = client->strategy();
3988 if (std::find(begin(affectedStrategies), end(affectedStrategies), clientStrategy) !=
3989 end(affectedStrategies)) {
3990 continue;
3991 }
3992 affectedStrategies.push_back(client->strategy());
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003993 }
3994 }
3995 }
3996 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003997 for (const auto& strategy : affectedStrategies) {
3998 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003999 }
4000
4001 // remove input routes associated with this uid
4002 SortedVector<audio_source_t> affectedSources;
Eric Laurent97ac8712018-07-27 18:59:02 -07004003 for (size_t i = 0; i < mInputs.size(); i++) {
4004 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Andy Hung39efb7a2018-09-26 15:39:28 -07004005 for (const auto& client : inputDesc->getClientIterable()) {
4006 if (client->hasPreferredDevice() && client->uid() == uid) {
4007 client->setPreferredDeviceId(AUDIO_PORT_HANDLE_NONE);
4008 affectedSources.add(client->source());
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004009 }
4010 }
4011 }
4012 // reroute inputs if necessary
4013 SortedVector<audio_io_handle_t> inputsToClose;
4014 for (size_t i = 0; i < mInputs.size(); i++) {
4015 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent4eb58f12018-12-07 16:41:02 -08004016 if (affectedSources.indexOf(inputDesc->source()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004017 inputsToClose.add(inputDesc->mIoHandle);
4018 }
4019 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004020 for (const auto& input : inputsToClose) {
4021 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004022 }
4023}
4024
Eric Laurentd60560a2015-04-10 11:31:20 -07004025void AudioPolicyManager::clearAudioSources(uid_t uid)
4026{
4027 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004028 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueAt(i);
4029 if (sourceDesc->uid() == uid) {
Eric Laurentd60560a2015-04-10 11:31:20 -07004030 stopAudioSource(mAudioSources.keyAt(i));
4031 }
4032 }
4033}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004034
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004035status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
4036 audio_io_handle_t *ioHandle,
4037 audio_devices_t *device)
4038{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08004039 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
4040 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Francois Gaffie716e1432019-01-14 16:58:59 +01004041 audio_attributes_t attr = { .source = AUDIO_SOURCE_HOTWORD };
François Gaffiec005e562018-11-06 15:04:49 +01004042 *device = mEngine->getInputDeviceForAttributes(attr)->type();
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004043
François Gaffiedf372692015-03-19 10:43:27 +01004044 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004045}
4046
Eric Laurentd60560a2015-04-10 11:31:20 -07004047status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004048 const audio_attributes_t *attributes,
4049 audio_port_handle_t *portId,
4050 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07004051{
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004052 ALOGV("%s", __FUNCTION__);
4053 *portId = AUDIO_PORT_HANDLE_NONE;
4054
4055 if (source == NULL || attributes == NULL || portId == NULL) {
4056 ALOGW("%s invalid argument: source %p attributes %p handle %p",
4057 __FUNCTION__, source, attributes, portId);
Eric Laurentd60560a2015-04-10 11:31:20 -07004058 return BAD_VALUE;
4059 }
4060
Eric Laurentd60560a2015-04-10 11:31:20 -07004061 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
4062 source->type != AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004063 ALOGW("%s INVALID_OPERATION source->role %d source->type %d",
4064 __FUNCTION__, source->role, source->type);
Eric Laurentd60560a2015-04-10 11:31:20 -07004065 return INVALID_OPERATION;
4066 }
4067
François Gaffie11d30102018-11-02 16:09:09 +01004068 sp<DeviceDescriptor> srcDevice =
Eric Laurentd60560a2015-04-10 11:31:20 -07004069 mAvailableInputDevices.getDevice(source->ext.device.type,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08004070 String8(source->ext.device.address),
4071 AUDIO_FORMAT_DEFAULT);
François Gaffie11d30102018-11-02 16:09:09 +01004072 if (srcDevice == 0) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004073 ALOGW("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
Eric Laurentd60560a2015-04-10 11:31:20 -07004074 return BAD_VALUE;
4075 }
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004076
jiabin4ef93452019-09-10 14:29:54 -07004077 *portId = PolicyAudioPort::getNextUniqueId();
Eric Laurentd60560a2015-04-10 11:31:20 -07004078
François Gaffieaaac0fd2018-11-22 17:56:39 +01004079 sp<SourceClientDescriptor> sourceDesc =
François Gaffieafd4cea2019-11-18 15:50:22 +01004080 new SourceClientDescriptor(*portId, uid, *attributes, *source, srcDevice,
François Gaffieaaac0fd2018-11-22 17:56:39 +01004081 mEngine->getStreamTypeForAttributes(*attributes),
4082 mEngine->getProductStrategyForAttributes(*attributes),
4083 toVolumeSource(*attributes));
Eric Laurentd60560a2015-04-10 11:31:20 -07004084
4085 status_t status = connectAudioSource(sourceDesc);
4086 if (status == NO_ERROR) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004087 mAudioSources.add(*portId, sourceDesc);
Eric Laurentd60560a2015-04-10 11:31:20 -07004088 }
4089 return status;
4090}
4091
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004092status_t AudioPolicyManager::connectAudioSource(const sp<SourceClientDescriptor>& sourceDesc)
Eric Laurentd60560a2015-04-10 11:31:20 -07004093{
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004094 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->portId());
Eric Laurentd60560a2015-04-10 11:31:20 -07004095
4096 // make sure we only have one patch per source.
4097 disconnectAudioSource(sourceDesc);
4098
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004099 audio_attributes_t attributes = sourceDesc->attributes();
François Gaffie11d30102018-11-02 16:09:09 +01004100 sp<DeviceDescriptor> srcDevice = sourceDesc->srcDevice();
Eric Laurentd60560a2015-04-10 11:31:20 -07004101
François Gaffiec005e562018-11-06 15:04:49 +01004102 DeviceVector sinkDevices =
4103 mEngine->getOutputDevicesForAttributes(attributes, nullptr, true);
4104 ALOG_ASSERT(!sinkDevices.isEmpty(), "connectAudioSource(): no device found for attributes");
François Gaffie11d30102018-11-02 16:09:09 +01004105 sp<DeviceDescriptor> sinkDevice = sinkDevices.itemAt(0);
4106 ALOG_ASSERT(mAvailableOutputDevices.contains(sinkDevice), "%s: Device %s not available",
4107 __FUNCTION__, sinkDevice->toString().c_str());
Eric Laurentd60560a2015-04-10 11:31:20 -07004108
François Gaffieafd4cea2019-11-18 15:50:22 +01004109 PatchBuilder patchBuilder;
4110 patchBuilder.addSink(sinkDevice).addSource(srcDevice);
4111 audio_patch_handle_t handle = AUDIO_PATCH_HANDLE_NONE;
4112 status_t status =
4113 createAudioPatchInternal(patchBuilder.patch(), &handle, mUidCached, 0, sourceDesc);
4114 if (status != NO_ERROR || mAudioPatches.indexOfKey(handle) < 0) {
4115 ALOGW("%s patch panel could not connect device patch, error %d", __func__, status);
4116 return INVALID_OPERATION;
4117 }
4118 sourceDesc->setPatchHandle(handle);
4119 // SW Bridge? (@todo: HW bridge, keep track of HwOutput for device selection "reconsideration")
4120 sp<SwAudioOutputDescriptor> swOutput = sourceDesc->swOutput().promote();
4121 if (swOutput != 0) {
4122 status = swOutput->start();
Eric Laurent733ce942017-12-07 12:18:25 -08004123 if (status != NO_ERROR) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004124 goto FailureSourceAdded;
Eric Laurent733ce942017-12-07 12:18:25 -08004125 }
François Gaffieafd4cea2019-11-18 15:50:22 +01004126 if (swOutput->getClient(sourceDesc->portId()) != nullptr) {
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07004127 ALOGW("%s source portId has already been attached to outputDesc", __func__);
François Gaffieafd4cea2019-11-18 15:50:22 +01004128 goto FailureReleasePatch;
Hongwei Wangbb93dfb2018-10-23 13:54:22 -07004129 }
François Gaffieafd4cea2019-11-18 15:50:22 +01004130 swOutput->addClient(sourceDesc);
Eric Laurentd60560a2015-04-10 11:31:20 -07004131 uint32_t delayMs = 0;
François Gaffieafd4cea2019-11-18 15:50:22 +01004132 status = startSource(swOutput, sourceDesc, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07004133 if (status != NO_ERROR) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004134 ALOGW("%s failed to start source, error %d", __FUNCTION__, status);
4135 goto FailureSourceActive;
Eric Laurentd60560a2015-04-10 11:31:20 -07004136 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004137 if (delayMs != 0) {
4138 usleep(delayMs * 1000);
4139 }
François Gaffieafd4cea2019-11-18 15:50:22 +01004140 } else {
4141 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->hwOutput().promote();
4142 if (hwOutputDesc != 0) {
4143 // create Hwoutput and add to mHwOutputs
4144 } else {
4145 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
4146 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004147 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004148 return NO_ERROR;
François Gaffieafd4cea2019-11-18 15:50:22 +01004149
4150FailureSourceActive:
4151 swOutput->stop();
4152 releaseOutput(sourceDesc->portId());
4153FailureSourceAdded:
4154 sourceDesc->setSwOutput(nullptr);
4155FailureReleasePatch:
4156 releaseAudioPatchInternal(handle);
4157 return INVALID_OPERATION;
Eric Laurent554a2772015-04-10 11:29:24 -07004158}
4159
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004160status_t AudioPolicyManager::stopAudioSource(audio_port_handle_t portId)
Eric Laurent554a2772015-04-10 11:29:24 -07004161{
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004162 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueFor(portId);
4163 ALOGV("%s port ID %d", __FUNCTION__, portId);
Eric Laurentd60560a2015-04-10 11:31:20 -07004164 if (sourceDesc == 0) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004165 ALOGW("%s unknown source for port ID %d", __FUNCTION__, portId);
Eric Laurentd60560a2015-04-10 11:31:20 -07004166 return BAD_VALUE;
4167 }
4168 status_t status = disconnectAudioSource(sourceDesc);
4169
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004170 mAudioSources.removeItem(portId);
Eric Laurentd60560a2015-04-10 11:31:20 -07004171 return status;
4172}
4173
Andy Hung2ddee192015-12-18 17:34:44 -08004174status_t AudioPolicyManager::setMasterMono(bool mono)
4175{
4176 if (mMasterMono == mono) {
4177 return NO_ERROR;
4178 }
4179 mMasterMono = mono;
4180 // if enabling mono we close all offloaded devices, which will invalidate the
4181 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
4182 // for recreating the new AudioTrack as non-offloaded PCM.
4183 //
4184 // If disabling mono, we leave all tracks as is: we don't know which clients
4185 // and tracks are able to be recreated as offloaded. The next "song" should
4186 // play back offloaded.
4187 if (mMasterMono) {
4188 Vector<audio_io_handle_t> offloaded;
4189 for (size_t i = 0; i < mOutputs.size(); ++i) {
4190 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
4191 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
4192 offloaded.push(desc->mIoHandle);
4193 }
4194 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004195 for (const auto& handle : offloaded) {
4196 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08004197 }
4198 }
4199 // update master mono for all remaining outputs
4200 for (size_t i = 0; i < mOutputs.size(); ++i) {
4201 updateMono(mOutputs.keyAt(i));
4202 }
4203 return NO_ERROR;
4204}
4205
4206status_t AudioPolicyManager::getMasterMono(bool *mono)
4207{
4208 *mono = mMasterMono;
4209 return NO_ERROR;
4210}
4211
Eric Laurentac9cef52017-06-09 15:46:26 -07004212float AudioPolicyManager::getStreamVolumeDB(
4213 audio_stream_type_t stream, int index, audio_devices_t device)
4214{
jiabin9a3361e2019-10-01 09:38:30 -07004215 return computeVolume(getVolumeCurves(stream), toVolumeSource(stream), index, {device});
Eric Laurentac9cef52017-06-09 15:46:26 -07004216}
4217
jiabin81772902018-04-02 17:52:27 -07004218status_t AudioPolicyManager::getSurroundFormats(unsigned int *numSurroundFormats,
4219 audio_format_t *surroundFormats,
4220 bool *surroundFormatsEnabled,
4221 bool reported)
4222{
4223 if (numSurroundFormats == NULL || (*numSurroundFormats != 0 &&
4224 (surroundFormats == NULL || surroundFormatsEnabled == NULL))) {
4225 return BAD_VALUE;
4226 }
Mikhail Naganov100f0122018-11-29 11:22:16 -08004227 ALOGV("%s() numSurroundFormats %d surroundFormats %p surroundFormatsEnabled %p reported %d",
4228 __func__, *numSurroundFormats, surroundFormats, surroundFormatsEnabled, reported);
jiabin81772902018-04-02 17:52:27 -07004229
4230 size_t formatsWritten = 0;
4231 size_t formatsMax = *numSurroundFormats;
Mikhail Naganov100f0122018-11-29 11:22:16 -08004232 std::unordered_set<audio_format_t> formats; // Uses primary surround formats only
jiabin81772902018-04-02 17:52:27 -07004233 if (reported) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08004234 // Return formats from all device profiles that have already been resolved by
Mikhail Naganov2563f232018-09-27 14:48:01 -07004235 // checkOutputsForDevice().
Mikhail Naganov100f0122018-11-29 11:22:16 -08004236 for (size_t i = 0; i < mAvailableOutputDevices.size(); i++) {
4237 sp<DeviceDescriptor> device = mAvailableOutputDevices[i];
4238 FormatVector supportedFormats =
4239 device->getAudioPort()->getAudioProfiles().getSupportedFormats();
4240 for (size_t j = 0; j < supportedFormats.size(); j++) {
4241 if (mConfig.getSurroundFormats().count(supportedFormats[j]) != 0) {
4242 formats.insert(supportedFormats[j]);
4243 } else {
4244 for (const auto& pair : mConfig.getSurroundFormats()) {
4245 if (pair.second.count(supportedFormats[j]) != 0) {
4246 formats.insert(pair.first);
4247 break;
4248 }
4249 }
4250 }
4251 }
jiabin81772902018-04-02 17:52:27 -07004252 }
4253 } else {
Mikhail Naganov778bc1f2018-09-14 16:28:52 -07004254 for (const auto& pair : mConfig.getSurroundFormats()) {
4255 formats.insert(pair.first);
jiabin81772902018-04-02 17:52:27 -07004256 }
4257 }
Mikhail Naganov100f0122018-11-29 11:22:16 -08004258 *numSurroundFormats = formats.size();
4259 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
4260 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Mikhail Naganov2563f232018-09-27 14:48:01 -07004261 for (const auto& format: formats) {
jiabin81772902018-04-02 17:52:27 -07004262 if (formatsWritten < formatsMax) {
Mikhail Naganov2563f232018-09-27 14:48:01 -07004263 surroundFormats[formatsWritten] = format;
Mikhail Naganov100f0122018-11-29 11:22:16 -08004264 bool formatEnabled = true;
4265 switch (forceUse) {
4266 case AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL:
4267 formatEnabled = mManualSurroundFormats.count(format) != 0;
4268 break;
4269 case AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER:
4270 formatEnabled = false;
4271 break;
4272 default: // AUTO or ALWAYS => true
4273 break;
jiabin81772902018-04-02 17:52:27 -07004274 }
4275 surroundFormatsEnabled[formatsWritten++] = formatEnabled;
4276 }
jiabin81772902018-04-02 17:52:27 -07004277 }
4278 return NO_ERROR;
4279}
4280
4281status_t AudioPolicyManager::setSurroundFormatEnabled(audio_format_t audioFormat, bool enabled)
4282{
Mikhail Naganov5dddbfd2018-09-11 14:15:05 -07004283 ALOGV("%s() format 0x%X enabled %d", __func__, audioFormat, enabled);
Mikhail Naganov778bc1f2018-09-14 16:28:52 -07004284 const auto& formatIter = mConfig.getSurroundFormats().find(audioFormat);
4285 if (formatIter == mConfig.getSurroundFormats().end()) {
Mikhail Naganov5dddbfd2018-09-11 14:15:05 -07004286 ALOGW("%s() format 0x%X is not a known surround format", __func__, audioFormat);
jiabin81772902018-04-02 17:52:27 -07004287 return BAD_VALUE;
4288 }
4289
Mikhail Naganov100f0122018-11-29 11:22:16 -08004290 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND) !=
4291 AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
Mikhail Naganov5dddbfd2018-09-11 14:15:05 -07004292 ALOGW("%s() not in manual mode for surround sound format selection", __func__);
jiabin81772902018-04-02 17:52:27 -07004293 return INVALID_OPERATION;
4294 }
4295
Mikhail Naganov100f0122018-11-29 11:22:16 -08004296 if ((mManualSurroundFormats.count(audioFormat) != 0) == enabled) {
jiabin81772902018-04-02 17:52:27 -07004297 return NO_ERROR;
4298 }
4299
Mikhail Naganov100f0122018-11-29 11:22:16 -08004300 std::unordered_set<audio_format_t> surroundFormatsBackup(mManualSurroundFormats);
jiabin81772902018-04-02 17:52:27 -07004301 if (enabled) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08004302 mManualSurroundFormats.insert(audioFormat);
Mikhail Naganov778bc1f2018-09-14 16:28:52 -07004303 for (const auto& subFormat : formatIter->second) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08004304 mManualSurroundFormats.insert(subFormat);
jiabin81772902018-04-02 17:52:27 -07004305 }
4306 } else {
Mikhail Naganov100f0122018-11-29 11:22:16 -08004307 mManualSurroundFormats.erase(audioFormat);
Mikhail Naganov778bc1f2018-09-14 16:28:52 -07004308 for (const auto& subFormat : formatIter->second) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08004309 mManualSurroundFormats.erase(subFormat);
jiabin81772902018-04-02 17:52:27 -07004310 }
4311 }
4312
4313 sp<SwAudioOutputDescriptor> outputDesc;
4314 bool profileUpdated = false;
jiabin9a3361e2019-10-01 09:38:30 -07004315 DeviceVector hdmiOutputDevices = mAvailableOutputDevices.getDevicesFromType(
4316 AUDIO_DEVICE_OUT_HDMI);
jiabin81772902018-04-02 17:52:27 -07004317 for (size_t i = 0; i < hdmiOutputDevices.size(); i++) {
4318 // Simulate reconnection to update enabled surround sound formats.
jiabince9f20e2019-09-12 16:29:15 -07004319 String8 address = String8(hdmiOutputDevices[i]->address().c_str());
jiabin5740f082019-08-19 15:08:30 -07004320 std::string name = hdmiOutputDevices[i]->getName();
jiabin81772902018-04-02 17:52:27 -07004321 status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI,
4322 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
4323 address.c_str(),
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08004324 name.c_str(),
4325 AUDIO_FORMAT_DEFAULT);
jiabin81772902018-04-02 17:52:27 -07004326 if (status != NO_ERROR) {
4327 continue;
4328 }
4329 status = setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_HDMI,
4330 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
4331 address.c_str(),
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08004332 name.c_str(),
4333 AUDIO_FORMAT_DEFAULT);
jiabin81772902018-04-02 17:52:27 -07004334 profileUpdated |= (status == NO_ERROR);
4335 }
Mikhail Naganov100f0122018-11-29 11:22:16 -08004336 // FIXME: Why doing this for input HDMI devices if we don't augment their reported formats?
jiabin9a3361e2019-10-01 09:38:30 -07004337 DeviceVector hdmiInputDevices = mAvailableInputDevices.getDevicesFromType(
jiabin81772902018-04-02 17:52:27 -07004338 AUDIO_DEVICE_IN_HDMI);
4339 for (size_t i = 0; i < hdmiInputDevices.size(); i++) {
4340 // Simulate reconnection to update enabled surround sound formats.
jiabince9f20e2019-09-12 16:29:15 -07004341 String8 address = String8(hdmiInputDevices[i]->address().c_str());
jiabin5740f082019-08-19 15:08:30 -07004342 std::string name = hdmiInputDevices[i]->getName();
jiabin81772902018-04-02 17:52:27 -07004343 status_t status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI,
4344 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
4345 address.c_str(),
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08004346 name.c_str(),
4347 AUDIO_FORMAT_DEFAULT);
jiabin81772902018-04-02 17:52:27 -07004348 if (status != NO_ERROR) {
4349 continue;
4350 }
4351 status = setDeviceConnectionStateInt(AUDIO_DEVICE_IN_HDMI,
4352 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
4353 address.c_str(),
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08004354 name.c_str(),
4355 AUDIO_FORMAT_DEFAULT);
jiabin81772902018-04-02 17:52:27 -07004356 profileUpdated |= (status == NO_ERROR);
4357 }
4358
jiabin81772902018-04-02 17:52:27 -07004359 if (!profileUpdated) {
Mikhail Naganov5dddbfd2018-09-11 14:15:05 -07004360 ALOGW("%s() no audio profiles updated, undoing surround formats change", __func__);
Mikhail Naganov100f0122018-11-29 11:22:16 -08004361 mManualSurroundFormats = std::move(surroundFormatsBackup);
jiabin81772902018-04-02 17:52:27 -07004362 }
4363
4364 return profileUpdated ? NO_ERROR : INVALID_OPERATION;
4365}
4366
Eric Laurent5ada82e2019-08-29 17:53:54 -07004367void AudioPolicyManager::setAppState(audio_port_handle_t portId, app_state_t state)
Svet Ganovf4ddfef2018-01-16 07:37:58 -08004368{
Eric Laurent5ada82e2019-08-29 17:53:54 -07004369 ALOGV("%s(portId:%d, state:%d)", __func__, portId, state);
Eric Laurenta9f86652018-11-28 17:23:11 -08004370 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent5ada82e2019-08-29 17:53:54 -07004371 mInputs.valueAt(i)->setAppState(portId, state);
Svet Ganovf4ddfef2018-01-16 07:37:58 -08004372 }
4373}
4374
jiabin6012f912018-11-02 17:06:30 -07004375bool AudioPolicyManager::isHapticPlaybackSupported()
4376{
4377 for (const auto& hwModule : mHwModules) {
4378 const OutputProfileCollection &outputProfiles = hwModule->getOutputProfiles();
4379 for (const auto &outProfile : outputProfiles) {
4380 struct audio_port audioPort;
4381 outProfile->toAudioPort(&audioPort);
4382 for (size_t i = 0; i < audioPort.num_channel_masks; i++) {
4383 if (audioPort.channel_masks[i] & AUDIO_CHANNEL_HAPTIC_ALL) {
4384 return true;
4385 }
4386 }
4387 }
4388 }
4389 return false;
4390}
4391
Eric Laurent8340e672019-11-06 11:01:08 -08004392bool AudioPolicyManager::isCallScreenModeSupported()
4393{
4394 return getConfig().isCallScreenModeSupported();
4395}
4396
4397
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004398status_t AudioPolicyManager::disconnectAudioSource(const sp<SourceClientDescriptor>& sourceDesc)
Eric Laurentd60560a2015-04-10 11:31:20 -07004399{
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004400 ALOGV("%s port Id %d", __FUNCTION__, sourceDesc->portId());
François Gaffieafd4cea2019-11-18 15:50:22 +01004401 sp<SwAudioOutputDescriptor> swOutput = sourceDesc->swOutput().promote();
4402 if (swOutput != 0) {
4403 status_t status = stopSource(swOutput, sourceDesc);
Eric Laurent733ce942017-12-07 12:18:25 -08004404 if (status == NO_ERROR) {
François Gaffieafd4cea2019-11-18 15:50:22 +01004405 swOutput->stop();
Eric Laurent733ce942017-12-07 12:18:25 -08004406 }
François Gaffieafd4cea2019-11-18 15:50:22 +01004407 releaseOutput(sourceDesc->portId());
Eric Laurentd60560a2015-04-10 11:31:20 -07004408 } else {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004409 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->hwOutput().promote();
Eric Laurentd60560a2015-04-10 11:31:20 -07004410 if (hwOutputDesc != 0) {
Eric Laurentd60560a2015-04-10 11:31:20 -07004411 // close Hwoutput and remove from mHwOutputs
4412 } else {
4413 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
4414 }
4415 }
François Gaffieafd4cea2019-11-18 15:50:22 +01004416 return releaseAudioPatchInternal(sourceDesc->getPatchHandle());
Eric Laurentd60560a2015-04-10 11:31:20 -07004417}
4418
François Gaffiec005e562018-11-06 15:04:49 +01004419sp<SourceClientDescriptor> AudioPolicyManager::getSourceForAttributesOnOutput(
4420 audio_io_handle_t output, const audio_attributes_t &attr)
Eric Laurentd60560a2015-04-10 11:31:20 -07004421{
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004422 sp<SourceClientDescriptor> source;
Eric Laurentd60560a2015-04-10 11:31:20 -07004423 for (size_t i = 0; i < mAudioSources.size(); i++) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004424 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueAt(i);
Eric Laurent3e6c7e12018-07-27 17:09:23 -07004425 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->swOutput().promote();
François Gaffiec005e562018-11-06 15:04:49 +01004426 if (followsSameRouting(attr, sourceDesc->attributes()) &&
4427 outputDesc != 0 && outputDesc->mIoHandle == output) {
Eric Laurentd60560a2015-04-10 11:31:20 -07004428 source = sourceDesc;
4429 break;
4430 }
4431 }
4432 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07004433}
4434
Eric Laurente552edb2014-03-10 17:42:56 -07004435// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07004436// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07004437// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07004438uint32_t AudioPolicyManager::nextAudioPortGeneration()
4439{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08004440 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07004441}
4442
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09004443static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
4444 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
Petri Gyntherf497f292018-04-17 18:46:10 -07004445 std::vector<const char*> fileNames;
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09004446 status_t ret;
4447
Cheney Ni00ce33d2018-11-01 06:30:37 +08004448 if (property_get_bool("ro.bluetooth.a2dp_offload.supported", false)) {
Cheney Nie5985452019-02-24 01:39:15 +08004449 if (property_get_bool("persist.bluetooth.bluetooth_audio_hal.disabled", false) &&
4450 property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) {
4451 // Both BluetoothAudio@2.0 and BluetoothA2dp@1.0 (Offlaod) are disabled, and uses
4452 // the legacy hardware module for A2DP and hearing aid.
4453 fileNames.push_back(AUDIO_POLICY_BLUETOOTH_LEGACY_HAL_XML_CONFIG_FILE_NAME);
4454 } else if (property_get_bool("persist.bluetooth.a2dp_offload.disabled", false)) {
4455 // A2DP offload supported but disabled: try to use special XML file
Cheney Ni6851adb2018-11-01 06:30:37 +08004456 fileNames.push_back(AUDIO_POLICY_A2DP_OFFLOAD_DISABLED_XML_CONFIG_FILE_NAME);
4457 }
Cheney Nie5985452019-02-24 01:39:15 +08004458 } else if (property_get_bool("persist.bluetooth.bluetooth_audio_hal.disabled", false)) {
4459 fileNames.push_back(AUDIO_POLICY_BLUETOOTH_LEGACY_HAL_XML_CONFIG_FILE_NAME);
Petri Gyntherf497f292018-04-17 18:46:10 -07004460 }
4461 fileNames.push_back(AUDIO_POLICY_XML_CONFIG_FILE_NAME);
4462
4463 for (const char* fileName : fileNames) {
Mikhail Naganov27cf37c2020-04-14 14:47:01 -07004464 for (const auto& path : audio_get_configuration_paths()) {
Petri Gyntherf497f292018-04-17 18:46:10 -07004465 snprintf(audioPolicyXmlConfigFile, sizeof(audioPolicyXmlConfigFile),
Mikhail Naganov27cf37c2020-04-14 14:47:01 -07004466 "%s/%s", path.c_str(), fileName);
Mikhail Naganova289aea2018-09-17 15:26:23 -07004467 ret = deserializeAudioPolicyFile(audioPolicyXmlConfigFile, &config);
Petri Gyntherf497f292018-04-17 18:46:10 -07004468 if (ret == NO_ERROR) {
Mikhail Naganov2e5167e12018-04-19 13:41:22 -07004469 config.setSource(audioPolicyXmlConfigFile);
Petri Gyntherf497f292018-04-17 18:46:10 -07004470 return ret;
4471 }
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09004472 }
4473 }
4474 return ret;
4475}
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09004476
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004477AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
4478 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07004479 :
Andy Hung4ef19fa2018-05-15 19:35:29 -07004480 mUidCached(AID_AUDIOSERVER), // no need to call getuid(), there's only one of us running.
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004481 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07004482 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07004483 mA2dpSuspended(false),
Mikhail Naganovc0d04982020-03-02 21:02:28 +00004484 mConfig(mHwModulesAll, mOutputDevicesAll, mInputDevicesAll, mDefaultOutputDevice),
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004485 mAudioPortGeneration(1),
4486 mBeaconMuteRefCount(0),
4487 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07004488 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08004489 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07004490 mMasterMono(false),
Eric Laurent4eb58f12018-12-07 16:41:02 -08004491 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE)
Eric Laurente552edb2014-03-10 17:42:56 -07004492{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004493}
François Gaffied1ab2bd2015-12-02 18:20:06 +01004494
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004495AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
4496 : AudioPolicyManager(clientInterface, false /*forTesting*/)
4497{
4498 loadConfig();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004499}
François Gaffied1ab2bd2015-12-02 18:20:06 +01004500
Kevin Rocarddfa1e8a2018-10-26 16:42:07 -07004501void AudioPolicyManager::loadConfig() {
4502 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01004503 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004504 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01004505 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004506}
4507
4508status_t AudioPolicyManager::initialize() {
Mikhail Naganov47835552019-05-14 10:32:51 -07004509 {
4510 auto engLib = EngineLibrary::load(
4511 "libaudiopolicyengine" + getConfig().getEngineLibraryNameSuffix() + ".so");
4512 if (!engLib) {
4513 ALOGE("%s: Failed to load the engine library", __FUNCTION__);
4514 return NO_INIT;
4515 }
4516 mEngine = engLib->createEngine();
4517 if (mEngine == nullptr) {
4518 ALOGE("%s: Failed to instantiate the APM engine", __FUNCTION__);
4519 return NO_INIT;
4520 }
François Gaffie2110e042015-03-24 08:41:51 +01004521 }
4522 mEngine->setObserver(this);
4523 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004524 if (status != NO_ERROR) {
4525 LOG_FATAL("Policy engine not initialized(err=%d)", status);
4526 return status;
4527 }
François Gaffie2110e042015-03-24 08:41:51 +01004528
Mikhail Naganovc0d04982020-03-02 21:02:28 +00004529 // after parsing the config, mOutputDevicesAll and mInputDevicesAll contain all known devices;
Eric Laurente552edb2014-03-10 17:42:56 -07004530 // open all output streams needed to access attached devices
Mikhail Naganovd0e2c742020-03-25 15:59:59 -07004531 onNewAudioModulesAvailableInt(nullptr /*newDevices*/);
François Gaffie11d30102018-11-02 16:09:09 +01004532
Eric Laurent3a4311c2014-03-17 12:00:47 -07004533 // make sure default device is reachable
François Gaffie11d30102018-11-02 16:09:09 +01004534 if (mDefaultOutputDevice == 0 || !mAvailableOutputDevices.contains(mDefaultOutputDevice)) {
4535 ALOGE_IF(mDefaultOutputDevice != 0, "Default device %s is unreachable",
4536 mDefaultOutputDevice->toString().c_str());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004537 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07004538 }
jiabin9ff780e2018-03-19 18:19:52 -07004539 // If microphones address is empty, set it according to device type
Eric Laurent736a1022019-03-27 18:28:46 -07004540 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
jiabince9f20e2019-09-12 16:29:15 -07004541 if (mAvailableInputDevices[i]->address().empty()) {
jiabin9ff780e2018-03-19 18:19:52 -07004542 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
jiabince9f20e2019-09-12 16:29:15 -07004543 mAvailableInputDevices[i]->setAddress(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
jiabin9ff780e2018-03-19 18:19:52 -07004544 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
jiabince9f20e2019-09-12 16:29:15 -07004545 mAvailableInputDevices[i]->setAddress(AUDIO_BACK_MICROPHONE_ADDRESS);
jiabin9ff780e2018-03-19 18:19:52 -07004546 }
4547 }
4548 }
Eric Laurente552edb2014-03-10 17:42:56 -07004549
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004550 if (mPrimaryOutput == 0) {
4551 ALOGE("Failed to open primary output");
4552 status = NO_INIT;
4553 }
Eric Laurente552edb2014-03-10 17:42:56 -07004554
Tomoharu Kasahara71c90912018-10-31 09:10:12 +09004555 // Silence ALOGV statements
4556 property_set("log.tag." LOG_TAG, "D");
4557
Eric Laurente552edb2014-03-10 17:42:56 -07004558 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08004559 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07004560}
4561
Eric Laurente0720872014-03-11 09:30:41 -07004562AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07004563{
Eric Laurente552edb2014-03-10 17:42:56 -07004564 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08004565 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004566 }
4567 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08004568 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004569 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07004570 mAvailableOutputDevices.clear();
4571 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004572 mOutputs.clear();
4573 mInputs.clear();
4574 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08004575 mHwModulesAll.clear();
Mikhail Naganov100f0122018-11-29 11:22:16 -08004576 mManualSurroundFormats.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07004577}
4578
Eric Laurente0720872014-03-11 09:30:41 -07004579status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07004580{
Eric Laurent87ffa392015-05-22 10:32:38 -07004581 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07004582}
4583
Eric Laurente552edb2014-03-10 17:42:56 -07004584// ---
4585
Mikhail Naganovc0d04982020-03-02 21:02:28 +00004586void AudioPolicyManager::onNewAudioModulesAvailable()
4587{
Mikhail Naganovd0e2c742020-03-25 15:59:59 -07004588 DeviceVector newDevices;
4589 onNewAudioModulesAvailableInt(&newDevices);
4590 if (!newDevices.empty()) {
4591 nextAudioPortGeneration();
4592 mpClientInterface->onAudioPortListUpdate();
4593 }
4594}
4595
4596void AudioPolicyManager::onNewAudioModulesAvailableInt(DeviceVector *newDevices)
4597{
Mikhail Naganovc0d04982020-03-02 21:02:28 +00004598 for (const auto& hwModule : mHwModulesAll) {
4599 if (std::find(mHwModules.begin(), mHwModules.end(), hwModule) != mHwModules.end()) {
4600 continue;
4601 }
4602 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
4603 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
4604 ALOGW("could not open HW module %s", hwModule->getName());
4605 continue;
4606 }
4607 mHwModules.push_back(hwModule);
4608 // open all output streams needed to access attached devices
4609 // except for direct output streams that are only opened when they are actually
4610 // required by an app.
4611 // This also validates mAvailableOutputDevices list
4612 for (const auto& outProfile : hwModule->getOutputProfiles()) {
4613 if (!outProfile->canOpenNewIo()) {
4614 ALOGE("Invalid Output profile max open count %u for profile %s",
4615 outProfile->maxOpenCount, outProfile->getTagName().c_str());
4616 continue;
4617 }
4618 if (!outProfile->hasSupportedDevices()) {
4619 ALOGW("Output profile contains no device on module %s", hwModule->getName());
4620 continue;
4621 }
4622 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
4623 mTtsOutputAvailable = true;
4624 }
4625
Mikhail Naganovc0d04982020-03-02 21:02:28 +00004626 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
4627 DeviceVector availProfileDevices = supportedDevices.filter(mOutputDevicesAll);
4628 sp<DeviceDescriptor> supportedDevice = 0;
4629 if (supportedDevices.contains(mDefaultOutputDevice)) {
4630 supportedDevice = mDefaultOutputDevice;
4631 } else {
4632 // choose first device present in profile's SupportedDevices also part of
4633 // mAvailableOutputDevices.
4634 if (availProfileDevices.isEmpty()) {
4635 continue;
4636 }
4637 supportedDevice = availProfileDevices.itemAt(0);
4638 }
4639 if (!mOutputDevicesAll.contains(supportedDevice)) {
4640 continue;
4641 }
4642 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
4643 mpClientInterface);
4644 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
4645 status_t status = outputDesc->open(nullptr, DeviceVector(supportedDevice),
4646 AUDIO_STREAM_DEFAULT,
4647 AUDIO_OUTPUT_FLAG_NONE, &output);
4648 if (status != NO_ERROR) {
4649 ALOGW("Cannot open output stream for devices %s on hw module %s",
4650 supportedDevice->toString().c_str(), hwModule->getName());
4651 continue;
4652 }
4653 for (const auto &device : availProfileDevices) {
4654 // give a valid ID to an attached device once confirmed it is reachable
4655 if (!device->isAttached()) {
4656 device->attach(hwModule);
4657 mAvailableOutputDevices.add(device);
jiabin1c4794b2020-05-05 10:08:05 -07004658 device->setEncapsulationInfoFromHal(mpClientInterface);
Mikhail Naganovd0e2c742020-03-25 15:59:59 -07004659 if (newDevices) newDevices->add(device);
Mikhail Naganovc0d04982020-03-02 21:02:28 +00004660 setEngineDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
4661 }
4662 }
4663 if (mPrimaryOutput == 0 &&
4664 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
4665 mPrimaryOutput = outputDesc;
4666 }
Eric Laurentc529cf62020-04-17 18:19:10 -07004667 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
4668 outputDesc->close();
4669 } else {
4670 addOutput(output, outputDesc);
4671 setOutputDevices(outputDesc,
4672 DeviceVector(supportedDevice),
4673 true,
4674 0,
4675 NULL);
4676 }
Mikhail Naganovc0d04982020-03-02 21:02:28 +00004677 }
4678 // open input streams needed to access attached devices to validate
4679 // mAvailableInputDevices list
4680 for (const auto& inProfile : hwModule->getInputProfiles()) {
4681 if (!inProfile->canOpenNewIo()) {
4682 ALOGE("Invalid Input profile max open count %u for profile %s",
4683 inProfile->maxOpenCount, inProfile->getTagName().c_str());
4684 continue;
4685 }
4686 if (!inProfile->hasSupportedDevices()) {
4687 ALOGW("Input profile contains no device on module %s", hwModule->getName());
4688 continue;
4689 }
4690 // chose first device present in profile's SupportedDevices also part of
4691 // available input devices
4692 const DeviceVector &supportedDevices = inProfile->getSupportedDevices();
4693 DeviceVector availProfileDevices = supportedDevices.filter(mInputDevicesAll);
4694 if (availProfileDevices.isEmpty()) {
4695 ALOGE("%s: Input device list is empty!", __FUNCTION__);
4696 continue;
4697 }
4698 sp<AudioInputDescriptor> inputDesc =
4699 new AudioInputDescriptor(inProfile, mpClientInterface);
4700
4701 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
4702 status_t status = inputDesc->open(nullptr,
4703 availProfileDevices.itemAt(0),
4704 AUDIO_SOURCE_MIC,
4705 AUDIO_INPUT_FLAG_NONE,
4706 &input);
4707 if (status != NO_ERROR) {
4708 ALOGW("Cannot open input stream for device %s on hw module %s",
4709 availProfileDevices.toString().c_str(),
4710 hwModule->getName());
4711 continue;
4712 }
4713 for (const auto &device : availProfileDevices) {
4714 // give a valid ID to an attached device once confirmed it is reachable
4715 if (!device->isAttached()) {
4716 device->attach(hwModule);
4717 device->importAudioPortAndPickAudioProfile(inProfile, true);
4718 mAvailableInputDevices.add(device);
Mikhail Naganovd0e2c742020-03-25 15:59:59 -07004719 if (newDevices) newDevices->add(device);
Mikhail Naganovc0d04982020-03-02 21:02:28 +00004720 setEngineDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
4721 }
4722 }
4723 inputDesc->close();
4724 }
4725 }
4726}
4727
Eric Laurent98e38192018-02-15 18:31:53 -08004728void AudioPolicyManager::addOutput(audio_io_handle_t output,
4729 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07004730{
Eric Laurent1c333e22014-05-20 10:48:17 -07004731 mOutputs.add(output, outputDesc);
jiabin9a3361e2019-10-01 09:38:30 -07004732 applyStreamVolumes(outputDesc, DeviceTypeSet(), 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08004733 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07004734 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07004735 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07004736}
4737
François Gaffie53615e22015-03-19 09:24:12 +01004738void AudioPolicyManager::removeOutput(audio_io_handle_t output)
4739{
4740 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07004741 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01004742}
4743
Eric Laurent98e38192018-02-15 18:31:53 -08004744void AudioPolicyManager::addInput(audio_io_handle_t input,
4745 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07004746{
Eric Laurent1c333e22014-05-20 10:48:17 -07004747 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07004748 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07004749}
Eric Laurente552edb2014-03-10 17:42:56 -07004750
François Gaffie11d30102018-11-02 16:09:09 +01004751status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& device,
François Gaffie53615e22015-03-19 09:24:12 +01004752 audio_policy_dev_state_t state,
François Gaffie11d30102018-11-02 16:09:09 +01004753 SortedVector<audio_io_handle_t>& outputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004754{
François Gaffie11d30102018-11-02 16:09:09 +01004755 audio_devices_t deviceType = device->type();
jiabince9f20e2019-09-12 16:29:15 -07004756 const String8 &address = String8(device->address().c_str());
Eric Laurentc75307b2015-03-17 15:29:32 -07004757 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004758
François Gaffie11d30102018-11-02 16:09:09 +01004759 if (audio_device_is_digital(deviceType)) {
Eric Laurentcc750d32015-06-25 11:48:20 -07004760 // erase all current sample rates, formats and channel masks
François Gaffie11d30102018-11-02 16:09:09 +01004761 device->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004762 }
Eric Laurente552edb2014-03-10 17:42:56 -07004763
Eric Laurent3b73df72014-03-11 09:06:29 -07004764 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004765 // first list already open outputs that can be routed to this device
4766 for (size_t i = 0; i < mOutputs.size(); i++) {
4767 desc = mOutputs.valueAt(i);
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08004768 if (!desc->isDuplicated() && desc->supportsDevice(device)
jiabin9a3361e2019-10-01 09:38:30 -07004769 && desc->devicesSupportEncodedFormats({deviceType})) {
François Gaffie11d30102018-11-02 16:09:09 +01004770 ALOGV("checkOutputsForDevice(): adding opened output %d on device %s",
4771 mOutputs.keyAt(i), device->toString().c_str());
4772 outputs.add(mOutputs.keyAt(i));
Eric Laurente552edb2014-03-10 17:42:56 -07004773 }
4774 }
4775 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004776 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004777 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004778 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4779 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffie11d30102018-11-02 16:09:09 +01004780 if (profile->supportsDevice(device)) {
4781 profiles.add(profile);
4782 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
4783 j, hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07004784 }
4785 }
4786 }
4787
Eric Laurent7b279bb2015-12-14 10:18:23 -08004788 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004789
Eric Laurente552edb2014-03-10 17:42:56 -07004790 if (profiles.isEmpty() && outputs.isEmpty()) {
François Gaffie11d30102018-11-02 16:09:09 +01004791 ALOGW("checkOutputsForDevice(): No output available for device %04x", deviceType);
Eric Laurente552edb2014-03-10 17:42:56 -07004792 return BAD_VALUE;
4793 }
4794
4795 // open outputs for matching profiles if needed. Direct outputs are also opened to
4796 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4797 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004798 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07004799
4800 // nothing to do if one output is already opened for this profile
4801 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004802 for (j = 0; j < outputs.size(); j++) {
4803 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07004804 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004805 // matching profile: save the sample rates, format and channel masks supported
4806 // by the profile in our device descriptor
François Gaffie11d30102018-11-02 16:09:09 +01004807 if (audio_device_is_digital(deviceType)) {
jiabin4ef93452019-09-10 14:29:54 -07004808 device->importAudioPortAndPickAudioProfile(profile);
Paul McLean9080a4c2015-06-18 08:24:02 -07004809 }
Eric Laurente552edb2014-03-10 17:42:56 -07004810 break;
4811 }
4812 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004813 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07004814 continue;
4815 }
4816
Eric Laurent3974e3b2017-12-07 17:58:43 -08004817 if (!profile->canOpenNewIo()) {
4818 ALOGW("Max Output number %u already opened for this profile %s",
4819 profile->maxOpenCount, profile->getTagName().c_str());
4820 continue;
4821 }
4822
Eric Laurent83efe1c2017-07-09 16:51:08 -07004823 ALOGV("opening output for device %08x with params %s profile %p name %s",
jiabin5740f082019-08-19 15:08:30 -07004824 deviceType, address.string(), profile.get(), profile->getName().c_str());
Eric Laurentc75307b2015-03-17 15:29:32 -07004825 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004826 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
François Gaffie11d30102018-11-02 16:09:09 +01004827 status_t status = desc->open(nullptr, DeviceVector(device),
Eric Laurentfe231122017-11-17 17:48:06 -08004828 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07004829
Eric Laurentfe231122017-11-17 17:48:06 -08004830 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004831 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07004832 if (!address.isEmpty()) {
François Gaffie11d30102018-11-02 16:09:09 +01004833 char *param = audio_device_address_to_parameter(deviceType, address);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004834 mpClientInterface->setParameters(output, String8(param));
4835 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07004836 }
François Gaffie11d30102018-11-02 16:09:09 +01004837 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004838 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004839 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004840 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004841 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01004842 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08004843 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08004844 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004845 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
4846 profile->pickAudioProfile(
4847 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004848 config.offload_info.sample_rate = config.sample_rate;
4849 config.offload_info.channel_mask = config.channel_mask;
4850 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08004851
François Gaffie11d30102018-11-02 16:09:09 +01004852 status_t status = desc->open(&config, DeviceVector(device),
4853 AUDIO_STREAM_DEFAULT,
Eric Laurentfe231122017-11-17 17:48:06 -08004854 AUDIO_OUTPUT_FLAG_NONE, &output);
4855 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004856 output = AUDIO_IO_HANDLE_NONE;
4857 }
Eric Laurentd4692962014-05-05 18:13:44 -07004858 }
4859
Eric Laurentcf2c0212014-07-25 16:20:43 -07004860 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004861 addOutput(output, desc);
Eric Laurent0e26e3f2020-04-29 14:24:16 -07004862 if (audio_is_remote_submix_device(deviceType) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01004863 sp<AudioPolicyMix> policyMix;
Jean-Michel Trivi67917272019-05-22 11:54:37 -07004864 if (mPolicyMixes.getAudioPolicyMix(deviceType, address, policyMix)
4865 == NO_ERROR) {
François Gaffieb141c522018-03-12 11:47:40 +01004866 policyMix->setOutput(desc);
Mikhail Naganovbfac5832019-03-05 16:55:28 -08004867 desc->mPolicyMix = policyMix;
François Gaffieb141c522018-03-12 11:47:40 +01004868 } else {
4869 ALOGW("checkOutputsForDevice() cannot find policy for address %s",
Eric Laurent275e8e92014-11-30 15:14:47 -08004870 address.string());
4871 }
François Gaffie036e1e92015-03-19 10:16:24 +01004872
Eric Laurent87ffa392015-05-22 10:32:38 -07004873 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
4874 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08004875 // no duplicated output for direct outputs and
4876 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07004877 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004878
Eric Laurentd4692962014-05-05 18:13:44 -07004879 //TODO: configure audio effect output stage here
4880
4881 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08004882 sp<SwAudioOutputDescriptor> dupOutputDesc =
4883 new SwAudioOutputDescriptor(NULL, mpClientInterface);
4884 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
4885 &duplicatedOutput);
4886 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004887 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07004888 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07004889 } else {
4890 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07004891 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08004892 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01004893 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07004894 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004895 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004896 }
Eric Laurente552edb2014-03-10 17:42:56 -07004897 }
4898 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004899 } else {
4900 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004901 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004902 if (output == AUDIO_IO_HANDLE_NONE) {
François Gaffie11d30102018-11-02 16:09:09 +01004903 ALOGW("checkOutputsForDevice() could not open output for device %x", deviceType);
Eric Laurente552edb2014-03-10 17:42:56 -07004904 profiles.removeAt(profile_index);
4905 profile_index--;
4906 } else {
4907 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07004908 // Load digital format info only for digital devices
François Gaffie11d30102018-11-02 16:09:09 +01004909 if (audio_device_is_digital(deviceType)) {
jiabin4ef93452019-09-10 14:29:54 -07004910 device->importAudioPortAndPickAudioProfile(profile);
Paul McLean9080a4c2015-06-18 08:24:02 -07004911 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004912
François Gaffie11d30102018-11-02 16:09:09 +01004913 if (device_distinguishes_on_address(deviceType)) {
4914 ALOGV("checkOutputsForDevice(): setOutputDevices %s",
4915 device->toString().c_str());
4916 setOutputDevices(desc, DeviceVector(device), true/*force*/, 0/*delay*/,
4917 NULL/*patch handle*/);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004918 }
Eric Laurente552edb2014-03-10 17:42:56 -07004919 ALOGV("checkOutputsForDevice(): adding output %d", output);
4920 }
4921 }
4922
4923 if (profiles.isEmpty()) {
François Gaffie11d30102018-11-02 16:09:09 +01004924 ALOGW("checkOutputsForDevice(): No output available for device %04x", deviceType);
Eric Laurente552edb2014-03-10 17:42:56 -07004925 return BAD_VALUE;
4926 }
Eric Laurentd4692962014-05-05 18:13:44 -07004927 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004928 // check if one opened output is not needed any more after disconnecting one device
4929 for (size_t i = 0; i < mOutputs.size(); i++) {
4930 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004931 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004932 // exact match on device
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08004933 if (device_distinguishes_on_address(deviceType) && desc->supportsDevice(device)
jiabin9a3361e2019-10-01 09:38:30 -07004934 && desc->devicesSupportEncodedFormats({deviceType})) {
François Gaffie11d30102018-11-02 16:09:09 +01004935 outputs.add(mOutputs.keyAt(i));
Francois Gaffie716e1432019-01-14 16:58:59 +01004936 } else if (!mAvailableOutputDevices.containsAtLeastOne(desc->supportedDevices())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004937 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4938 mOutputs.keyAt(i));
4939 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004940 }
Eric Laurente552edb2014-03-10 17:42:56 -07004941 }
4942 }
Eric Laurentd4692962014-05-05 18:13:44 -07004943 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004944 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004945 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4946 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffie11d30102018-11-02 16:09:09 +01004947 if (profile->supportsDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004948 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004949 "clearing direct output profile %zu on module %s",
4950 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004951 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004952 }
4953 }
4954 }
4955 }
4956 return NO_ERROR;
4957}
4958
François Gaffie11d30102018-11-02 16:09:09 +01004959status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& device,
Eric Laurent0dd51852019-04-19 18:18:58 -07004960 audio_policy_dev_state_t state)
Eric Laurentd4692962014-05-05 18:13:44 -07004961{
Eric Laurent1f2f2232014-06-02 12:01:23 -07004962 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004963
François Gaffie11d30102018-11-02 16:09:09 +01004964 if (audio_device_is_digital(device->type())) {
Eric Laurentcc750d32015-06-25 11:48:20 -07004965 // erase all current sample rates, formats and channel masks
François Gaffie11d30102018-11-02 16:09:09 +01004966 device->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004967 }
4968
Eric Laurentd4692962014-05-05 18:13:44 -07004969 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurent0dd51852019-04-19 18:18:58 -07004970 // look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004971 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004972 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004973 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004974 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004975 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004976 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004977
François Gaffie11d30102018-11-02 16:09:09 +01004978 if (profile->supportsDevice(device)) {
4979 profiles.add(profile);
4980 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4981 profile_index, hwModule->getName());
Eric Laurentd4692962014-05-05 18:13:44 -07004982 }
4983 }
4984 }
4985
Eric Laurent0dd51852019-04-19 18:18:58 -07004986 if (profiles.isEmpty()) {
4987 ALOGW("%s: No input profile available for device %s",
4988 __func__, device->toString().c_str());
Eric Laurentd4692962014-05-05 18:13:44 -07004989 return BAD_VALUE;
4990 }
4991
4992 // open inputs for matching profiles if needed. Direct inputs are also opened to
4993 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4994 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4995
Eric Laurent1c333e22014-05-20 10:48:17 -07004996 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004997
Eric Laurentd4692962014-05-05 18:13:44 -07004998 // nothing to do if one input is already opened for this profile
4999 size_t input_index;
5000 for (input_index = 0; input_index < mInputs.size(); input_index++) {
5001 desc = mInputs.valueAt(input_index);
5002 if (desc->mProfile == profile) {
François Gaffie11d30102018-11-02 16:09:09 +01005003 if (audio_device_is_digital(device->type())) {
jiabin4ef93452019-09-10 14:29:54 -07005004 device->importAudioPortAndPickAudioProfile(profile);
Paul McLean9080a4c2015-06-18 08:24:02 -07005005 }
Eric Laurentd4692962014-05-05 18:13:44 -07005006 break;
5007 }
5008 }
5009 if (input_index != mInputs.size()) {
5010 continue;
5011 }
5012
Eric Laurent3974e3b2017-12-07 17:58:43 -08005013 if (!profile->canOpenNewIo()) {
5014 ALOGW("Max Input number %u already opened for this profile %s",
5015 profile->maxOpenCount, profile->getTagName().c_str());
5016 continue;
5017 }
5018
Eric Laurentfe231122017-11-17 17:48:06 -08005019 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07005020 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08005021 status_t status = desc->open(nullptr,
5022 device,
Eric Laurentfe231122017-11-17 17:48:06 -08005023 AUDIO_SOURCE_MIC,
5024 AUDIO_INPUT_FLAG_NONE,
5025 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07005026
Eric Laurentcf2c0212014-07-25 16:20:43 -07005027 if (status == NO_ERROR) {
jiabince9f20e2019-09-12 16:29:15 -07005028 const String8& address = String8(device->address().c_str());
Eric Laurentd4692962014-05-05 18:13:44 -07005029 if (!address.isEmpty()) {
François Gaffie11d30102018-11-02 16:09:09 +01005030 char *param = audio_device_address_to_parameter(device->type(), address);
Eric Laurentcf2c0212014-07-25 16:20:43 -07005031 mpClientInterface->setParameters(input, String8(param));
5032 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07005033 }
François Gaffie11d30102018-11-02 16:09:09 +01005034 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01005035 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005036 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08005037 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07005038 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07005039 }
5040
Eric Laurent0dd51852019-04-19 18:18:58 -07005041 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07005042 addInput(input, desc);
5043 }
5044 } // endif input != 0
5045
Eric Laurentcf2c0212014-07-25 16:20:43 -07005046 if (input == AUDIO_IO_HANDLE_NONE) {
François Gaffie11d30102018-11-02 16:09:09 +01005047 ALOGW("%s could not open input for device %s", __func__,
5048 device->toString().c_str());
Eric Laurentd4692962014-05-05 18:13:44 -07005049 profiles.removeAt(profile_index);
5050 profile_index--;
5051 } else {
François Gaffie11d30102018-11-02 16:09:09 +01005052 if (audio_device_is_digital(device->type())) {
jiabin4ef93452019-09-10 14:29:54 -07005053 device->importAudioPortAndPickAudioProfile(profile);
Paul McLean9080a4c2015-06-18 08:24:02 -07005054 }
Eric Laurentd4692962014-05-05 18:13:44 -07005055 ALOGV("checkInputsForDevice(): adding input %d", input);
5056 }
5057 } // end scan profiles
5058
5059 if (profiles.isEmpty()) {
François Gaffie11d30102018-11-02 16:09:09 +01005060 ALOGW("%s: No input available for device %s", __func__, device->toString().c_str());
Eric Laurentd4692962014-05-05 18:13:44 -07005061 return BAD_VALUE;
5062 }
5063 } else {
5064 // Disconnect
Eric Laurentd4692962014-05-05 18:13:44 -07005065 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08005066 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07005067 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005068 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07005069 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005070 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Francois Gaffie716e1432019-01-14 16:58:59 +01005071 if (profile->supportsDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08005072 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
5073 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01005074 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07005075 }
5076 }
5077 }
5078 } // end disconnect
5079
5080 return NO_ERROR;
5081}
5082
5083
Eric Laurente0720872014-03-11 09:30:41 -07005084void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07005085{
5086 ALOGV("closeOutput(%d)", output);
5087
François Gaffie1c878552018-11-22 16:53:21 +01005088 sp<SwAudioOutputDescriptor> closingOutput = mOutputs.valueFor(output);
5089 if (closingOutput == NULL) {
Eric Laurente552edb2014-03-10 17:42:56 -07005090 ALOGW("closeOutput() unknown output %d", output);
5091 return;
5092 }
Mikhail Naganov32ebca32019-03-22 15:42:52 -07005093 const bool closingOutputWasActive = closingOutput->isActive();
François Gaffie1c878552018-11-22 16:53:21 +01005094 mPolicyMixes.closeOutput(closingOutput);
Eric Laurent275e8e92014-11-30 15:14:47 -08005095
Eric Laurente552edb2014-03-10 17:42:56 -07005096 // look for duplicated outputs connected to the output being removed.
5097 for (size_t i = 0; i < mOutputs.size(); i++) {
François Gaffie1c878552018-11-22 16:53:21 +01005098 sp<SwAudioOutputDescriptor> dupOutput = mOutputs.valueAt(i);
5099 if (dupOutput->isDuplicated() &&
5100 (dupOutput->mOutput1 == closingOutput || dupOutput->mOutput2 == closingOutput)) {
5101 sp<SwAudioOutputDescriptor> remainingOutput =
5102 dupOutput->mOutput1 == closingOutput ? dupOutput->mOutput2 : dupOutput->mOutput1;
Eric Laurente552edb2014-03-10 17:42:56 -07005103 // As all active tracks on duplicated output will be deleted,
5104 // and as they were also referenced on the other output, the reference
5105 // count for their stream type must be adjusted accordingly on
5106 // the other output.
François Gaffie1c878552018-11-22 16:53:21 +01005107 const bool wasActive = remainingOutput->isActive();
5108 // Note: no-op on the closing output where all clients has already been set inactive
5109 dupOutput->setAllClientsInactive();
Eric Laurent733ce942017-12-07 12:18:25 -08005110 // stop() will be a no op if the output is still active but is needed in case all
5111 // active streams refcounts where cleared above
5112 if (wasActive) {
François Gaffie1c878552018-11-22 16:53:21 +01005113 remainingOutput->stop();
Eric Laurent733ce942017-12-07 12:18:25 -08005114 }
Eric Laurente552edb2014-03-10 17:42:56 -07005115 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
5116 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
5117
5118 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01005119 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07005120 }
5121 }
5122
Eric Laurent05b90f82014-08-27 15:32:29 -07005123 nextAudioPortGeneration();
5124
François Gaffie1c878552018-11-22 16:53:21 +01005125 ssize_t index = mAudioPatches.indexOfKey(closingOutput->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07005126 if (index >= 0) {
5127 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01005128 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(
5129 patchDesc->getAfHandle(), 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07005130 mAudioPatches.removeItemsAt(index);
5131 mpClientInterface->onAudioPatchListUpdate();
5132 }
5133
Mikhail Naganov32ebca32019-03-22 15:42:52 -07005134 if (closingOutputWasActive) {
5135 closingOutput->stop();
5136 }
François Gaffie1c878552018-11-22 16:53:21 +01005137 closingOutput->close();
Eric Laurente552edb2014-03-10 17:42:56 -07005138
François Gaffie53615e22015-03-19 09:24:12 +01005139 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07005140 mPreviousOutputs = mOutputs;
Dean Wheatley3023b382018-08-09 07:42:40 +10005141
5142 // MSD patches may have been released to support a non-MSD direct output. Reset MSD patch if
5143 // no direct outputs are open.
François Gaffie11d30102018-11-02 16:09:09 +01005144 if (!getMsdAudioOutDevices().isEmpty()) {
Dean Wheatley3023b382018-08-09 07:42:40 +10005145 bool directOutputOpen = false;
5146 for (size_t i = 0; i < mOutputs.size(); i++) {
5147 if (mOutputs[i]->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
5148 directOutputOpen = true;
5149 break;
5150 }
5151 }
5152 if (!directOutputOpen) {
5153 ALOGV("no direct outputs open, reset MSD patch");
5154 setMsdPatch();
5155 }
5156 }
Eric Laurent05b90f82014-08-27 15:32:29 -07005157}
5158
5159void AudioPolicyManager::closeInput(audio_io_handle_t input)
5160{
5161 ALOGV("closeInput(%d)", input);
5162
5163 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
5164 if (inputDesc == NULL) {
5165 ALOGW("closeInput() unknown input %d", input);
5166 return;
5167 }
5168
Eric Laurent6a94d692014-05-20 11:18:06 -07005169 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07005170
François Gaffie11d30102018-11-02 16:09:09 +01005171 sp<DeviceDescriptor> device = inputDesc->getDevice();
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005172 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07005173 if (index >= 0) {
5174 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01005175 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(
5176 patchDesc->getAfHandle(), 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07005177 mAudioPatches.removeItemsAt(index);
5178 mpClientInterface->onAudioPatchListUpdate();
5179 }
5180
Eric Laurentfe231122017-11-17 17:48:06 -08005181 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07005182 mInputs.removeItem(input);
Haynes Mathew George1d539d92018-03-16 11:40:49 -07005183
François Gaffie11d30102018-11-02 16:09:09 +01005184 DeviceVector primaryInputDevices = availablePrimaryModuleInputDevices();
5185 if (primaryInputDevices.contains(device) &&
Haynes Mathew George1d539d92018-03-16 11:40:49 -07005186 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Ytai Ben-Tsvi74cd6b02019-10-25 10:06:40 -07005187 mpClientInterface->setSoundTriggerCaptureState(false);
Haynes Mathew George1d539d92018-03-16 11:40:49 -07005188 }
Eric Laurente552edb2014-03-10 17:42:56 -07005189}
5190
François Gaffie11d30102018-11-02 16:09:09 +01005191SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevices(
5192 const DeviceVector &devices,
5193 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07005194{
5195 SortedVector<audio_io_handle_t> outputs;
5196
François Gaffie11d30102018-11-02 16:09:09 +01005197 ALOGVV("%s() devices %s", __func__, devices.toString().c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07005198 for (size_t i = 0; i < openOutputs.size(); i++) {
François Gaffie11d30102018-11-02 16:09:09 +01005199 ALOGVV("output %zu isDuplicated=%d device=%s",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07005200 i, openOutputs.valueAt(i)->isDuplicated(),
François Gaffie11d30102018-11-02 16:09:09 +01005201 openOutputs.valueAt(i)->supportedDevices().toString().c_str());
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08005202 if (openOutputs.valueAt(i)->supportsAllDevices(devices)
jiabin9a3361e2019-10-01 09:38:30 -07005203 && openOutputs.valueAt(i)->devicesSupportEncodedFormats(devices.types())) {
François Gaffie11d30102018-11-02 16:09:09 +01005204 ALOGVV("%s() found output %d", __func__, openOutputs.keyAt(i));
Eric Laurente552edb2014-03-10 17:42:56 -07005205 outputs.add(openOutputs.keyAt(i));
5206 }
5207 }
5208 return outputs;
5209}
5210
Mikhail Naganov37977152018-07-11 15:54:44 -07005211void AudioPolicyManager::checkForDeviceAndOutputChanges(std::function<bool()> onOutputsChecked)
5212{
5213 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
5214 // output is suspended before any tracks are moved to it
5215 checkA2dpSuspend();
5216 checkOutputForAllStrategies();
Kevin Rocard153f92d2018-12-18 18:33:28 -08005217 checkSecondaryOutputs();
Mikhail Naganov15be9d22017-11-08 14:18:13 +11005218 if (onOutputsChecked != nullptr && onOutputsChecked()) checkA2dpSuspend();
Mikhail Naganov37977152018-07-11 15:54:44 -07005219 updateDevicesAndOutputs();
Mikhail Naganov7bd9b8d2018-11-15 02:09:03 +00005220 if (mHwModules.getModuleFromName(AUDIO_HARDWARE_MODULE_ID_MSD) != 0) {
Mikhail Naganov15be9d22017-11-08 14:18:13 +11005221 setMsdPatch();
5222 }
Mikhail Naganov37977152018-07-11 15:54:44 -07005223}
5224
François Gaffiec005e562018-11-06 15:04:49 +01005225bool AudioPolicyManager::followsSameRouting(const audio_attributes_t &lAttr,
5226 const audio_attributes_t &rAttr) const
Eric Laurente552edb2014-03-10 17:42:56 -07005227{
François Gaffiec005e562018-11-06 15:04:49 +01005228 return mEngine->getProductStrategyForAttributes(lAttr) ==
5229 mEngine->getProductStrategyForAttributes(rAttr);
5230}
5231
5232void AudioPolicyManager::checkOutputForAttributes(const audio_attributes_t &attr)
5233{
5234 auto psId = mEngine->getProductStrategyForAttributes(attr);
5235
5236 DeviceVector oldDevices = mEngine->getOutputDevicesForAttributes(attr, 0, true /*fromCache*/);
5237 DeviceVector newDevices = mEngine->getOutputDevicesForAttributes(attr, 0, false /*fromCache*/);
Jean-Michel Trivi30857152019-11-01 11:04:15 -07005238
François Gaffie11d30102018-11-02 16:09:09 +01005239 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevices(oldDevices, mPreviousOutputs);
5240 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevices(newDevices, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07005241
Eric Laurentc209fe42020-06-05 18:11:23 -07005242 uint32_t maxLatency = 0;
5243 bool invalidate = false;
5244 // take into account dynamic audio policies related changes: if a client is now associated
5245 // to a different policy mix than at creation time, invalidate corresponding stream
5246 for (size_t i = 0; i < mPreviousOutputs.size() && !invalidate; i++) {
5247 const sp<SwAudioOutputDescriptor>& desc = mPreviousOutputs.valueAt(i);
5248 if (desc->isDuplicated()) {
5249 continue;
Jean-Michel Trivife472e22014-12-16 14:23:13 -08005250 }
Eric Laurentc209fe42020-06-05 18:11:23 -07005251 for (const sp<TrackClientDescriptor>& client : desc->getClientIterable()) {
5252 if (mEngine->getProductStrategyForAttributes(client->attributes()) != psId) {
5253 continue;
5254 }
5255 sp<AudioPolicyMix> primaryMix;
5256 status_t status = mPolicyMixes.getOutputForAttr(client->attributes(), client->uid(),
5257 client->flags(), primaryMix, nullptr);
5258 if (status != OK) {
5259 continue;
5260 }
5261 if (client->getPrimaryMix() != primaryMix) {
5262 invalidate = true;
5263 if (desc->isStrategyActive(psId)) {
5264 maxLatency = desc->latency();
5265 }
5266 break;
5267 }
Jean-Michel Trivife472e22014-12-16 14:23:13 -08005268 }
5269 }
5270
Eric Laurentc209fe42020-06-05 18:11:23 -07005271 if (srcOutputs != dstOutputs || invalidate) {
Eric Laurentac3a6902018-05-11 16:39:10 -07005272 // get maximum latency of all source outputs to determine the minimum mute time guaranteeing
5273 // audio from invalidated tracks will be rendered when unmuting
Eric Laurentac3a6902018-05-11 16:39:10 -07005274 for (audio_io_handle_t srcOut : srcOutputs) {
5275 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
Eric Laurentaa02db82019-09-05 17:31:49 -07005276 if (desc == nullptr) continue;
5277
5278 if (desc->isStrategyActive(psId) && maxLatency < desc->latency()) {
Eric Laurentac3a6902018-05-11 16:39:10 -07005279 maxLatency = desc->latency();
5280 }
Eric Laurentaa02db82019-09-05 17:31:49 -07005281
5282 if (invalidate) continue;
5283
5284 for (auto client : desc->clientsList(false /*activeOnly*/)) {
Eric Laurent78aade82019-09-13 18:55:08 -07005285 if (desc->isDuplicated() || !desc->mProfile->isDirectOutput()) {
Eric Laurentaa02db82019-09-05 17:31:49 -07005286 // a client on a non direct outputs has necessarily a linear PCM format
5287 // so we can call selectOutput() safely
5288 const audio_io_handle_t newOutput = selectOutput(dstOutputs,
5289 client->flags(),
5290 client->config().format,
5291 client->config().channel_mask,
5292 client->config().sample_rate);
5293 if (newOutput != srcOut) {
5294 invalidate = true;
5295 break;
5296 }
5297 } else {
5298 sp<IOProfile> profile = getProfileForOutput(newDevices,
5299 client->config().sample_rate,
5300 client->config().format,
5301 client->config().channel_mask,
5302 client->flags(),
5303 true /* directOnly */);
5304 if (profile != desc->mProfile) {
5305 invalidate = true;
5306 break;
5307 }
5308 }
5309 }
Eric Laurentac3a6902018-05-11 16:39:10 -07005310 }
Eric Laurentaa02db82019-09-05 17:31:49 -07005311
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08005312 ALOGV_IF(!(srcOutputs.isEmpty() || dstOutputs.isEmpty()),
François Gaffiec005e562018-11-06 15:04:49 +01005313 "%s: strategy %d, moving from output %s to output %s", __func__, psId,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -08005314 std::to_string(srcOutputs[0]).c_str(),
5315 std::to_string(dstOutputs[0]).c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07005316 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005317 for (audio_io_handle_t srcOut : srcOutputs) {
Eric Laurentac3a6902018-05-11 16:39:10 -07005318 sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueFor(srcOut);
Eric Laurentaa02db82019-09-05 17:31:49 -07005319 if (desc == nullptr) continue;
5320
5321 if (desc->isStrategyActive(psId)) {
François Gaffiec005e562018-11-06 15:04:49 +01005322 setStrategyMute(psId, true, desc);
5323 setStrategyMute(psId, false, desc, maxLatency * LATENCY_MUTE_FACTOR,
François Gaffie11d30102018-11-02 16:09:09 +01005324 newDevices.types());
Eric Laurente552edb2014-03-10 17:42:56 -07005325 }
François Gaffiec005e562018-11-06 15:04:49 +01005326 sp<SourceClientDescriptor> source = getSourceForAttributesOnOutput(srcOut, attr);
Eric Laurentd60560a2015-04-10 11:31:20 -07005327 if (source != 0){
5328 connectAudioSource(source);
5329 }
Eric Laurente552edb2014-03-10 17:42:56 -07005330 }
5331
François Gaffiec005e562018-11-06 15:04:49 +01005332 // Move effects associated to this stream from previous output to new output
5333 if (followsSameRouting(attr, attributes_initializer(AUDIO_USAGE_MEDIA))) {
Eric Laurent36829f92017-04-07 19:04:42 -07005334 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07005335 }
François Gaffiec005e562018-11-06 15:04:49 +01005336 // Move tracks associated to this stream (and linked) from previous output to new output
Eric Laurentaa02db82019-09-05 17:31:49 -07005337 if (invalidate) {
5338 for (auto stream : mEngine->getStreamTypesForProductStrategy(psId)) {
5339 mpClientInterface->invalidateStream(stream);
5340 }
Eric Laurente552edb2014-03-10 17:42:56 -07005341 }
5342 }
5343}
5344
Eric Laurente0720872014-03-11 09:30:41 -07005345void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07005346{
François Gaffiec005e562018-11-06 15:04:49 +01005347 for (const auto &strategy : mEngine->getOrderedProductStrategies()) {
5348 auto attributes = mEngine->getAllAttributesForProductStrategy(strategy).front();
5349 checkOutputForAttributes(attributes);
5350 }
Eric Laurente552edb2014-03-10 17:42:56 -07005351}
5352
Kevin Rocard153f92d2018-12-18 18:33:28 -08005353void AudioPolicyManager::checkSecondaryOutputs() {
5354 std::set<audio_stream_type_t> streamsToInvalidate;
5355 for (size_t i = 0; i < mOutputs.size(); i++) {
5356 const sp<SwAudioOutputDescriptor>& outputDescriptor = mOutputs[i];
5357 for (const sp<TrackClientDescriptor>& client : outputDescriptor->getClientIterable()) {
Eric Laurentc529cf62020-04-17 18:19:10 -07005358 sp<AudioPolicyMix> primaryMix;
5359 std::vector<sp<AudioPolicyMix>> secondaryMixes;
Kevin Rocard94114a22019-04-01 19:38:23 -07005360 status_t status = mPolicyMixes.getOutputForAttr(client->attributes(), client->uid(),
Eric Laurentc529cf62020-04-17 18:19:10 -07005361 client->flags(), primaryMix, &secondaryMixes);
5362 std::vector<sp<SwAudioOutputDescriptor>> secondaryDescs;
5363 for (auto &secondaryMix : secondaryMixes) {
5364 sp<SwAudioOutputDescriptor> outputDesc = secondaryMix->getOutput();
5365 if (outputDesc != nullptr &&
5366 outputDesc->mIoHandle != AUDIO_IO_HANDLE_NONE) {
5367 secondaryDescs.push_back(outputDesc);
5368 }
5369 }
5370
Kevin Rocard94114a22019-04-01 19:38:23 -07005371 if (status != OK ||
5372 !std::equal(client->getSecondaryOutputs().begin(),
Kevin Rocard153f92d2018-12-18 18:33:28 -08005373 client->getSecondaryOutputs().end(),
5374 secondaryDescs.begin(), secondaryDescs.end())) {
5375 streamsToInvalidate.insert(client->stream());
5376 }
5377 }
5378 }
5379 for (audio_stream_type_t stream : streamsToInvalidate) {
5380 ALOGD("%s Invalidate stream %d due to secondary output change", __func__, stream);
5381 mpClientInterface->invalidateStream(stream);
5382 }
5383}
5384
Eric Laurente0720872014-03-11 09:30:41 -07005385void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07005386{
François Gaffie53615e22015-03-19 09:24:12 +01005387 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08005388 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07005389 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07005390 return;
5391 }
5392
Eric Laurent3a4311c2014-03-17 12:00:47 -07005393 bool isScoConnected =
jiabin9a3361e2019-10-01 09:38:30 -07005394 (mAvailableInputDevices.types().count(AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET) != 0 ||
5395 !Intersection(mAvailableOutputDevices.types(), getAudioDeviceOutAllScoSet()).empty());
Eric Laurentf732e072016-08-03 19:30:28 -07005396
5397 // if suspended, restore A2DP output if:
5398 // ((SCO device is NOT connected) ||
5399 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
5400 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07005401 //
Eric Laurentf732e072016-08-03 19:30:28 -07005402 // if not suspended, suspend A2DP output if:
5403 // (SCO device is connected) &&
5404 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
5405 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07005406 //
5407 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07005408 if (!isScoConnected ||
5409 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
5410 AUDIO_POLICY_FORCE_BT_SCO) &&
5411 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
5412 AUDIO_POLICY_FORCE_BT_SCO) &&
5413 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01005414 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07005415
5416 mpClientInterface->restoreOutput(a2dpOutput);
5417 mA2dpSuspended = false;
5418 }
5419 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07005420 if (isScoConnected &&
5421 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
5422 AUDIO_POLICY_FORCE_BT_SCO) ||
5423 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
5424 AUDIO_POLICY_FORCE_BT_SCO) ||
5425 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01005426 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07005427
5428 mpClientInterface->suspendOutput(a2dpOutput);
5429 mA2dpSuspended = true;
5430 }
5431 }
5432}
5433
François Gaffie11d30102018-11-02 16:09:09 +01005434DeviceVector AudioPolicyManager::getNewOutputDevices(const sp<SwAudioOutputDescriptor>& outputDesc,
5435 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07005436{
François Gaffie11d30102018-11-02 16:09:09 +01005437 DeviceVector devices;
5438
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005439 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005440 if (index >= 0) {
5441 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01005442 if (patchDesc->getUid() != mUidCached) {
François Gaffie11d30102018-11-02 16:09:09 +01005443 ALOGV("%s device %s forced by patch %d", __func__,
5444 outputDesc->devices().toString().c_str(), outputDesc->getPatchHandle());
5445 return outputDesc->devices();
Eric Laurent6a94d692014-05-20 11:18:06 -07005446 }
5447 }
5448
Eric Laurent97ac8712018-07-27 18:59:02 -07005449 // Honor explicit routing requests only if no client using default routing is active on this
5450 // input: a specific app can not force routing for other apps by setting a preferred device.
5451 bool active; // unused
François Gaffie11d30102018-11-02 16:09:09 +01005452 sp<DeviceDescriptor> device =
François Gaffiec005e562018-11-06 15:04:49 +01005453 findPreferredDevice(outputDesc, PRODUCT_STRATEGY_NONE, active, mAvailableOutputDevices);
François Gaffie11d30102018-11-02 16:09:09 +01005454 if (device != nullptr) {
5455 return DeviceVector(device);
Eric Laurentf3a5a602018-05-22 18:42:55 -07005456 }
5457
François Gaffiea807ef92018-11-05 10:44:33 +01005458 // Legacy Engine cannot take care of bus devices and mix, so we need to handle the conflict
5459 // of setForceUse / Default Bus device here
5460 device = mPolicyMixes.getDeviceAndMixForOutput(outputDesc, mAvailableOutputDevices);
5461 if (device != nullptr) {
5462 return DeviceVector(device);
5463 }
5464
François Gaffiec005e562018-11-06 15:04:49 +01005465 for (const auto &productStrategy : mEngine->getOrderedProductStrategies()) {
5466 StreamTypeVector streams = mEngine->getStreamTypesForProductStrategy(productStrategy);
5467 auto attr = mEngine->getAllAttributesForProductStrategy(productStrategy).front();
Eric Laurent484e9272018-06-07 17:29:23 -07005468
François Gaffiec005e562018-11-06 15:04:49 +01005469 if ((hasVoiceStream(streams) &&
Henrik Backlund019c1732019-09-30 14:48:38 +02005470 (isInCall() || mOutputs.isStrategyActiveOnSameModule(productStrategy, outputDesc)) &&
5471 !isStreamActive(AUDIO_STREAM_ENFORCED_AUDIBLE, 0)) ||
Eric Laurentf23a7712019-02-28 17:15:40 -08005472 ((hasStream(streams, AUDIO_STREAM_ALARM) || hasStream(streams, AUDIO_STREAM_ENFORCED_AUDIBLE)) &&
François Gaffiec005e562018-11-06 15:04:49 +01005473 mOutputs.isStrategyActiveOnSameModule(productStrategy, outputDesc)) ||
5474 outputDesc->isStrategyActive(productStrategy)) {
5475 // Retrieval of devices for voice DL is done on primary output profile, cannot
5476 // check the route (would force modifying configuration file for this profile)
5477 devices = mEngine->getOutputDevicesForAttributes(attr, nullptr, fromCache);
5478 break;
5479 }
Eric Laurente552edb2014-03-10 17:42:56 -07005480 }
François Gaffiec005e562018-11-06 15:04:49 +01005481 ALOGV("%s selected devices %s", __func__, devices.toString().c_str());
François Gaffie11d30102018-11-02 16:09:09 +01005482 return devices;
Eric Laurent1c333e22014-05-20 10:48:17 -07005483}
5484
François Gaffie11d30102018-11-02 16:09:09 +01005485sp<DeviceDescriptor> AudioPolicyManager::getNewInputDevice(
5486 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07005487{
François Gaffie11d30102018-11-02 16:09:09 +01005488 sp<DeviceDescriptor> device;
Eric Laurent6a94d692014-05-20 11:18:06 -07005489
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005490 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005491 if (index >= 0) {
5492 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01005493 if (patchDesc->getUid() != mUidCached) {
François Gaffie11d30102018-11-02 16:09:09 +01005494 ALOGV("getNewInputDevice() device %s forced by patch %d",
5495 inputDesc->getDevice()->toString().c_str(), inputDesc->getPatchHandle());
5496 return inputDesc->getDevice();
Eric Laurent6a94d692014-05-20 11:18:06 -07005497 }
5498 }
5499
Eric Laurent97ac8712018-07-27 18:59:02 -07005500 // Honor explicit routing requests only if no client using default routing is active on this
5501 // input: a specific app can not force routing for other apps by setting a preferred device.
5502 bool active;
François Gaffie11d30102018-11-02 16:09:09 +01005503 device = findPreferredDevice(inputDesc, AUDIO_SOURCE_DEFAULT, active, mAvailableInputDevices);
5504 if (device != nullptr) {
5505 return device;
Eric Laurent97ac8712018-07-27 18:59:02 -07005506 }
5507
Eric Laurentdc95a252018-04-12 12:46:56 -07005508 // If we are not in call and no client is active on this input, this methods returns
Andy Hungf024a9e2019-01-30 16:01:02 -08005509 // a null sp<>, causing the patch on the input stream to be released.
Francois Gaffie716e1432019-01-14 16:58:59 +01005510 audio_attributes_t attributes = inputDesc->getHighestPriorityAttributes();
5511 if (attributes.source == AUDIO_SOURCE_DEFAULT && isInCall()) {
5512 attributes.source = AUDIO_SOURCE_VOICE_COMMUNICATION;
Eric Laurentdc95a252018-04-12 12:46:56 -07005513 }
Francois Gaffie716e1432019-01-14 16:58:59 +01005514 if (attributes.source != AUDIO_SOURCE_DEFAULT) {
François Gaffiec005e562018-11-06 15:04:49 +01005515 device = mEngine->getInputDeviceForAttributes(attributes);
Eric Laurentfb66dd92016-01-28 18:32:03 -08005516 }
Eric Laurent1c333e22014-05-20 10:48:17 -07005517
Eric Laurente552edb2014-03-10 17:42:56 -07005518 return device;
5519}
5520
Eric Laurent794fde22016-03-11 09:50:45 -08005521bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
5522 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08005523 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08005524}
5525
Eric Laurente0720872014-03-11 09:30:41 -07005526audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07005527 // By checking the range of stream before calling getStrategy, we avoid
François Gaffiec005e562018-11-06 15:04:49 +01005528 // getOutputDevicesForStream's behavior for invalid streams.
5529 // engine's getOutputDevicesForStream would fallback on its default behavior (most probably
5530 // device for music stream), but we want to return the empty set.
5531 if (stream < AUDIO_STREAM_MIN || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005532 return AUDIO_DEVICE_NONE;
5533 }
François Gaffie11d30102018-11-02 16:09:09 +01005534 DeviceVector activeDevices;
5535 DeviceVector devices;
François Gaffiec005e562018-11-06 15:04:49 +01005536 for (audio_stream_type_t curStream = AUDIO_STREAM_MIN; curStream < AUDIO_STREAM_PUBLIC_CNT;
5537 curStream = (audio_stream_type_t) (curStream + 1)) {
5538 if (!streamsMatchForvolume(stream, curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08005539 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07005540 }
François Gaffiec005e562018-11-06 15:04:49 +01005541 DeviceVector curDevices = mEngine->getOutputDevicesForStream(curStream, false/*fromCache*/);
François Gaffie11d30102018-11-02 16:09:09 +01005542 devices.merge(curDevices);
5543 for (audio_io_handle_t output : getOutputsForDevices(curDevices, mOutputs)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005544 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent83d17c22019-04-02 17:10:01 -07005545 if (outputDesc->isActive(toVolumeSource(curStream))) {
François Gaffie11d30102018-11-02 16:09:09 +01005546 activeDevices.merge(outputDesc->devices());
Eric Laurent28d09f02016-03-08 10:43:05 -08005547 }
5548 }
Eric Laurente552edb2014-03-10 17:42:56 -07005549 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05005550
Eric Laurentb0688d62018-08-14 15:49:18 -07005551 // Favor devices selected on active streams if any to report correct device in case of
5552 // explicit device selection
François Gaffie11d30102018-11-02 16:09:09 +01005553 if (!activeDevices.isEmpty()) {
Eric Laurentb0688d62018-08-14 15:49:18 -07005554 devices = activeDevices;
5555 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05005556 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
5557 and doesn't really need to.*/
jiabin9a3361e2019-10-01 09:38:30 -07005558 DeviceVector speakerSafeDevices = devices.getDevicesFromType(AUDIO_DEVICE_OUT_SPEAKER_SAFE);
François Gaffie11d30102018-11-02 16:09:09 +01005559 if (!speakerSafeDevices.isEmpty()) {
jiabin9a3361e2019-10-01 09:38:30 -07005560 devices.merge(mAvailableOutputDevices.getDevicesFromType(AUDIO_DEVICE_OUT_SPEAKER));
François Gaffie11d30102018-11-02 16:09:09 +01005561 devices.remove(speakerSafeDevices);
Jon Eklund11c9fb12014-06-23 14:47:03 -05005562 }
jiabin9a3361e2019-10-01 09:38:30 -07005563 // FIXME: use DeviceTypeSet when Java layer is ready for it.
5564 return deviceTypesToBitMask(devices.types());
Eric Laurente552edb2014-03-10 17:42:56 -07005565}
5566
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08005567status_t AudioPolicyManager::getDevicesForAttributes(
5568 const audio_attributes_t &attr, AudioDeviceTypeAddrVector *devices) {
5569 if (devices == nullptr) {
5570 return BAD_VALUE;
5571 }
5572 // check dynamic policies but only for primary descriptors (secondary not used for audible
5573 // audio routing, only used for duplication for playback capture)
Eric Laurentc529cf62020-04-17 18:19:10 -07005574 sp<AudioPolicyMix> policyMix;
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08005575 status_t status = mPolicyMixes.getOutputForAttr(attr, 0 /*uid unknown here*/,
Eric Laurentc529cf62020-04-17 18:19:10 -07005576 AUDIO_OUTPUT_FLAG_NONE, policyMix, nullptr);
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08005577 if (status != OK) {
5578 return status;
5579 }
Eric Laurentc529cf62020-04-17 18:19:10 -07005580 if (policyMix != nullptr && policyMix->getOutput() != nullptr) {
5581 AudioDeviceTypeAddr device(policyMix->mDeviceType, policyMix->mDeviceAddress.c_str());
5582 devices->push_back(device);
5583 return NO_ERROR;
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08005584 }
Jean-Michel Trivif41599b2020-01-07 14:22:08 -08005585 DeviceVector curDevices = mEngine->getOutputDevicesForAttributes(attr, nullptr, false);
5586 for (const auto& device : curDevices) {
5587 devices->push_back(device->getDeviceTypeAddr());
5588 }
5589 return NO_ERROR;
5590}
5591
Eric Laurente0720872014-03-11 09:30:41 -07005592void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07005593 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005594 case AUDIO_STREAM_MUSIC:
François Gaffiec005e562018-11-06 15:04:49 +01005595 checkOutputForAttributes(attributes_initializer(AUDIO_USAGE_NOTIFICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07005596 updateDevicesAndOutputs();
5597 break;
5598 default:
5599 break;
5600 }
5601}
5602
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005603uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07005604
5605 // skip beacon mute management if a dedicated TTS output is available
5606 if (mTtsOutputAvailable) {
5607 return 0;
5608 }
5609
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005610 switch(event) {
5611 case STARTING_OUTPUT:
5612 mBeaconMuteRefCount++;
5613 break;
5614 case STOPPING_OUTPUT:
5615 if (mBeaconMuteRefCount > 0) {
5616 mBeaconMuteRefCount--;
5617 }
5618 break;
5619 case STARTING_BEACON:
5620 mBeaconPlayingRefCount++;
5621 break;
5622 case STOPPING_BEACON:
5623 if (mBeaconPlayingRefCount > 0) {
5624 mBeaconPlayingRefCount--;
5625 }
5626 break;
5627 }
5628
5629 if (mBeaconMuteRefCount > 0) {
5630 // any playback causes beacon to be muted
5631 return setBeaconMute(true);
5632 } else {
5633 // no other playback: unmute when beacon starts playing, mute when it stops
5634 return setBeaconMute(mBeaconPlayingRefCount == 0);
5635 }
5636}
5637
5638uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
5639 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
5640 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
5641 // keep track of muted state to avoid repeating mute/unmute operations
5642 if (mBeaconMuted != mute) {
5643 // mute/unmute AUDIO_STREAM_TTS on all outputs
5644 ALOGV("\t muting %d", mute);
5645 uint32_t maxLatency = 0;
François Gaffieaaac0fd2018-11-22 17:56:39 +01005646 auto ttsVolumeSource = toVolumeSource(AUDIO_STREAM_TTS);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005647 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005648 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
jiabin9a3361e2019-10-01 09:38:30 -07005649 setVolumeSourceMute(ttsVolumeSource, mute/*on*/, desc, 0 /*delay*/, DeviceTypeSet());
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07005650 const uint32_t latency = desc->latency() * 2;
5651 if (latency > maxLatency) {
5652 maxLatency = latency;
5653 }
5654 }
5655 mBeaconMuted = mute;
5656 return maxLatency;
5657 }
5658 return 0;
5659}
5660
Eric Laurente0720872014-03-11 09:30:41 -07005661void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07005662{
François Gaffiec005e562018-11-06 15:04:49 +01005663 mEngine->updateDeviceSelectionCache();
Eric Laurente552edb2014-03-10 17:42:56 -07005664 mPreviousOutputs = mOutputs;
5665}
5666
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005667uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiec005e562018-11-06 15:04:49 +01005668 const DeviceVector &prevDevices,
Eric Laurente552edb2014-03-10 17:42:56 -07005669 uint32_t delayMs)
5670{
5671 // mute/unmute strategies using an incompatible device combination
5672 // if muting, wait for the audio in pcm buffer to be drained before proceeding
5673 // if unmuting, unmute only after the specified delay
5674 if (outputDesc->isDuplicated()) {
5675 return 0;
5676 }
5677
5678 uint32_t muteWaitMs = 0;
François Gaffiec005e562018-11-06 15:04:49 +01005679 DeviceVector devices = outputDesc->devices();
5680 bool shouldMute = outputDesc->isActive() && (devices.size() >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07005681
François Gaffiec005e562018-11-06 15:04:49 +01005682 auto productStrategies = mEngine->getOrderedProductStrategies();
5683 for (const auto &productStrategy : productStrategies) {
5684 auto attributes = mEngine->getAllAttributesForProductStrategy(productStrategy).front();
5685 DeviceVector curDevices =
5686 mEngine->getOutputDevicesForAttributes(attributes, nullptr, false/*fromCache*/);
5687 curDevices = curDevices.filter(outputDesc->supportedDevices());
5688 bool mute = shouldMute && curDevices.containsAtLeastOne(devices) && curDevices != devices;
Eric Laurente552edb2014-03-10 17:42:56 -07005689 bool doMute = false;
5690
François Gaffiec005e562018-11-06 15:04:49 +01005691 if (mute && !outputDesc->isStrategyMutedByDevice(productStrategy)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005692 doMute = true;
François Gaffiec005e562018-11-06 15:04:49 +01005693 outputDesc->setStrategyMutedByDevice(productStrategy, true);
5694 } else if (!mute && outputDesc->isStrategyMutedByDevice(productStrategy)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005695 doMute = true;
François Gaffiec005e562018-11-06 15:04:49 +01005696 outputDesc->setStrategyMutedByDevice(productStrategy, false);
Eric Laurente552edb2014-03-10 17:42:56 -07005697 }
Eric Laurent99401132014-05-07 19:48:15 -07005698 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07005699 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07005700 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07005701 // skip output if it does not share any device with current output
François Gaffie11d30102018-11-02 16:09:09 +01005702 if (!desc->supportedDevices().containsAtLeastOne(outputDesc->supportedDevices())) {
Eric Laurente552edb2014-03-10 17:42:56 -07005703 continue;
5704 }
François Gaffiec005e562018-11-06 15:04:49 +01005705 ALOGVV("%s() %s (curDevice %s)", __func__,
5706 mute ? "muting" : "unmuting", curDevices.toString().c_str());
5707 setStrategyMute(productStrategy, mute, desc, mute ? 0 : delayMs);
5708 if (desc->isStrategyActive(productStrategy)) {
Eric Laurent99401132014-05-07 19:48:15 -07005709 if (mute) {
5710 // FIXME: should not need to double latency if volume could be applied
5711 // immediately by the audioflinger mixer. We must account for the delay
5712 // between now and the next time the audioflinger thread for this output
5713 // will process a buffer (which corresponds to one buffer size,
5714 // usually 1/2 or 1/4 of the latency).
5715 if (muteWaitMs < desc->latency() * 2) {
5716 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07005717 }
5718 }
5719 }
5720 }
5721 }
5722 }
5723
Eric Laurent99401132014-05-07 19:48:15 -07005724 // temporary mute output if device selection changes to avoid volume bursts due to
5725 // different per device volumes
François Gaffiec005e562018-11-06 15:04:49 +01005726 if (outputDesc->isActive() && (devices != prevDevices)) {
Eric Laurentdc462862016-07-19 12:29:53 -07005727 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
5728 // temporary mute duration is conservatively set to 4 times the reported latency
5729 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
5730 if (muteWaitMs < tempMuteWaitMs) {
5731 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07005732 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01005733 for (const auto &activeVs : outputDesc->getActiveVolumeSources()) {
5734 // make sure that we do not start the temporary mute period too early in case of
5735 // delayed device change
5736 setVolumeSourceMute(activeVs, true, outputDesc, delayMs);
5737 setVolumeSourceMute(activeVs, false, outputDesc, delayMs + tempMuteDurationMs,
François Gaffiec005e562018-11-06 15:04:49 +01005738 devices.types());
Eric Laurent99401132014-05-07 19:48:15 -07005739 }
5740 }
5741
Eric Laurente552edb2014-03-10 17:42:56 -07005742 // wait for the PCM output buffers to empty before proceeding with the rest of the command
5743 if (muteWaitMs > delayMs) {
5744 muteWaitMs -= delayMs;
5745 usleep(muteWaitMs * 1000);
5746 return muteWaitMs;
5747 }
5748 return 0;
5749}
5750
François Gaffie11d30102018-11-02 16:09:09 +01005751uint32_t AudioPolicyManager::setOutputDevices(const sp<SwAudioOutputDescriptor>& outputDesc,
5752 const DeviceVector &devices,
5753 bool force,
5754 int delayMs,
5755 audio_patch_handle_t *patchHandle,
5756 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07005757{
François Gaffie11d30102018-11-02 16:09:09 +01005758 ALOGV("%s device %s delayMs %d", __func__, devices.toString().c_str(), delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005759 uint32_t muteWaitMs;
5760
5761 if (outputDesc->isDuplicated()) {
François Gaffie11d30102018-11-02 16:09:09 +01005762 muteWaitMs = setOutputDevices(outputDesc->subOutput1(), devices, force, delayMs,
5763 nullptr /* patchHandle */, requiresMuteCheck);
5764 muteWaitMs += setOutputDevices(outputDesc->subOutput2(), devices, force, delayMs,
5765 nullptr /* patchHandle */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07005766 return muteWaitMs;
5767 }
Eric Laurente552edb2014-03-10 17:42:56 -07005768
5769 // filter devices according to output selected
Francois Gaffie716e1432019-01-14 16:58:59 +01005770 DeviceVector filteredDevices = outputDesc->filterSupportedDevices(devices);
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01005771 DeviceVector prevDevices = outputDesc->devices();
Eric Laurente552edb2014-03-10 17:42:56 -07005772
François Gaffie11d30102018-11-02 16:09:09 +01005773 ALOGV("setOutputDevices() prevDevice %s", prevDevices.toString().c_str());
5774
5775 if (!filteredDevices.isEmpty()) {
5776 outputDesc->setDevices(filteredDevices);
Eric Laurente552edb2014-03-10 17:42:56 -07005777 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005778
5779 // if the outputs are not materially active, there is no need to mute.
5780 if (requiresMuteCheck) {
François Gaffiec005e562018-11-06 15:04:49 +01005781 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevices, delayMs);
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00005782 } else {
5783 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
5784 muteWaitMs = 0;
5785 }
Eric Laurente552edb2014-03-10 17:42:56 -07005786
Eric Laurent79ea9582020-06-11 18:49:24 -07005787 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
5788 // output profile or if new device is not supported AND previous device(s) is(are) still
5789 // available (otherwise reset device must be done on the output)
5790 if (!devices.isEmpty() && filteredDevices.isEmpty() &&
5791 !mAvailableOutputDevices.filter(prevDevices).empty()) {
5792 ALOGV("%s: unsupported device %s for output", __func__, devices.toString().c_str());
5793 // restore previous device after evaluating strategy mute state
5794 outputDesc->setDevices(prevDevices);
5795 return muteWaitMs;
5796 }
5797
Eric Laurente552edb2014-03-10 17:42:56 -07005798 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07005799 // the requested device is AUDIO_DEVICE_NONE
5800 // OR the requested device is the same as current device
5801 // AND force is not specified
5802 // AND the output is connected by a valid audio patch.
François Gaffie11d30102018-11-02 16:09:09 +01005803 // Doing this check here allows the caller to call setOutputDevices() without conditions
Mikhail Naganov2d4e1702019-01-24 12:59:44 -08005804 if ((filteredDevices.isEmpty() || filteredDevices == prevDevices) &&
François Gaffie11d30102018-11-02 16:09:09 +01005805 !force && outputDesc->getPatchHandle() != 0) {
5806 ALOGV("%s setting same device %s or null device, force=%d, patch handle=%d", __func__,
5807 filteredDevices.toString().c_str(), force, outputDesc->getPatchHandle());
Eric Laurente552edb2014-03-10 17:42:56 -07005808 return muteWaitMs;
5809 }
5810
François Gaffie11d30102018-11-02 16:09:09 +01005811 ALOGV("%s changing device to %s", __func__, filteredDevices.toString().c_str());
Eric Laurent1c333e22014-05-20 10:48:17 -07005812
Eric Laurente552edb2014-03-10 17:42:56 -07005813 // do the routing
François Gaffie11d30102018-11-02 16:09:09 +01005814 if (filteredDevices.isEmpty()) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005815 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07005816 } else {
François Gaffie11d30102018-11-02 16:09:09 +01005817 PatchBuilder patchBuilder;
5818 patchBuilder.addSource(outputDesc);
5819 ALOG_ASSERT(filteredDevices.size() <= AUDIO_PATCH_PORTS_MAX, "Too many sink ports");
5820 for (const auto &filteredDevice : filteredDevices) {
5821 patchBuilder.addSink(filteredDevice);
Eric Laurentc40d9692016-04-13 19:14:13 -07005822 }
5823
Jasmine Cha7f82d1a2020-03-16 13:21:47 +08005824 // Add half reported latency to delayMs when muteWaitMs is null in order
5825 // to avoid disordered sequence of muting volume and changing devices.
5826 installPatch(__func__, patchHandle, outputDesc.get(), patchBuilder.patch(),
5827 muteWaitMs == 0 ? (delayMs + (outputDesc->latency() / 2)) : delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07005828 }
Eric Laurente552edb2014-03-10 17:42:56 -07005829
5830 // update stream volumes according to new device
François Gaffie11d30102018-11-02 16:09:09 +01005831 applyStreamVolumes(outputDesc, filteredDevices.types(), delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005832
5833 return muteWaitMs;
5834}
5835
Eric Laurentc75307b2015-03-17 15:29:32 -07005836status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07005837 int delayMs,
5838 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005839{
Eric Laurent6a94d692014-05-20 11:18:06 -07005840 ssize_t index;
5841 if (patchHandle) {
5842 index = mAudioPatches.indexOfKey(*patchHandle);
5843 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08005844 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005845 }
5846 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005847 return INVALID_OPERATION;
5848 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005849 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01005850 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->getAfHandle(), delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07005851 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005852 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
François Gaffieafd4cea2019-11-18 15:50:22 +01005853 removeAudioPatch(patchDesc->getHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005854 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005855 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005856 return status;
5857}
5858
5859status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
François Gaffie11d30102018-11-02 16:09:09 +01005860 const sp<DeviceDescriptor> &device,
Eric Laurent6a94d692014-05-20 11:18:06 -07005861 bool force,
5862 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005863{
5864 status_t status = NO_ERROR;
5865
Eric Laurent1f2f2232014-06-02 12:01:23 -07005866 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
François Gaffie11d30102018-11-02 16:09:09 +01005867 if ((device != nullptr) && ((device != inputDesc->getDevice()) || force)) {
5868 inputDesc->setDevice(device);
Eric Laurent1c333e22014-05-20 10:48:17 -07005869
François Gaffie11d30102018-11-02 16:09:09 +01005870 if (mAvailableInputDevices.contains(device)) {
Mikhail Naganovdc769682018-05-04 15:34:08 -07005871 PatchBuilder patchBuilder;
5872 patchBuilder.addSink(inputDesc,
Eric Laurentdaf92cc2014-07-22 15:36:10 -07005873 // AUDIO_SOURCE_HOTWORD is for internal use only:
5874 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Mikhail Naganovdc769682018-05-04 15:34:08 -07005875 [inputDesc](const PatchBuilder::mix_usecase_t& usecase) {
5876 auto result = usecase;
5877 if (result.source == AUDIO_SOURCE_HOTWORD && !inputDesc->isSoundTrigger()) {
5878 result.source = AUDIO_SOURCE_VOICE_RECOGNITION;
5879 }
5880 return result; }).
Eric Laurent1c333e22014-05-20 10:48:17 -07005881 //only one input device for now
François Gaffie11d30102018-11-02 16:09:09 +01005882 addSource(device);
Mikhail Naganovdc769682018-05-04 15:34:08 -07005883 status = installPatch(__func__, patchHandle, inputDesc.get(), patchBuilder.patch(), 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005884 }
5885 }
5886 return status;
5887}
5888
Eric Laurent6a94d692014-05-20 11:18:06 -07005889status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
5890 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005891{
Eric Laurent1f2f2232014-06-02 12:01:23 -07005892 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07005893 ssize_t index;
5894 if (patchHandle) {
5895 index = mAudioPatches.indexOfKey(*patchHandle);
5896 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005897 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005898 }
5899 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005900 return INVALID_OPERATION;
5901 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005902 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01005903 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->getAfHandle(), 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005904 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005905 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
François Gaffieafd4cea2019-11-18 15:50:22 +01005906 removeAudioPatch(patchDesc->getHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005907 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005908 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005909 return status;
5910}
5911
François Gaffie11d30102018-11-02 16:09:09 +01005912sp<IOProfile> AudioPolicyManager::getInputProfile(const sp<DeviceDescriptor> &device,
François Gaffie53615e22015-03-19 09:24:12 +01005913 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005914 audio_format_t& format,
5915 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005916 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005917{
5918 // Choose an input profile based on the requested capture parameters: select the first available
5919 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005920 //
5921 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5922 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005923
Glenn Kasten730b9262018-03-29 15:01:26 -07005924 sp<IOProfile> firstInexact;
5925 uint32_t updatedSamplingRate = 0;
5926 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
5927 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005928 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005929 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005930 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07005931 //updatedFormat = format;
François Gaffie11d30102018-11-02 16:09:09 +01005932 if (profile->isCompatibleProfile(DeviceVector(device), samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07005933 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005934 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07005935 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07005936 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07005937 &channelMask /*updatedChannelMask*/,
5938 // FIXME ugly cast
5939 (audio_output_flags_t) flags,
5940 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005941 return profile;
5942 }
François Gaffie11d30102018-11-02 16:09:09 +01005943 if (firstInexact == nullptr && profile->isCompatibleProfile(DeviceVector(device),
Glenn Kasten730b9262018-03-29 15:01:26 -07005944 samplingRate,
5945 &updatedSamplingRate,
5946 format,
5947 &updatedFormat,
5948 channelMask,
5949 &updatedChannelMask,
5950 // FIXME ugly cast
5951 (audio_output_flags_t) flags,
5952 false /*exactMatchRequiredForInputFlags*/)) {
5953 firstInexact = profile;
5954 }
5955
Eric Laurente552edb2014-03-10 17:42:56 -07005956 }
5957 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005958 if (firstInexact != nullptr) {
5959 samplingRate = updatedSamplingRate;
5960 format = updatedFormat;
5961 channelMask = updatedChannelMask;
5962 return firstInexact;
5963 }
Eric Laurente552edb2014-03-10 17:42:56 -07005964 return NULL;
5965}
5966
François Gaffieaaac0fd2018-11-22 17:56:39 +01005967float AudioPolicyManager::computeVolume(IVolumeCurves &curves,
5968 VolumeSource volumeSource,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005969 int index,
jiabin9a3361e2019-10-01 09:38:30 -07005970 const DeviceTypeSet& deviceTypes)
Eric Laurente552edb2014-03-10 17:42:56 -07005971{
jiabin9a3361e2019-10-01 09:38:30 -07005972 float volumeDb = curves.volIndexToDb(Volume::getDeviceCategory(deviceTypes), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005973
5974 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5975 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5976 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5977 // the ringtone volume
François Gaffieaaac0fd2018-11-22 17:56:39 +01005978 const auto callVolumeSrc = toVolumeSource(AUDIO_STREAM_VOICE_CALL);
5979 const auto ringVolumeSrc = toVolumeSource(AUDIO_STREAM_RING);
5980 const auto musicVolumeSrc = toVolumeSource(AUDIO_STREAM_MUSIC);
5981 const auto alarmVolumeSrc = toVolumeSource(AUDIO_STREAM_ALARM);
Jean-Michel Trivi441ed652019-07-11 14:55:16 -07005982 const auto a11yVolumeSrc = toVolumeSource(AUDIO_STREAM_ACCESSIBILITY);
François Gaffieaaac0fd2018-11-22 17:56:39 +01005983
Jean-Michel Trivi441ed652019-07-11 14:55:16 -07005984 if (volumeSource == a11yVolumeSrc
François Gaffieaaac0fd2018-11-22 17:56:39 +01005985 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState()) &&
5986 mOutputs.isActive(ringVolumeSrc, 0)) {
5987 auto &ringCurves = getVolumeCurves(AUDIO_STREAM_RING);
jiabin9a3361e2019-10-01 09:38:30 -07005988 const float ringVolumeDb = computeVolume(ringCurves, ringVolumeSrc, index, deviceTypes);
François Gaffieaaac0fd2018-11-22 17:56:39 +01005989 return ringVolumeDb - 4 > volumeDb ? ringVolumeDb - 4 : volumeDb;
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005990 }
5991
Eric Laurentdcd4ab12018-06-29 17:45:13 -07005992 // in-call: always cap volume by voice volume + some low headroom
François Gaffieaaac0fd2018-11-22 17:56:39 +01005993 if ((volumeSource != callVolumeSrc && (isInCall() ||
5994 mOutputs.isActiveLocally(callVolumeSrc))) &&
5995 (volumeSource == toVolumeSource(AUDIO_STREAM_SYSTEM) ||
5996 volumeSource == ringVolumeSrc || volumeSource == musicVolumeSrc ||
5997 volumeSource == alarmVolumeSrc ||
5998 volumeSource == toVolumeSource(AUDIO_STREAM_NOTIFICATION) ||
5999 volumeSource == toVolumeSource(AUDIO_STREAM_ENFORCED_AUDIBLE) ||
6000 volumeSource == toVolumeSource(AUDIO_STREAM_DTMF) ||
Jean-Michel Trivi441ed652019-07-11 14:55:16 -07006001 volumeSource == a11yVolumeSrc)) {
François Gaffieaaac0fd2018-11-22 17:56:39 +01006002 auto &voiceCurves = getVolumeCurves(callVolumeSrc);
jiabin9a3361e2019-10-01 09:38:30 -07006003 int voiceVolumeIndex = voiceCurves.getVolumeIndex(deviceTypes);
François Gaffieaaac0fd2018-11-22 17:56:39 +01006004 const float maxVoiceVolDb =
jiabin9a3361e2019-10-01 09:38:30 -07006005 computeVolume(voiceCurves, callVolumeSrc, voiceVolumeIndex, deviceTypes)
Eric Laurent7731b5a2018-04-06 15:47:22 -07006006 + IN_CALL_EARPIECE_HEADROOM_DB;
Abhijith Shastry329ddab2019-04-23 11:53:26 -07006007 // FIXME: Workaround for call screening applications until a proper audio mode is defined
6008 // to support this scenario : Exempt the RING stream from the audio cap if the audio was
6009 // programmatically muted.
6010 // VOICE_CALL stream has minVolumeIndex > 0 : Users cannot set the volume of voice calls to
6011 // 0. We don't want to cap volume when the system has programmatically muted the voice call
6012 // stream. See setVolumeCurveIndex() for more information.
Jean-Michel Trivi441ed652019-07-11 14:55:16 -07006013 bool exemptFromCapping =
6014 ((volumeSource == ringVolumeSrc) || (volumeSource == a11yVolumeSrc))
6015 && (voiceVolumeIndex == 0);
Abhijith Shastry329ddab2019-04-23 11:53:26 -07006016 ALOGV_IF(exemptFromCapping, "%s volume source %d at vol=%f not capped", __func__,
6017 volumeSource, volumeDb);
6018 if ((volumeDb > maxVoiceVolDb) && !exemptFromCapping) {
François Gaffieaaac0fd2018-11-22 17:56:39 +01006019 ALOGV("%s volume source %d at vol=%f overriden by volume group %d at vol=%f", __func__,
6020 volumeSource, volumeDb, callVolumeSrc, maxVoiceVolDb);
6021 volumeDb = maxVoiceVolDb;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07006022 }
6023 }
Eric Laurente552edb2014-03-10 17:42:56 -07006024 // if a headset is connected, apply the following rules to ring tones and notifications
6025 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07006026 // - always attenuate notifications volume by 6dB
6027 // - attenuate ring tones volume by 6dB unless music is not playing and
6028 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07006029 // - if music is playing, always limit the volume to current music volume,
6030 // with a minimum threshold at -36dB so that notification is always perceived.
jiabin9a3361e2019-10-01 09:38:30 -07006031 if (!Intersection(deviceTypes,
6032 {AUDIO_DEVICE_OUT_BLUETOOTH_A2DP, AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES,
6033 AUDIO_DEVICE_OUT_WIRED_HEADSET, AUDIO_DEVICE_OUT_WIRED_HEADPHONE,
6034 AUDIO_DEVICE_OUT_USB_HEADSET, AUDIO_DEVICE_OUT_HEARING_AID}).empty() &&
François Gaffieaaac0fd2018-11-22 17:56:39 +01006035 ((volumeSource == alarmVolumeSrc ||
6036 volumeSource == ringVolumeSrc) ||
6037 (volumeSource == toVolumeSource(AUDIO_STREAM_NOTIFICATION)) ||
6038 (volumeSource == toVolumeSource(AUDIO_STREAM_SYSTEM)) ||
6039 ((volumeSource == toVolumeSource(AUDIO_STREAM_ENFORCED_AUDIBLE)) &&
6040 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
6041 curves.canBeMuted()) {
6042
Eric Laurente552edb2014-03-10 17:42:56 -07006043 // when the phone is ringing we must consider that music could have been paused just before
6044 // by the music application and behave as if music was active if the last music track was
6045 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07006046 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07006047 mLimitRingtoneVolume) {
François Gaffie43c73442018-11-08 08:21:55 +01006048 volumeDb += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
jiabin9a3361e2019-10-01 09:38:30 -07006049 DeviceTypeSet musicDevice =
François Gaffiec005e562018-11-06 15:04:49 +01006050 mEngine->getOutputDevicesForAttributes(attributes_initializer(AUDIO_USAGE_MEDIA),
6051 nullptr, true /*fromCache*/).types();
François Gaffieaaac0fd2018-11-22 17:56:39 +01006052 auto &musicCurves = getVolumeCurves(AUDIO_STREAM_MUSIC);
jiabin9a3361e2019-10-01 09:38:30 -07006053 float musicVolDb = computeVolume(musicCurves,
6054 musicVolumeSrc,
6055 musicCurves.getVolumeIndex(musicDevice),
6056 musicDevice);
François Gaffieaaac0fd2018-11-22 17:56:39 +01006057 float minVolDb = (musicVolDb > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
6058 musicVolDb : SONIFICATION_HEADSET_VOLUME_MIN_DB;
6059 if (volumeDb > minVolDb) {
6060 volumeDb = minVolDb;
6061 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDb, musicVolDb);
Eric Laurente552edb2014-03-10 17:42:56 -07006062 }
jiabin9a3361e2019-10-01 09:38:30 -07006063 if (!Intersection(deviceTypes, {AUDIO_DEVICE_OUT_BLUETOOTH_A2DP,
6064 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES}).empty()) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07006065 // on A2DP, also ensure notification volume is not too low compared to media when
6066 // intended to be played
François Gaffie43c73442018-11-08 08:21:55 +01006067 if ((volumeDb > -96.0f) &&
François Gaffieaaac0fd2018-11-22 17:56:39 +01006068 (musicVolDb - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDb)) {
jiabin9a3361e2019-10-01 09:38:30 -07006069 ALOGV("%s increasing volume for volume source=%d device=%s from %f to %f",
6070 __func__, volumeSource, dumpDeviceTypes(deviceTypes).c_str(), volumeDb,
François Gaffieaaac0fd2018-11-22 17:56:39 +01006071 musicVolDb - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
6072 volumeDb = musicVolDb - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07006073 }
6074 }
jiabin9a3361e2019-10-01 09:38:30 -07006075 } else if ((Volume::getDeviceForVolume(deviceTypes) != AUDIO_DEVICE_OUT_SPEAKER) ||
François Gaffieaaac0fd2018-11-22 17:56:39 +01006076 (!(volumeSource == alarmVolumeSrc || volumeSource == ringVolumeSrc))) {
François Gaffie43c73442018-11-08 08:21:55 +01006077 volumeDb += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07006078 }
6079 }
6080
François Gaffie43c73442018-11-08 08:21:55 +01006081 return volumeDb;
Eric Laurente552edb2014-03-10 17:42:56 -07006082}
6083
Eric Laurent3839bc02018-07-10 18:33:34 -07006084int AudioPolicyManager::rescaleVolumeIndex(int srcIndex,
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01006085 VolumeSource fromVolumeSource,
6086 VolumeSource toVolumeSource)
Eric Laurent3839bc02018-07-10 18:33:34 -07006087{
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01006088 if (fromVolumeSource == toVolumeSource) {
Eric Laurent3839bc02018-07-10 18:33:34 -07006089 return srcIndex;
6090 }
Francois Gaffie2ffdfce2019-03-12 11:26:42 +01006091 auto &srcCurves = getVolumeCurves(fromVolumeSource);
6092 auto &dstCurves = getVolumeCurves(toVolumeSource);
Eric Laurentf5aa58d2019-02-22 18:20:11 -08006093 float minSrc = (float)srcCurves.getVolumeIndexMin();
6094 float maxSrc = (float)srcCurves.getVolumeIndexMax();
6095 float minDst = (float)dstCurves.getVolumeIndexMin();
6096 float maxDst = (float)dstCurves.getVolumeIndexMax();
Eric Laurent3839bc02018-07-10 18:33:34 -07006097
Revathi Uddarajufe0fb8b2017-07-27 17:05:37 +08006098 // preserve mute request or correct range
6099 if (srcIndex < minSrc) {
6100 if (srcIndex == 0) {
6101 return 0;
6102 }
6103 srcIndex = minSrc;
6104 } else if (srcIndex > maxSrc) {
6105 srcIndex = maxSrc;
6106 }
Eric Laurent3839bc02018-07-10 18:33:34 -07006107 return (int)(minDst + ((srcIndex - minSrc) * (maxDst - minDst)) / (maxSrc - minSrc));
6108}
6109
François Gaffieaaac0fd2018-11-22 17:56:39 +01006110status_t AudioPolicyManager::checkAndSetVolume(IVolumeCurves &curves,
6111 VolumeSource volumeSource,
Eric Laurentf5aa58d2019-02-22 18:20:11 -08006112 int index,
6113 const sp<AudioOutputDescriptor>& outputDesc,
jiabin9a3361e2019-10-01 09:38:30 -07006114 DeviceTypeSet deviceTypes,
Eric Laurentf5aa58d2019-02-22 18:20:11 -08006115 int delayMs,
6116 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07006117{
François Gaffieaaac0fd2018-11-22 17:56:39 +01006118 // do not change actual attributes volume if the attributes is muted
6119 if (outputDesc->isMuted(volumeSource)) {
6120 ALOGVV("%s: volume source %d muted count %d active=%d", __func__, volumeSource,
6121 outputDesc->getMuteCount(volumeSource), outputDesc->isActive(volumeSource));
Eric Laurente552edb2014-03-10 17:42:56 -07006122 return NO_ERROR;
6123 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01006124 VolumeSource callVolSrc = toVolumeSource(AUDIO_STREAM_VOICE_CALL);
6125 VolumeSource btScoVolSrc = toVolumeSource(AUDIO_STREAM_BLUETOOTH_SCO);
6126 bool isVoiceVolSrc = callVolSrc == volumeSource;
6127 bool isBtScoVolSrc = btScoVolSrc == volumeSource;
6128
François Gaffie2110e042015-03-24 08:41:51 +01006129 audio_policy_forced_cfg_t forceUseForComm =
6130 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07006131 // do not change in call volume if bluetooth is connected and vice versa
François Gaffieaaac0fd2018-11-22 17:56:39 +01006132 // if sco and call follow same curves, bypass forceUseForComm
6133 if ((callVolSrc != btScoVolSrc) &&
6134 ((isVoiceVolSrc && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
6135 (isBtScoVolSrc && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO))) {
6136 ALOGV("%s cannot set volume group %d volume with force use = %d for comm", __func__,
6137 volumeSource, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07006138 return INVALID_OPERATION;
6139 }
jiabin9a3361e2019-10-01 09:38:30 -07006140 if (deviceTypes.empty()) {
6141 deviceTypes = outputDesc->devices().types();
Eric Laurentc75307b2015-03-17 15:29:32 -07006142 }
Eric Laurent275e8e92014-11-30 15:14:47 -08006143
jiabin9a3361e2019-10-01 09:38:30 -07006144 float volumeDb = computeVolume(curves, volumeSource, index, deviceTypes);
6145 if (outputDesc->isFixedVolume(deviceTypes) ||
HW Leeda7581e2018-05-22 18:31:34 +08006146 // Force VoIP volume to max for bluetooth SCO
jiabin9a3361e2019-10-01 09:38:30 -07006147
6148 ((isVoiceVolSrc || isBtScoVolSrc) &&
6149 isSingleDeviceType(deviceTypes, audio_is_bluetooth_out_sco_device))) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07006150 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08006151 }
jiabin9a3361e2019-10-01 09:38:30 -07006152 outputDesc->setVolume(
6153 volumeDb, volumeSource, curves.getStreamTypes(), deviceTypes, delayMs, force);
Eric Laurentc75307b2015-03-17 15:29:32 -07006154
François Gaffieaaac0fd2018-11-22 17:56:39 +01006155 if (isVoiceVolSrc || isBtScoVolSrc) {
Eric Laurente552edb2014-03-10 17:42:56 -07006156 float voiceVolume;
Eric Laurentfad001d2019-06-11 19:17:57 -07006157 // 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 +01006158 if (isVoiceVolSrc) {
6159 voiceVolume = (float)index/(float)curves.getVolumeIndexMax();
Eric Laurente552edb2014-03-10 17:42:56 -07006160 } else {
Eric Laurentfad001d2019-06-11 19:17:57 -07006161 voiceVolume = index == 0 ? 0.0 : 1.0;
Eric Laurente552edb2014-03-10 17:42:56 -07006162 }
Eric Laurent18fba842016-03-31 14:41:26 -07006163 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07006164 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
6165 mLastVoiceVolume = voiceVolume;
6166 }
6167 }
Eric Laurente552edb2014-03-10 17:42:56 -07006168 return NO_ERROR;
6169}
6170
Eric Laurentc75307b2015-03-17 15:29:32 -07006171void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
jiabin9a3361e2019-10-01 09:38:30 -07006172 const DeviceTypeSet& deviceTypes,
6173 int delayMs,
6174 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07006175{
jiabincd510522020-01-22 09:40:55 -08006176 ALOGVV("applyStreamVolumes() for device %s", dumpDeviceTypes(deviceTypes).c_str());
François Gaffieaaac0fd2018-11-22 17:56:39 +01006177 for (const auto &volumeGroup : mEngine->getVolumeGroups()) {
6178 auto &curves = getVolumeCurves(toVolumeSource(volumeGroup));
6179 checkAndSetVolume(curves, toVolumeSource(volumeGroup),
jiabin9a3361e2019-10-01 09:38:30 -07006180 curves.getVolumeIndex(deviceTypes),
6181 outputDesc, deviceTypes, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07006182 }
6183}
6184
François Gaffiec005e562018-11-06 15:04:49 +01006185void AudioPolicyManager::setStrategyMute(product_strategy_t strategy,
6186 bool on,
6187 const sp<AudioOutputDescriptor>& outputDesc,
6188 int delayMs,
jiabin9a3361e2019-10-01 09:38:30 -07006189 DeviceTypeSet deviceTypes)
Eric Laurente552edb2014-03-10 17:42:56 -07006190{
François Gaffieaaac0fd2018-11-22 17:56:39 +01006191 std::vector<VolumeSource> sourcesToMute;
6192 for (auto attributes: mEngine->getAllAttributesForProductStrategy(strategy)) {
6193 ALOGVV("%s() attributes %s, mute %d, output ID %d", __func__,
6194 toString(attributes).c_str(), on, outputDesc->getId());
6195 VolumeSource source = toVolumeSource(attributes);
6196 if (std::find(begin(sourcesToMute), end(sourcesToMute), source) == end(sourcesToMute)) {
6197 sourcesToMute.push_back(source);
6198 }
Eric Laurente552edb2014-03-10 17:42:56 -07006199 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01006200 for (auto source : sourcesToMute) {
jiabin9a3361e2019-10-01 09:38:30 -07006201 setVolumeSourceMute(source, on, outputDesc, delayMs, deviceTypes);
François Gaffieaaac0fd2018-11-22 17:56:39 +01006202 }
6203
Eric Laurente552edb2014-03-10 17:42:56 -07006204}
6205
François Gaffieaaac0fd2018-11-22 17:56:39 +01006206void AudioPolicyManager::setVolumeSourceMute(VolumeSource volumeSource,
6207 bool on,
6208 const sp<AudioOutputDescriptor>& outputDesc,
6209 int delayMs,
jiabin9a3361e2019-10-01 09:38:30 -07006210 DeviceTypeSet deviceTypes)
Eric Laurente552edb2014-03-10 17:42:56 -07006211{
jiabin9a3361e2019-10-01 09:38:30 -07006212 if (deviceTypes.empty()) {
6213 deviceTypes = outputDesc->devices().types();
Eric Laurente552edb2014-03-10 17:42:56 -07006214 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01006215 auto &curves = getVolumeCurves(volumeSource);
Eric Laurente552edb2014-03-10 17:42:56 -07006216 if (on) {
François Gaffieaaac0fd2018-11-22 17:56:39 +01006217 if (!outputDesc->isMuted(volumeSource)) {
Eric Laurentf5aa58d2019-02-22 18:20:11 -08006218 if (curves.canBeMuted() &&
François Gaffieaaac0fd2018-11-22 17:56:39 +01006219 (volumeSource != toVolumeSource(AUDIO_STREAM_ENFORCED_AUDIBLE) ||
6220 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) ==
6221 AUDIO_POLICY_FORCE_NONE))) {
jiabin9a3361e2019-10-01 09:38:30 -07006222 checkAndSetVolume(curves, volumeSource, 0, outputDesc, deviceTypes, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07006223 }
6224 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01006225 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not
6226 // ignored
6227 outputDesc->incMuteCount(volumeSource);
Eric Laurente552edb2014-03-10 17:42:56 -07006228 } else {
François Gaffieaaac0fd2018-11-22 17:56:39 +01006229 if (!outputDesc->isMuted(volumeSource)) {
6230 ALOGV("%s unmuting non muted attributes!", __func__);
Eric Laurente552edb2014-03-10 17:42:56 -07006231 return;
6232 }
François Gaffieaaac0fd2018-11-22 17:56:39 +01006233 if (outputDesc->decMuteCount(volumeSource) == 0) {
6234 checkAndSetVolume(curves, volumeSource,
jiabin9a3361e2019-10-01 09:38:30 -07006235 curves.getVolumeIndex(deviceTypes),
Eric Laurentc75307b2015-03-17 15:29:32 -07006236 outputDesc,
jiabin9a3361e2019-10-01 09:38:30 -07006237 deviceTypes,
Eric Laurente552edb2014-03-10 17:42:56 -07006238 delayMs);
6239 }
6240 }
6241}
6242
François Gaffie53615e22015-03-19 09:24:12 +01006243bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
6244{
François Gaffiec005e562018-11-06 15:04:49 +01006245 // has flags that map to a stream type?
Eric Laurente83b55d2014-11-14 10:06:21 -08006246 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
6247 return true;
6248 }
6249
6250 // has known usage?
6251 switch (paa->usage) {
6252 case AUDIO_USAGE_UNKNOWN:
6253 case AUDIO_USAGE_MEDIA:
6254 case AUDIO_USAGE_VOICE_COMMUNICATION:
6255 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
6256 case AUDIO_USAGE_ALARM:
6257 case AUDIO_USAGE_NOTIFICATION:
6258 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
6259 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
6260 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
6261 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
6262 case AUDIO_USAGE_NOTIFICATION_EVENT:
6263 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
6264 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
6265 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
6266 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08006267 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08006268 case AUDIO_USAGE_ASSISTANT:
Eric Laurent21777f82019-12-06 18:12:06 -08006269 case AUDIO_USAGE_CALL_ASSISTANT:
Hayden Gomes524159d2019-12-23 14:41:47 -08006270 case AUDIO_USAGE_EMERGENCY:
6271 case AUDIO_USAGE_SAFETY:
6272 case AUDIO_USAGE_VEHICLE_STATUS:
6273 case AUDIO_USAGE_ANNOUNCEMENT:
Eric Laurente83b55d2014-11-14 10:06:21 -08006274 break;
6275 default:
6276 return false;
6277 }
6278 return true;
6279}
6280
François Gaffie2110e042015-03-24 08:41:51 +01006281audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
6282{
6283 return mEngine->getForceUse(usage);
6284}
6285
6286bool AudioPolicyManager::isInCall()
6287{
6288 return isStateInCall(mEngine->getPhoneState());
6289}
6290
6291bool AudioPolicyManager::isStateInCall(int state)
6292{
6293 return is_state_in_call(state);
6294}
6295
Eric Laurent74b71512019-11-06 17:21:57 -08006296bool AudioPolicyManager::isCallAudioAccessible()
6297{
6298 audio_mode_t mode = mEngine->getPhoneState();
6299 return (mode == AUDIO_MODE_IN_CALL)
6300 || (mode == AUDIO_MODE_IN_COMMUNICATION)
6301 || (mode == AUDIO_MODE_CALL_SCREEN);
6302}
6303
Eric Laurentd60560a2015-04-10 11:31:20 -07006304void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
6305{
6306 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
Eric Laurent3e6c7e12018-07-27 17:09:23 -07006307 sp<SourceClientDescriptor> sourceDesc = mAudioSources.valueAt(i);
6308 if (sourceDesc->srcDevice()->equals(deviceDesc)) {
6309 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->portId());
6310 stopAudioSource(sourceDesc->portId());
Eric Laurentd60560a2015-04-10 11:31:20 -07006311 }
6312 }
6313
6314 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
6315 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
6316 bool release = false;
6317 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
6318 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
6319 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
6320 source->ext.device.type == deviceDesc->type()) {
6321 release = true;
6322 }
6323 }
6324 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
6325 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
6326 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
6327 sink->ext.device.type == deviceDesc->type()) {
6328 release = true;
6329 }
6330 }
6331 if (release) {
François Gaffieafd4cea2019-11-18 15:50:22 +01006332 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->getHandle());
6333 releaseAudioPatch(patchDesc->getHandle(), patchDesc->getUid());
Eric Laurentd60560a2015-04-10 11:31:20 -07006334 }
6335 }
Francois Gaffie716e1432019-01-14 16:58:59 +01006336
Francois Gaffieba2cf0f2018-12-12 16:40:25 +01006337 mInputs.clearSessionRoutesForDevice(deviceDesc);
6338
Francois Gaffie716e1432019-01-14 16:58:59 +01006339 mHwModules.cleanUpForDevice(deviceDesc);
Eric Laurentd60560a2015-04-10 11:31:20 -07006340}
6341
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006342void AudioPolicyManager::modifySurroundFormats(
6343 const sp<DeviceDescriptor>& devDesc, FormatVector *formatsPtr) {
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006344 std::unordered_set<audio_format_t> enforcedSurround(
6345 devDesc->encodedFormats().begin(), devDesc->encodedFormats().end());
Mikhail Naganov100f0122018-11-29 11:22:16 -08006346 std::unordered_set<audio_format_t> allSurround; // A flat set of all known surround formats
6347 for (const auto& pair : mConfig.getSurroundFormats()) {
6348 allSurround.insert(pair.first);
6349 for (const auto& subformat : pair.second) allSurround.insert(subformat);
6350 }
Phil Burk09bc4612016-02-24 15:58:15 -08006351
6352 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
6353 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07006354 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Mikhail Naganov100f0122018-11-29 11:22:16 -08006355 // This is the resulting set of formats depending on the surround mode:
6356 // 'all surround' = allSurround
6357 // 'enforced surround' = enforcedSurround [may include IEC69137 which isn't raw surround fmt]
6358 // 'non-surround' = not in 'all surround' and not in 'enforced surround'
6359 // 'manual surround' = mManualSurroundFormats
6360 // AUTO: formats v 'enforced surround'
6361 // ALWAYS: formats v 'all surround' v 'enforced surround'
6362 // NEVER: formats ^ 'non-surround'
6363 // MANUAL: formats ^ ('non-surround' v 'manual surround' v (IEC69137 ^ 'enforced surround'))
Phil Burk09bc4612016-02-24 15:58:15 -08006364
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006365 std::unordered_set<audio_format_t> formatSet;
6366 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL
6367 || forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08006368 // formatSet is (formats ^ 'non-surround')
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006369 for (auto formatIter = formatsPtr->begin(); formatIter != formatsPtr->end(); ++formatIter) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08006370 if (allSurround.count(*formatIter) == 0 && enforcedSurround.count(*formatIter) == 0) {
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006371 formatSet.insert(*formatIter);
6372 }
6373 }
6374 } else {
6375 formatSet.insert(formatsPtr->begin(), formatsPtr->end());
6376 }
Mikhail Naganov100f0122018-11-29 11:22:16 -08006377 formatsPtr->clear(); // Re-filled from the formatSet at the end.
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006378
jiabin81772902018-04-02 17:52:27 -07006379 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
Mikhail Naganov100f0122018-11-29 11:22:16 -08006380 formatSet.insert(mManualSurroundFormats.begin(), mManualSurroundFormats.end());
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006381 // Enable IEC61937 when in MANUAL mode if it's enforced for this device.
6382 if (enforcedSurround.count(AUDIO_FORMAT_IEC61937) != 0) {
6383 formatSet.insert(AUDIO_FORMAT_IEC61937);
Phil Burk09bc4612016-02-24 15:58:15 -08006384 }
Mikhail Naganov100f0122018-11-29 11:22:16 -08006385 } else if (forceUse != AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) { // AUTO or ALWAYS
6386 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
6387 formatSet.insert(allSurround.begin(), allSurround.end());
Phil Burk07ac1142016-03-25 13:39:29 -07006388 }
Mikhail Naganov100f0122018-11-29 11:22:16 -08006389 formatSet.insert(enforcedSurround.begin(), enforcedSurround.end());
Phil Burk09bc4612016-02-24 15:58:15 -08006390 }
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006391 for (const auto& format : formatSet) {
jiabin06e4bab2019-07-29 10:13:34 -07006392 formatsPtr->push_back(format);
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006393 }
Phil Burk0709b0a2016-03-31 12:54:57 -07006394}
6395
jiabin06e4bab2019-07-29 10:13:34 -07006396void AudioPolicyManager::modifySurroundChannelMasks(ChannelMaskSet *channelMasksPtr) {
6397 ChannelMaskSet &channelMasks = *channelMasksPtr;
Phil Burk0709b0a2016-03-31 12:54:57 -07006398 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
6399 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
6400
6401 // If NEVER, then remove support for channelMasks > stereo.
6402 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
jiabin06e4bab2019-07-29 10:13:34 -07006403 for (auto it = channelMasks.begin(); it != channelMasks.end();) {
6404 audio_channel_mask_t channelMask = *it;
Phil Burk0709b0a2016-03-31 12:54:57 -07006405 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
6406 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
jiabin06e4bab2019-07-29 10:13:34 -07006407 it = channelMasks.erase(it);
Phil Burk0709b0a2016-03-31 12:54:57 -07006408 } else {
jiabin06e4bab2019-07-29 10:13:34 -07006409 ++it;
Phil Burk0709b0a2016-03-31 12:54:57 -07006410 }
6411 }
jiabin81772902018-04-02 17:52:27 -07006412 // If ALWAYS or MANUAL, then make sure we at least support 5.1
6413 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS
6414 || forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_MANUAL) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006415 bool supports5dot1 = false;
6416 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08006417 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07006418 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
6419 supports5dot1 = true;
6420 break;
6421 }
6422 }
6423 // If not then add 5.1 support.
6424 if (!supports5dot1) {
jiabin06e4bab2019-07-29 10:13:34 -07006425 channelMasks.insert(AUDIO_CHANNEL_OUT_5POINT1);
Mikhail Naganov100f0122018-11-29 11:22:16 -08006426 ALOGI("%s: force MANUAL or ALWAYS, so adding channelMask for 5.1 surround", __func__);
Phil Burk0709b0a2016-03-31 12:54:57 -07006427 }
Phil Burk09bc4612016-02-24 15:58:15 -08006428 }
6429}
6430
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006431void AudioPolicyManager::updateAudioProfiles(const sp<DeviceDescriptor>& devDesc,
Phil Burk00eeb322016-03-31 12:41:00 -07006432 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01006433 AudioProfileVector &profiles)
6434{
6435 String8 reply;
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006436 audio_devices_t device = devDesc->type();
Phil Burk0709b0a2016-03-31 12:54:57 -07006437
François Gaffie112b0af2015-11-19 16:13:25 +01006438 // Format MUST be checked first to update the list of AudioProfile
6439 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07006440 reply = mpClientInterface->getParameters(
6441 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
jiabin81772902018-04-02 17:52:27 -07006442 ALOGV("%s: supported formats %d, %s", __FUNCTION__, ioHandle, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006443 AudioParameter repliedParameters(reply);
6444 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006445 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01006446 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
6447 return;
6448 }
Phil Burk09bc4612016-02-24 15:58:15 -08006449 FormatVector formats = formatsFromString(reply.string());
Mikhail Naganov100f0122018-11-29 11:22:16 -08006450 if (device == AUDIO_DEVICE_OUT_HDMI
6451 || isDeviceOfModule(devDesc, AUDIO_HARDWARE_MODULE_ID_MSD)) {
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006452 modifySurroundFormats(devDesc, &formats);
Phil Burk00eeb322016-03-31 12:41:00 -07006453 }
jiabin3e277cc2019-09-10 14:27:34 -07006454 addProfilesForFormats(profiles, formats);
François Gaffie112b0af2015-11-19 16:13:25 +01006455 }
François Gaffie112b0af2015-11-19 16:13:25 +01006456
Mikhail Naganovcf84e592017-12-07 11:25:11 -08006457 for (audio_format_t format : profiles.getSupportedFormats()) {
jiabin06e4bab2019-07-29 10:13:34 -07006458 ChannelMaskSet channelMasks;
6459 SampleRateSet samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01006460 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07006461 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01006462
6463 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07006464 reply = mpClientInterface->getParameters(
6465 ioHandle,
6466 requestedParameters.toString() + ";" +
6467 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01006468 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006469 AudioParameter repliedParameters(reply);
6470 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006471 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08006472 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01006473 }
6474 }
6475 if (profiles.hasDynamicChannelsFor(format)) {
6476 reply = mpClientInterface->getParameters(ioHandle,
6477 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07006478 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01006479 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08006480 AudioParameter repliedParameters(reply);
6481 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07006482 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08006483 channelMasks = channelMasksFromString(reply.string());
Mikhail Naganov100f0122018-11-29 11:22:16 -08006484 if (device == AUDIO_DEVICE_OUT_HDMI
6485 || isDeviceOfModule(devDesc, AUDIO_HARDWARE_MODULE_ID_MSD)) {
Mikhail Naganovd5e18052018-11-30 14:55:45 -08006486 modifySurroundChannelMasks(&channelMasks);
Phil Burk0709b0a2016-03-31 12:54:57 -07006487 }
François Gaffie112b0af2015-11-19 16:13:25 +01006488 }
6489 }
jiabin3e277cc2019-09-10 14:27:34 -07006490 addDynamicAudioProfileAndSort(
6491 profiles, new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01006492 }
6493}
Eric Laurentd60560a2015-04-10 11:31:20 -07006494
Mikhail Naganovdc769682018-05-04 15:34:08 -07006495status_t AudioPolicyManager::installPatch(const char *caller,
6496 audio_patch_handle_t *patchHandle,
6497 AudioIODescriptorInterface *ioDescriptor,
6498 const struct audio_patch *patch,
6499 int delayMs)
6500{
6501 ssize_t index = mAudioPatches.indexOfKey(
6502 patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE ?
6503 *patchHandle : ioDescriptor->getPatchHandle());
6504 sp<AudioPatch> patchDesc;
6505 status_t status = installPatch(
6506 caller, index, patchHandle, patch, delayMs, mUidCached, &patchDesc);
6507 if (status == NO_ERROR) {
François Gaffieafd4cea2019-11-18 15:50:22 +01006508 ioDescriptor->setPatchHandle(patchDesc->getHandle());
Mikhail Naganovdc769682018-05-04 15:34:08 -07006509 }
6510 return status;
6511}
6512
6513status_t AudioPolicyManager::installPatch(const char *caller,
6514 ssize_t index,
6515 audio_patch_handle_t *patchHandle,
6516 const struct audio_patch *patch,
6517 int delayMs,
6518 uid_t uid,
6519 sp<AudioPatch> *patchDescPtr)
6520{
6521 sp<AudioPatch> patchDesc;
6522 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
6523 if (index >= 0) {
6524 patchDesc = mAudioPatches.valueAt(index);
François Gaffieafd4cea2019-11-18 15:50:22 +01006525 afPatchHandle = patchDesc->getAfHandle();
Mikhail Naganovdc769682018-05-04 15:34:08 -07006526 }
6527
6528 status_t status = mpClientInterface->createAudioPatch(patch, &afPatchHandle, delayMs);
6529 ALOGV("%s() AF::createAudioPatch returned %d patchHandle %d num_sources %d num_sinks %d",
6530 caller, status, afPatchHandle, patch->num_sources, patch->num_sinks);
6531 if (status == NO_ERROR) {
6532 if (index < 0) {
6533 patchDesc = new AudioPatch(patch, uid);
François Gaffieafd4cea2019-11-18 15:50:22 +01006534 addAudioPatch(patchDesc->getHandle(), patchDesc);
Mikhail Naganovdc769682018-05-04 15:34:08 -07006535 } else {
6536 patchDesc->mPatch = *patch;
6537 }
François Gaffieafd4cea2019-11-18 15:50:22 +01006538 patchDesc->setAfHandle(afPatchHandle);
Mikhail Naganovdc769682018-05-04 15:34:08 -07006539 if (patchHandle) {
François Gaffieafd4cea2019-11-18 15:50:22 +01006540 *patchHandle = patchDesc->getHandle();
Mikhail Naganovdc769682018-05-04 15:34:08 -07006541 }
6542 nextAudioPortGeneration();
6543 mpClientInterface->onAudioPatchListUpdate();
6544 }
6545 if (patchDescPtr) *patchDescPtr = patchDesc;
6546 return status;
6547}
6548
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08006549} // namespace android