blob: 369f620a1564733db21ff476b7476a7c0a26375e [file] [log] [blame]
Eric Laurente552edb2014-03-10 17:42:56 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -070017#define LOG_TAG "APM_AudioPolicyManager"
Eric Laurente552edb2014-03-10 17:42:56 -070018//#define LOG_NDEBUG 0
19
20//#define VERY_VERBOSE_LOGGING
21#ifdef VERY_VERBOSE_LOGGING
22#define ALOGVV ALOGV
23#else
24#define ALOGVV(a...) do { } while(0)
25#endif
26
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +090027#define AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH 128
28#define AUDIO_POLICY_XML_CONFIG_FILE_NAME "audio_policy_configuration.xml"
Aniket Kumar Lata2ad79392018-01-31 20:26:59 -080029#define AUDIO_POLICY_A2DP_OFFLOAD_XML_CONFIG_FILE_NAME "audio_policy_a2dp_offload_configuration.xml"
François Gaffief4ad6e52015-11-19 16:59:57 +010030
Eric Laurentd4692962014-05-05 18:13:44 -070031#include <inttypes.h>
Eric Laurente552edb2014-03-10 17:42:56 -070032#include <math.h>
Eric Laurentd4692962014-05-05 18:13:44 -070033
François Gaffie2110e042015-03-24 08:41:51 +010034#include <AudioPolicyManagerInterface.h>
35#include <AudioPolicyEngineInstance.h>
Eric Laurente552edb2014-03-10 17:42:56 -070036#include <cutils/properties.h>
Eric Laurentd4692962014-05-05 18:13:44 -070037#include <utils/Log.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070038#include <media/AudioParameter.h>
Eric Laurente83b55d2014-11-14 10:06:21 -080039#include <media/AudioPolicyHelper.h>
Eric Laurentdf3dc7e2014-07-27 18:39:40 -070040#include <soundtrigger/SoundTrigger.h>
Mikhail Naganovcbc8f612016-10-11 18:05:13 -070041#include <system/audio.h>
Mikhail Naganov9ee05402016-10-13 15:58:17 -070042#include <audio_policy_conf.h>
Eric Laurentd4692962014-05-05 18:13:44 -070043#include "AudioPolicyManager.h"
François Gaffied1ab2bd2015-12-02 18:20:06 +010044#ifndef USE_XML_AUDIO_POLICY_CONF
François Gaffie53615e22015-03-19 09:24:12 +010045#include <ConfigParsingUtils.h>
François Gaffied1ab2bd2015-12-02 18:20:06 +010046#include <StreamDescriptor.h>
François Gaffief4ad6e52015-11-19 16:59:57 +010047#endif
François Gaffied1ab2bd2015-12-02 18:20:06 +010048#include <Serializer.h>
François Gaffiea8ecc2c2015-11-09 16:10:40 +010049#include "TypeConverter.h"
François Gaffie53615e22015-03-19 09:24:12 +010050#include <policy.h>
Eric Laurente552edb2014-03-10 17:42:56 -070051
Eric Laurent3b73df72014-03-11 09:06:29 -070052namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070053
Eric Laurentdc462862016-07-19 12:29:53 -070054//FIXME: workaround for truncated touch sounds
55// to be removed when the problem is handled by system UI
56#define TOUCH_SOUND_FIXED_DELAY_MS 100
Jean-Michel Trivi719a9872017-08-05 13:51:35 -070057
58// Largest difference in dB on earpiece in call between the voice volume and another
59// media / notification / system volume.
60constexpr float IN_CALL_EARPIECE_HEADROOM_DB = 3.f;
61
Eric Laurente552edb2014-03-10 17:42:56 -070062// ----------------------------------------------------------------------------
63// AudioPolicyInterface implementation
64// ----------------------------------------------------------------------------
65
Eric Laurente0720872014-03-11 09:30:41 -070066status_t AudioPolicyManager::setDeviceConnectionState(audio_devices_t device,
Paul McLeane743a472015-01-28 11:07:31 -080067 audio_policy_dev_state_t state,
68 const char *device_address,
69 const char *device_name)
Eric Laurente552edb2014-03-10 17:42:56 -070070{
jiabina7b43792018-02-15 16:04:46 -080071 status_t status = setDeviceConnectionStateInt(device, state, device_address, device_name);
72 nextAudioPortGeneration();
73 return status;
Eric Laurentc73ca6e2014-12-12 14:34:22 -080074}
75
François Gaffie44481e72016-04-20 07:49:57 +020076void AudioPolicyManager::broadcastDeviceConnectionState(audio_devices_t device,
77 audio_policy_dev_state_t state,
78 const String8 &device_address)
79{
80 AudioParameter param(device_address);
81 const String8 key(state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE ?
Mikhail Naganov388360c2016-10-17 17:09:41 -070082 AudioParameter::keyStreamConnect : AudioParameter::keyStreamDisconnect);
François Gaffie44481e72016-04-20 07:49:57 +020083 param.addInt(key, device);
84 mpClientInterface->setParameters(AUDIO_IO_HANDLE_NONE, param.toString());
85}
86
Eric Laurentc73ca6e2014-12-12 14:34:22 -080087status_t AudioPolicyManager::setDeviceConnectionStateInt(audio_devices_t device,
Eric Laurenta1d525f2015-01-29 13:36:45 -080088 audio_policy_dev_state_t state,
Paul McLeane743a472015-01-28 11:07:31 -080089 const char *device_address,
90 const char *device_name)
Eric Laurentc73ca6e2014-12-12 14:34:22 -080091{
Paul McLeane743a472015-01-28 11:07:31 -080092 ALOGV("setDeviceConnectionStateInt() device: 0x%X, state %d, address %s name %s",
Mikhail Naganov7e22e942017-12-07 10:04:29 -080093 device, state, device_address, device_name);
Eric Laurente552edb2014-03-10 17:42:56 -070094
95 // connect/disconnect only 1 device at a time
96 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
97
François Gaffie53615e22015-03-19 09:24:12 +010098 sp<DeviceDescriptor> devDesc =
99 mHwModules.getDeviceDescriptor(device, device_address, device_name);
Paul McLeane743a472015-01-28 11:07:31 -0800100
Eric Laurente552edb2014-03-10 17:42:56 -0700101 // handle output devices
102 if (audio_is_output_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700103 SortedVector <audio_io_handle_t> outputs;
104
Eric Laurent3a4311c2014-03-17 12:00:47 -0700105 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
106
Eric Laurente552edb2014-03-10 17:42:56 -0700107 // save a copy of the opened output descriptors before any output is opened or closed
108 // by checkOutputsForDevice(). This will be needed by checkOutputForAllStrategies()
109 mPreviousOutputs = mOutputs;
Eric Laurente552edb2014-03-10 17:42:56 -0700110 switch (state)
111 {
112 // handle output device connection
Eric Laurent3ae5f312015-02-03 17:12:08 -0800113 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700114 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700115 ALOGW("setDeviceConnectionState() device already connected: %x", device);
116 return INVALID_OPERATION;
117 }
118 ALOGV("setDeviceConnectionState() connecting device %x", device);
119
Eric Laurente552edb2014-03-10 17:42:56 -0700120 // register new device as available
Eric Laurent3a4311c2014-03-17 12:00:47 -0700121 index = mAvailableOutputDevices.add(devDesc);
122 if (index >= 0) {
François Gaffie53615e22015-03-19 09:24:12 +0100123 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurentcf817a22014-08-04 20:36:31 -0700124 if (module == 0) {
125 ALOGD("setDeviceConnectionState() could not find HW module for device %08x",
126 device);
127 mAvailableOutputDevices.remove(devDesc);
128 return INVALID_OPERATION;
129 }
Paul McLeane743a472015-01-28 11:07:31 -0800130 mAvailableOutputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700131 } else {
132 return NO_MEMORY;
Eric Laurente552edb2014-03-10 17:42:56 -0700133 }
134
François Gaffie44481e72016-04-20 07:49:57 +0200135 // Before checking outputs, broadcast connect event to allow HAL to retrieve dynamic
136 // parameters on newly connected devices (instead of opening the outputs...)
137 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
138
Eric Laurenta1d525f2015-01-29 13:36:45 -0800139 if (checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress) != NO_ERROR) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700140 mAvailableOutputDevices.remove(devDesc);
François Gaffie44481e72016-04-20 07:49:57 +0200141
142 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
143 devDesc->mAddress);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700144 return INVALID_OPERATION;
145 }
François Gaffie2110e042015-03-24 08:41:51 +0100146 // Propagate device availability to Engine
147 mEngine->setDeviceConnectionState(devDesc, state);
148
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -0700149 // outputs should never be empty here
150 ALOG_ASSERT(outputs.size() != 0, "setDeviceConnectionState():"
151 "checkOutputsForDevice() returned no outputs but status OK");
152 ALOGV("setDeviceConnectionState() checkOutputsForDevice() returned %zu outputs",
153 outputs.size());
Eric Laurent3ae5f312015-02-03 17:12:08 -0800154
Eric Laurent3ae5f312015-02-03 17:12:08 -0800155 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700156 // handle output device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700157 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700158 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700159 ALOGW("setDeviceConnectionState() device not connected: %x", device);
160 return INVALID_OPERATION;
161 }
162
Paul McLean5c477aa2014-08-20 16:47:57 -0700163 ALOGV("setDeviceConnectionState() disconnecting output device %x", device);
164
Paul McLeane743a472015-01-28 11:07:31 -0800165 // Send Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200166 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700167
Eric Laurente552edb2014-03-10 17:42:56 -0700168 // remove device from available output devices
Eric Laurent3a4311c2014-03-17 12:00:47 -0700169 mAvailableOutputDevices.remove(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700170
Eric Laurenta1d525f2015-01-29 13:36:45 -0800171 checkOutputsForDevice(devDesc, state, outputs, devDesc->mAddress);
François Gaffie2110e042015-03-24 08:41:51 +0100172
173 // Propagate device availability to Engine
174 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurente552edb2014-03-10 17:42:56 -0700175 } break;
176
177 default:
178 ALOGE("setDeviceConnectionState() invalid state: %x", state);
179 return BAD_VALUE;
180 }
181
Eric Laurent3a4311c2014-03-17 12:00:47 -0700182 // checkA2dpSuspend must run before checkOutputForAllStrategies so that A2DP
183 // output is suspended before any tracks are moved to it
Eric Laurente552edb2014-03-10 17:42:56 -0700184 checkA2dpSuspend();
185 checkOutputForAllStrategies();
186 // outputs must be closed after checkOutputForAllStrategies() is executed
187 if (!outputs.isEmpty()) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800188 for (audio_io_handle_t output : outputs) {
189 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700190 // close unused outputs after device disconnection or direct outputs that have been
191 // opened by checkOutputsForDevice() to query dynamic parameters
Eric Laurent3b73df72014-03-11 09:06:29 -0700192 if ((state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) ||
Eric Laurente552edb2014-03-10 17:42:56 -0700193 (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) != 0) &&
194 (desc->mDirectOpenCount == 0))) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800195 closeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -0700196 }
197 }
Eric Laurent3a4311c2014-03-17 12:00:47 -0700198 // check again after closing A2DP output to reset mA2dpSuspended if needed
199 checkA2dpSuspend();
Eric Laurente552edb2014-03-10 17:42:56 -0700200 }
201
202 updateDevicesAndOutputs();
Eric Laurent87ffa392015-05-22 10:32:38 -0700203 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700204 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
205 updateCallRouting(newDevice);
206 }
Eric Laurente552edb2014-03-10 17:42:56 -0700207 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700208 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
209 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (desc != mPrimaryOutput)) {
210 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700211 // do not force device change on duplicated output because if device is 0, it will
212 // also force a device 0 for the two outputs it is duplicated to which may override
213 // a valid device selection on those outputs.
Eric Laurentc75307b2015-03-17 15:29:32 -0700214 bool force = !desc->isDuplicated()
François Gaffie53615e22015-03-19 09:24:12 +0100215 && (!device_distinguishes_on_address(device)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700216 // always force when disconnecting (a non-duplicated device)
217 || (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE));
Eric Laurentc75307b2015-03-17 15:29:32 -0700218 setOutputDevice(desc, newDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700219 }
Eric Laurente552edb2014-03-10 17:42:56 -0700220 }
221
Eric Laurentd60560a2015-04-10 11:31:20 -0700222 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
223 cleanUpForDevice(devDesc);
224 }
225
Eric Laurent72aa32f2014-05-30 18:51:48 -0700226 mpClientInterface->onAudioPortListUpdate();
Eric Laurentb71e58b2014-05-29 16:08:11 -0700227 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700228 } // end if is output device
229
Eric Laurente552edb2014-03-10 17:42:56 -0700230 // handle input devices
231 if (audio_is_input_device(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -0700232 SortedVector <audio_io_handle_t> inputs;
233
Eric Laurent3a4311c2014-03-17 12:00:47 -0700234 ssize_t index = mAvailableInputDevices.indexOf(devDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700235 switch (state)
236 {
237 // handle input device connection
Eric Laurent3b73df72014-03-11 09:06:29 -0700238 case AUDIO_POLICY_DEVICE_STATE_AVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700239 if (index >= 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700240 ALOGW("setDeviceConnectionState() device already connected: %d", device);
241 return INVALID_OPERATION;
242 }
François Gaffie53615e22015-03-19 09:24:12 +0100243 sp<HwModule> module = mHwModules.getModuleForDevice(device);
Eric Laurent6a94d692014-05-20 11:18:06 -0700244 if (module == NULL) {
245 ALOGW("setDeviceConnectionState(): could not find HW module for device %08x",
246 device);
247 return INVALID_OPERATION;
248 }
François Gaffie44481e72016-04-20 07:49:57 +0200249
250 // Before checking intputs, broadcast connect event to allow HAL to retrieve dynamic
251 // parameters on newly connected devices (instead of opening the inputs...)
252 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
253
Paul McLean9080a4c2015-06-18 08:24:02 -0700254 if (checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress) != NO_ERROR) {
François Gaffie44481e72016-04-20 07:49:57 +0200255 broadcastDeviceConnectionState(device, AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
256 devDesc->mAddress);
Eric Laurentd4692962014-05-05 18:13:44 -0700257 return INVALID_OPERATION;
258 }
259
Eric Laurent3a4311c2014-03-17 12:00:47 -0700260 index = mAvailableInputDevices.add(devDesc);
261 if (index >= 0) {
Paul McLeane743a472015-01-28 11:07:31 -0800262 mAvailableInputDevices[index]->attach(module);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700263 } else {
264 return NO_MEMORY;
265 }
Eric Laurent3ae5f312015-02-03 17:12:08 -0800266
François Gaffie2110e042015-03-24 08:41:51 +0100267 // Propagate device availability to Engine
268 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700269 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700270
271 // handle input device disconnection
Eric Laurent3b73df72014-03-11 09:06:29 -0700272 case AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE: {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700273 if (index < 0) {
Eric Laurente552edb2014-03-10 17:42:56 -0700274 ALOGW("setDeviceConnectionState() device not connected: %d", device);
275 return INVALID_OPERATION;
276 }
Paul McLean5c477aa2014-08-20 16:47:57 -0700277
278 ALOGV("setDeviceConnectionState() disconnecting input device %x", device);
279
280 // Set Disconnect to HALs
François Gaffie44481e72016-04-20 07:49:57 +0200281 broadcastDeviceConnectionState(device, state, devDesc->mAddress);
Paul McLean5c477aa2014-08-20 16:47:57 -0700282
Paul McLean9080a4c2015-06-18 08:24:02 -0700283 checkInputsForDevice(devDesc, state, inputs, devDesc->mAddress);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700284 mAvailableInputDevices.remove(devDesc);
Paul McLean5c477aa2014-08-20 16:47:57 -0700285
François Gaffie2110e042015-03-24 08:41:51 +0100286 // Propagate device availability to Engine
287 mEngine->setDeviceConnectionState(devDesc, state);
Eric Laurentd4692962014-05-05 18:13:44 -0700288 } break;
Eric Laurente552edb2014-03-10 17:42:56 -0700289
290 default:
291 ALOGE("setDeviceConnectionState() invalid state: %x", state);
292 return BAD_VALUE;
293 }
294
Eric Laurentd4692962014-05-05 18:13:44 -0700295 closeAllInputs();
Eric Laurent5f5fca52016-08-04 11:48:57 -0700296 // As the input device list can impact the output device selection, update
297 // getDeviceForStrategy() cache
298 updateDevicesAndOutputs();
Eric Laurente552edb2014-03-10 17:42:56 -0700299
Eric Laurent87ffa392015-05-22 10:32:38 -0700300 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700301 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
302 updateCallRouting(newDevice);
303 }
304
Eric Laurentd60560a2015-04-10 11:31:20 -0700305 if (state == AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE) {
306 cleanUpForDevice(devDesc);
307 }
308
Eric Laurentb52c1522014-05-20 11:27:36 -0700309 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700310 return NO_ERROR;
Eric Laurentd4692962014-05-05 18:13:44 -0700311 } // end if is input device
Eric Laurente552edb2014-03-10 17:42:56 -0700312
313 ALOGW("setDeviceConnectionState() invalid device: %x", device);
314 return BAD_VALUE;
315}
316
Eric Laurente0720872014-03-11 09:30:41 -0700317audio_policy_dev_state_t AudioPolicyManager::getDeviceConnectionState(audio_devices_t device,
François Gaffie53615e22015-03-19 09:24:12 +0100318 const char *device_address)
Eric Laurente552edb2014-03-10 17:42:56 -0700319{
Eric Laurent634b7142016-04-20 13:48:02 -0700320 sp<DeviceDescriptor> devDesc =
321 mHwModules.getDeviceDescriptor(device, device_address, "",
322 (strlen(device_address) != 0)/*matchAddress*/);
323
324 if (devDesc == 0) {
325 ALOGW("getDeviceConnectionState() undeclared device, type %08x, address: %s",
326 device, device_address);
327 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
328 }
François Gaffie53615e22015-03-19 09:24:12 +0100329
Eric Laurent3a4311c2014-03-17 12:00:47 -0700330 DeviceVector *deviceVector;
331
Eric Laurente552edb2014-03-10 17:42:56 -0700332 if (audio_is_output_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700333 deviceVector = &mAvailableOutputDevices;
Eric Laurente552edb2014-03-10 17:42:56 -0700334 } else if (audio_is_input_device(device)) {
Eric Laurent3a4311c2014-03-17 12:00:47 -0700335 deviceVector = &mAvailableInputDevices;
336 } else {
337 ALOGW("getDeviceConnectionState() invalid device type %08x", device);
338 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurente552edb2014-03-10 17:42:56 -0700339 }
Eric Laurent634b7142016-04-20 13:48:02 -0700340
341 return (deviceVector->getDevice(device, String8(device_address)) != 0) ?
342 AUDIO_POLICY_DEVICE_STATE_AVAILABLE : AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
Eric Laurenta1d525f2015-01-29 13:36:45 -0800343}
344
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800345status_t AudioPolicyManager::handleDeviceConfigChange(audio_devices_t device,
346 const char *device_address,
347 const char *device_name)
348{
349 status_t status;
350
351 ALOGV("handleDeviceConfigChange(() device: 0x%X, address %s name %s",
352 device, device_address, device_name);
353
Pavlin Radoslavovc694ff42017-01-09 23:27:29 -0800354 // connect/disconnect only 1 device at a time
355 if (!audio_is_output_device(device) && !audio_is_input_device(device)) return BAD_VALUE;
356
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800357 // Check if the device is currently connected
358 sp<DeviceDescriptor> devDesc =
359 mHwModules.getDeviceDescriptor(device, device_address, device_name);
360 ssize_t index = mAvailableOutputDevices.indexOf(devDesc);
361 if (index < 0) {
362 // Nothing to do: device is not connected
363 return NO_ERROR;
364 }
365
366 // Toggle the device state: UNAVAILABLE -> AVAILABLE
367 // This will force reading again the device configuration
368 status = setDeviceConnectionState(device,
369 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
370 device_address, device_name);
371 if (status != NO_ERROR) {
372 ALOGW("handleDeviceConfigChange() error disabling connection state: %d",
373 status);
374 return status;
375 }
376
377 status = setDeviceConnectionState(device,
378 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
379 device_address, device_name);
380 if (status != NO_ERROR) {
381 ALOGW("handleDeviceConfigChange() error enabling connection state: %d",
382 status);
383 return status;
384 }
385
386 return NO_ERROR;
387}
388
Eric Laurentdc462862016-07-19 12:29:53 -0700389uint32_t AudioPolicyManager::updateCallRouting(audio_devices_t rxDevice, uint32_t delayMs)
Eric Laurentc2730ba2014-07-20 15:47:07 -0700390{
391 bool createTxPatch = false;
Eric Laurentdc462862016-07-19 12:29:53 -0700392 uint32_t muteWaitMs = 0;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700393
Andy Hunga76c7de2016-12-13 19:14:31 -0800394 if(!hasPrimaryOutput() || mPrimaryOutput->device() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurentdc462862016-07-19 12:29:53 -0700395 return muteWaitMs;
Eric Laurent87ffa392015-05-22 10:32:38 -0700396 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -0800397 audio_devices_t txDevice = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700398 ALOGV("updateCallRouting device rxDevice %08x txDevice %08x", rxDevice, txDevice);
399
400 // release existing RX patch if any
401 if (mCallRxPatch != 0) {
402 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
403 mCallRxPatch.clear();
404 }
405 // release TX patch if any
406 if (mCallTxPatch != 0) {
407 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
408 mCallTxPatch.clear();
409 }
410
411 // If the RX device is on the primary HW module, then use legacy routing method for voice calls
412 // via setOutputDevice() on primary output.
413 // Otherwise, create two audio patches for TX and RX path.
414 if (availablePrimaryOutputDevices() & rxDevice) {
Eric Laurentdc462862016-07-19 12:29:53 -0700415 muteWaitMs = setOutputDevice(mPrimaryOutput, rxDevice, true, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700416 // If the TX device is also on the primary HW module, setOutputDevice() will take care
417 // of it due to legacy implementation. If not, create a patch.
418 if ((availablePrimaryInputDevices() & txDevice & ~AUDIO_DEVICE_BIT_IN)
419 == AUDIO_DEVICE_NONE) {
420 createTxPatch = true;
421 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700422 } else { // create RX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800423 mCallRxPatch = createTelephonyPatch(true /*isRx*/, rxDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700424 createTxPatch = true;
425 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700426 if (createTxPatch) { // create TX path audio patch
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800427 mCallTxPatch = createTelephonyPatch(false /*isRx*/, txDevice, delayMs);
428 }
Eric Laurent8ae73122016-04-12 10:13:29 -0700429
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800430 return muteWaitMs;
431}
Eric Laurentc2730ba2014-07-20 15:47:07 -0700432
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800433sp<AudioPatch> AudioPolicyManager::createTelephonyPatch(
434 bool isRx, audio_devices_t device, uint32_t delayMs) {
435 struct audio_patch patch;
436 patch.num_sources = 1;
437 patch.num_sinks = 1;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700438
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800439 sp<DeviceDescriptor> txSourceDeviceDesc;
440 if (isRx) {
441 fillAudioPortConfigForDevice(mAvailableOutputDevices, device, &patch.sinks[0]);
442 fillAudioPortConfigForDevice(
443 mAvailableInputDevices, AUDIO_DEVICE_IN_TELEPHONY_RX, &patch.sources[0]);
444 } else {
445 txSourceDeviceDesc = fillAudioPortConfigForDevice(
446 mAvailableInputDevices, device, &patch.sources[0]);
447 fillAudioPortConfigForDevice(
448 mAvailableOutputDevices, AUDIO_DEVICE_OUT_TELEPHONY_TX, &patch.sinks[0]);
449 }
450
451 audio_devices_t outputDevice = isRx ? device : AUDIO_DEVICE_OUT_TELEPHONY_TX;
452 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(outputDevice, mOutputs);
453 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
454 // request to reuse existing output stream if one is already opened to reach the target device
455 if (output != AUDIO_IO_HANDLE_NONE) {
456 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
457 ALOG_ASSERT(!outputDesc->isDuplicated(),
458 "%s() %#x device output %d is duplicated", __func__, outputDevice, output);
459 outputDesc->toAudioPortConfig(&patch.sources[1]);
460 patch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
461 patch.num_sources = 2;
462 }
463
464 if (!isRx) {
Eric Laurentc0a889f2015-10-14 14:36:34 -0700465 // terminate active capture if on the same HW module as the call TX source device
466 // FIXME: would be better to refine to only inputs whose profile connects to the
467 // call TX device but this information is not in the audio patch and logic here must be
468 // symmetric to the one in startInput()
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800469 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800470 if (activeDesc->hasSameHwModuleAs(txSourceDeviceDesc)) {
471 AudioSessionCollection activeSessions =
472 activeDesc->getAudioSessions(true /*activeOnly*/);
473 for (size_t j = 0; j < activeSessions.size(); j++) {
474 audio_session_t activeSession = activeSessions.keyAt(j);
475 stopInput(activeDesc->mIoHandle, activeSession);
476 releaseInput(activeDesc->mIoHandle, activeSession);
477 }
Eric Laurentc0a889f2015-10-14 14:36:34 -0700478 }
479 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700480 }
Eric Laurentdc462862016-07-19 12:29:53 -0700481
Mikhail Naganovb567ba02017-12-08 11:16:27 -0800482 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
483 status_t status = mpClientInterface->createAudioPatch(&patch, &afPatchHandle, delayMs);
484 ALOGW_IF(status != NO_ERROR,
485 "%s() error %d creating %s audio patch", __func__, status, isRx ? "RX" : "TX");
486 sp<AudioPatch> audioPatch;
487 if (status == NO_ERROR) {
488 audioPatch = new AudioPatch(&patch, mUidCached);
489 audioPatch->mAfPatchHandle = afPatchHandle;
490 audioPatch->mUid = mUidCached;
491 }
492 return audioPatch;
493}
494
495sp<DeviceDescriptor> AudioPolicyManager::fillAudioPortConfigForDevice(
496 const DeviceVector& devices, audio_devices_t device, audio_port_config *config) {
497 DeviceVector deviceList = devices.getDevicesFromType(device);
498 ALOG_ASSERT(!deviceList.isEmpty(),
499 "%s() selected device type %#x is not in devices list", __func__, device);
500 sp<DeviceDescriptor> deviceDesc = deviceList.itemAt(0);
501 deviceDesc->toAudioPortConfig(config);
502 return deviceDesc;
Eric Laurentc2730ba2014-07-20 15:47:07 -0700503}
504
Eric Laurente0720872014-03-11 09:30:41 -0700505void AudioPolicyManager::setPhoneState(audio_mode_t state)
Eric Laurente552edb2014-03-10 17:42:56 -0700506{
507 ALOGV("setPhoneState() state %d", state);
François Gaffie2110e042015-03-24 08:41:51 +0100508 // store previous phone state for management of sonification strategy below
509 int oldState = mEngine->getPhoneState();
510
511 if (mEngine->setPhoneState(state) != NO_ERROR) {
512 ALOGW("setPhoneState() invalid or same state %d", state);
Eric Laurente552edb2014-03-10 17:42:56 -0700513 return;
514 }
François Gaffie2110e042015-03-24 08:41:51 +0100515 /// Opens: can these line be executed after the switch of volume curves???
Eric Laurente552edb2014-03-10 17:42:56 -0700516 // if leaving call state, handle special case of active streams
517 // pertaining to sonification strategy see handleIncallSonification()
Eric Laurent63dea1d2015-07-02 17:10:28 -0700518 if (isStateInCall(oldState)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700519 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800520 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700521 handleIncallSonification((audio_stream_type_t)stream, false, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700522 }
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800523
Eric Laurent63dea1d2015-07-02 17:10:28 -0700524 // force reevaluating accessibility routing when call stops
Eric Laurent2cbe89a2014-12-19 11:49:08 -0800525 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700526 }
527
François Gaffie2110e042015-03-24 08:41:51 +0100528 /**
529 * Switching to or from incall state or switching between telephony and VoIP lead to force
530 * routing command.
531 */
532 bool force = ((is_state_in_call(oldState) != is_state_in_call(state))
533 || (is_state_in_call(state) && (state != oldState)));
Eric Laurente552edb2014-03-10 17:42:56 -0700534
535 // check for device and output changes triggered by new phone state
Eric Laurente552edb2014-03-10 17:42:56 -0700536 checkA2dpSuspend();
537 checkOutputForAllStrategies();
538 updateDevicesAndOutputs();
539
Eric Laurente552edb2014-03-10 17:42:56 -0700540 int delayMs = 0;
541 if (isStateInCall(state)) {
542 nsecs_t sysTime = systemTime();
543 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700544 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -0700545 // mute media and sonification strategies and delay device switch by the largest
546 // latency of any output where either strategy is active.
547 // This avoid sending the ring tone or music tail into the earpiece or headset.
François Gaffiead3183e2015-03-18 16:55:35 +0100548 if ((isStrategyActive(desc, STRATEGY_MEDIA,
549 SONIFICATION_HEADSET_MUSIC_DELAY,
550 sysTime) ||
551 isStrategyActive(desc, STRATEGY_SONIFICATION,
552 SONIFICATION_HEADSET_MUSIC_DELAY,
553 sysTime)) &&
Eric Laurentc75307b2015-03-17 15:29:32 -0700554 (delayMs < (int)desc->latency()*2)) {
555 delayMs = desc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -0700556 }
Eric Laurentc75307b2015-03-17 15:29:32 -0700557 setStrategyMute(STRATEGY_MEDIA, true, desc);
558 setStrategyMute(STRATEGY_MEDIA, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700559 getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/));
Eric Laurentc75307b2015-03-17 15:29:32 -0700560 setStrategyMute(STRATEGY_SONIFICATION, true, desc);
561 setStrategyMute(STRATEGY_SONIFICATION, false, desc, MUTE_TIME_MS,
Eric Laurente552edb2014-03-10 17:42:56 -0700562 getDeviceForStrategy(STRATEGY_SONIFICATION, true /*fromCache*/));
563 }
564 }
565
Eric Laurent87ffa392015-05-22 10:32:38 -0700566 if (hasPrimaryOutput()) {
567 // Note that despite the fact that getNewOutputDevice() is called on the primary output,
568 // the device returned is not necessarily reachable via this output
569 audio_devices_t rxDevice = getNewOutputDevice(mPrimaryOutput, false /*fromCache*/);
570 // force routing command to audio hardware when ending call
571 // even if no device change is needed
572 if (isStateInCall(oldState) && rxDevice == AUDIO_DEVICE_NONE) {
573 rxDevice = mPrimaryOutput->device();
574 }
Eric Laurente552edb2014-03-10 17:42:56 -0700575
Eric Laurent87ffa392015-05-22 10:32:38 -0700576 if (state == AUDIO_MODE_IN_CALL) {
577 updateCallRouting(rxDevice, delayMs);
578 } else if (oldState == AUDIO_MODE_IN_CALL) {
579 if (mCallRxPatch != 0) {
580 mpClientInterface->releaseAudioPatch(mCallRxPatch->mAfPatchHandle, 0);
581 mCallRxPatch.clear();
582 }
583 if (mCallTxPatch != 0) {
584 mpClientInterface->releaseAudioPatch(mCallTxPatch->mAfPatchHandle, 0);
585 mCallTxPatch.clear();
586 }
587 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
588 } else {
589 setOutputDevice(mPrimaryOutput, rxDevice, force, 0);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700590 }
Eric Laurentc2730ba2014-07-20 15:47:07 -0700591 }
Eric Laurent2e2a8a92018-04-20 16:21:33 -0700592
593 // reevaluate routing on all outputs in case tracks have been started during the call
594 for (size_t i = 0; i < mOutputs.size(); i++) {
595 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
596 audio_devices_t newDevice = getNewOutputDevice(desc, true /*fromCache*/);
597 if (state != AUDIO_MODE_IN_CALL || desc != mPrimaryOutput) {
598 setOutputDevice(desc, newDevice, (newDevice != AUDIO_DEVICE_NONE), delayMs);
599 }
600 }
601
Eric Laurente552edb2014-03-10 17:42:56 -0700602 // if entering in call state, handle special case of active streams
603 // pertaining to sonification strategy see handleIncallSonification()
604 if (isStateInCall(state)) {
605 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800606 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700607 handleIncallSonification((audio_stream_type_t)stream, true, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700608 }
Eric Laurent63dea1d2015-07-02 17:10:28 -0700609
610 // force reevaluating accessibility routing when call starts
611 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700612 }
613
614 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
Eric Laurent3b73df72014-03-11 09:06:29 -0700615 if (state == AUDIO_MODE_RINGTONE &&
616 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700617 mLimitRingtoneVolume = true;
618 } else {
619 mLimitRingtoneVolume = false;
620 }
621}
622
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700623audio_mode_t AudioPolicyManager::getPhoneState() {
624 return mEngine->getPhoneState();
625}
626
Eric Laurente0720872014-03-11 09:30:41 -0700627void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
Eric Laurent3b73df72014-03-11 09:06:29 -0700628 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700629{
François Gaffie2110e042015-03-24 08:41:51 +0100630 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700631 if (config == mEngine->getForceUse(usage)) {
632 return;
633 }
Eric Laurente552edb2014-03-10 17:42:56 -0700634
François Gaffie2110e042015-03-24 08:41:51 +0100635 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
636 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
637 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700638 }
François Gaffie2110e042015-03-24 08:41:51 +0100639 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
640 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
641 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700642
643 // check for device and output changes triggered by new force usage
644 checkA2dpSuspend();
645 checkOutputForAllStrategies();
646 updateDevicesAndOutputs();
Phil Burk09bc4612016-02-24 15:58:15 -0800647
Eric Laurentdc462862016-07-19 12:29:53 -0700648 //FIXME: workaround for truncated touch sounds
649 // to be removed when the problem is handled by system UI
650 uint32_t delayMs = 0;
651 uint32_t waitMs = 0;
652 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
653 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
654 }
Eric Laurent87ffa392015-05-22 10:32:38 -0700655 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700656 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/);
Eric Laurentdc462862016-07-19 12:29:53 -0700657 waitMs = updateCallRouting(newDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700658 }
Eric Laurente552edb2014-03-10 17:42:56 -0700659 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700660 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
661 audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/);
662 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700663 waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE),
664 delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700665 }
Eric Laurente552edb2014-03-10 17:42:56 -0700666 if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700667 applyStreamVolumes(outputDesc, newDevice, waitMs, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700668 }
669 }
670
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800671 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800672 audio_devices_t newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700673 // Force new input selection if the new device can not be reached via current input
Eric Laurentfb66dd92016-01-28 18:32:03 -0800674 if (activeDesc->mProfile->getSupportedDevices().types() &
675 (newDevice & ~AUDIO_DEVICE_BIT_IN)) {
676 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700677 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800678 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700679 }
Eric Laurente552edb2014-03-10 17:42:56 -0700680 }
Eric Laurente552edb2014-03-10 17:42:56 -0700681}
682
Eric Laurente0720872014-03-11 09:30:41 -0700683void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700684{
685 ALOGV("setSystemProperty() property %s, value %s", property, value);
686}
687
688// Find a direct output profile compatible with the parameters passed, even if the input flags do
689// not explicitly request a direct output
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800690sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput(
Eric Laurente552edb2014-03-10 17:42:56 -0700691 audio_devices_t device,
692 uint32_t samplingRate,
693 audio_format_t format,
694 audio_channel_mask_t channelMask,
695 audio_output_flags_t flags)
696{
Eric Laurent861a6282015-05-18 15:40:16 -0700697 // only retain flags that will drive the direct output profile selection
698 // if explicitly requested
699 static const uint32_t kRelevantFlags =
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700700 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
701 AUDIO_OUTPUT_FLAG_VOIP_RX);
Eric Laurent861a6282015-05-18 15:40:16 -0700702 flags =
703 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
704
705 sp<IOProfile> profile;
706
Mikhail Naganovd4120142017-12-06 15:49:22 -0800707 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -0800708 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Eric Laurent861a6282015-05-18 15:40:16 -0700709 if (!curProfile->isCompatibleProfile(device, String8(""),
Andy Hungf129b032015-04-07 13:45:50 -0700710 samplingRate, NULL /*updatedSamplingRate*/,
711 format, NULL /*updatedFormat*/,
712 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700713 flags)) {
714 continue;
715 }
716 // reject profiles not corresponding to a device currently available
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100717 if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700718 continue;
719 }
720 // if several profiles are compatible, give priority to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100721 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700722 continue;
723 }
724 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100725 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700726 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700727 }
Eric Laurente552edb2014-03-10 17:42:56 -0700728 }
729 }
Eric Laurent861a6282015-05-18 15:40:16 -0700730 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700731}
732
Eric Laurentf4e63452017-11-06 19:31:46 +0000733audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700734{
Eric Laurent3b73df72014-03-11 09:06:29 -0700735 routing_strategy strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700736 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800737
738 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
739 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
740 // format, flags, etc. This may result in some discrepancy for functions that utilize
741 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
742 // and AudioSystem::getOutputSamplingRate().
743
Eric Laurentf4e63452017-11-06 19:31:46 +0000744 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
745 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
Eric Laurente552edb2014-03-10 17:42:56 -0700746
Eric Laurentf4e63452017-11-06 19:31:46 +0000747 ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output);
748 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700749}
750
Eric Laurente83b55d2014-11-14 10:06:21 -0800751status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
752 audio_io_handle_t *output,
753 audio_session_t session,
754 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700755 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800756 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200757 audio_output_flags_t *flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700758 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800759 audio_port_handle_t *portId)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700760{
Eric Laurente83b55d2014-11-14 10:06:21 -0800761 audio_attributes_t attributes;
762 if (attr != NULL) {
763 if (!isValidAttributes(attr)) {
764 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
765 attr->usage, attr->content_type, attr->flags,
766 attr->tags);
767 return BAD_VALUE;
768 }
769 attributes = *attr;
770 } else {
771 if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) {
772 ALOGE("getOutputForAttr(): invalid stream type");
773 return BAD_VALUE;
774 }
775 stream_type_to_audio_attributes(*stream, &attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700776 }
Eric Laurent20b9ef02016-12-05 11:03:16 -0800777
778 // TODO: check for existing client for this port ID
779 if (*portId == AUDIO_PORT_HANDLE_NONE) {
780 *portId = AudioPort::getNextUniqueId();
781 }
782
Eric Laurentc75307b2015-03-17 15:29:32 -0700783 sp<SwAudioOutputDescriptor> desc;
Jean-Michel Trivie8deced2016-02-11 12:50:39 -0800784 if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) {
François Gaffie036e1e92015-03-19 10:16:24 +0100785 ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr");
Eric Laurent20b9ef02016-12-05 11:03:16 -0800786 if (!audio_has_proportional_frames(config->format)) {
François Gaffie036e1e92015-03-19 10:16:24 +0100787 return BAD_VALUE;
Eric Laurent275e8e92014-11-30 15:14:47 -0800788 }
François Gaffie036e1e92015-03-19 10:16:24 +0100789 *stream = streamTypefromAttributesInt(&attributes);
790 *output = desc->mIoHandle;
791 ALOGV("getOutputForAttr() returns output %d", *output);
792 return NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -0800793 }
794 if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
795 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
796 return BAD_VALUE;
797 }
798
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700799 ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x"
800 " session %d selectedDeviceId %d",
801 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700802 session, *selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700803
804 *stream = streamTypefromAttributesInt(&attributes);
805
806 // Explicit routing?
807 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -0700808 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800809 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700810 }
811 mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700812
Eric Laurente83b55d2014-11-14 10:06:21 -0800813 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700814 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent93c3d412014-08-01 14:48:35 -0700815
Eric Laurente83b55d2014-11-14 10:06:21 -0800816 if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Nadav Bar766fb022018-01-07 12:18:03 +0200817 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
Eric Laurent93c3d412014-08-01 14:48:35 -0700818 }
819
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800820 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, "
821 "flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200822 device, config->sample_rate, config->format, config->channel_mask, *flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700823
Phil Burk2d059932018-02-15 15:55:11 -0800824 *output = getOutputForDevice(device, session, *stream, *output, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800825 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700826 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800827 return INVALID_OPERATION;
828 }
Paul McLeanaa981192015-03-21 09:55:15 -0700829
Eric Laurent2ac76942017-06-22 17:17:09 -0700830 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
831 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
832 : AUDIO_PORT_HANDLE_NONE;
833
834 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
835
Eric Laurente83b55d2014-11-14 10:06:21 -0800836 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700837}
838
839audio_io_handle_t AudioPolicyManager::getOutputForDevice(
840 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800841 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700842 audio_stream_type_t stream,
Phil Burk2d059932018-02-15 15:55:11 -0800843 audio_io_handle_t originalOutput,
Eric Laurentfe231122017-11-17 17:48:06 -0800844 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200845 audio_output_flags_t *flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700846{
Phil Burk2d059932018-02-15 15:55:11 -0800847 audio_io_handle_t output = originalOutput;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700848 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700849
Eric Laurente552edb2014-03-10 17:42:56 -0700850 // open a direct output if required by specified parameters
851 //force direct flag if offload flag is set: offloading implies a direct output stream
852 // and all common behaviors are driven by checking only the direct flag
853 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +0200854 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
855 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700856 }
Nadav Bar766fb022018-01-07 12:18:03 +0200857 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
858 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700859 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800860 // only allow deep buffering for music stream type
861 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200862 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700863 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +0200864 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700865 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
866 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200867 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800868 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700869 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +0200870 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700871 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800872 audio_is_linear_pcm(config->format)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200873 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700874 AUDIO_OUTPUT_FLAG_DIRECT);
875 ALOGV("Set VoIP and Direct output flags for PCM format");
Nadav Bar766fb022018-01-07 12:18:03 +0200876 } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
877 stream == AUDIO_STREAM_MUSIC &&
878 audio_is_linear_pcm(config->format) &&
879 isInCall()) {
880 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700881 }
Eric Laurente552edb2014-03-10 17:42:56 -0700882
Nadav Bar766fb022018-01-07 12:18:03 +0200883
Eric Laurentb732cf52014-09-24 19:08:21 -0700884 sp<IOProfile> profile;
885
886 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700887 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200888 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800889 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
890 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700891 goto non_direct_output;
892 }
893
Andy Hung2ddee192015-12-18 17:34:44 -0800894 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
895 // This prevents creating an offloaded track and tearing it down immediately after start
896 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700897 // FIXME: We should check the audio session here but we do not have it in this context.
898 // This may prevent offloading in rare situations where effects are left active by apps
899 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700900
Nadav Bar766fb022018-01-07 12:18:03 +0200901 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800902 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700903 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800904 config->sample_rate,
905 config->format,
906 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200907 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700908 }
909
Eric Laurent1c333e22014-05-20 10:48:17 -0700910 if (profile != 0) {
Phil Burk2d059932018-02-15 15:55:11 -0800911 // exclude MMAP streams
912 if ((*flags & AUDIO_OUTPUT_FLAG_MMAP_NOIRQ) == 0 || output != AUDIO_IO_HANDLE_NONE) {
913 for (size_t i = 0; i < mOutputs.size(); i++) {
914 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
915 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
916 // reuse direct output if currently open by the same client
917 // and configured with same parameters
918 if ((config->sample_rate == desc->mSamplingRate) &&
919 audio_formats_match(config->format, desc->mFormat) &&
920 (config->channel_mask == desc->mChannelMask) &&
921 (session == desc->mDirectClientSession)) {
922 desc->mDirectOpenCount++;
923 ALOGI("getOutputForDevice() reusing direct output %d for session %d",
924 mOutputs.keyAt(i), session);
925 return mOutputs.keyAt(i);
926 }
Eric Laurente552edb2014-03-10 17:42:56 -0700927 }
928 }
929 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800930
931 if (!profile->canOpenNewIo()) {
932 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700933 }
Eric Laurent861a6282015-05-18 15:40:16 -0700934
Eric Laurent3974e3b2017-12-07 17:58:43 -0800935 sp<SwAudioOutputDescriptor> outputDesc =
936 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800937
938 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
939 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
940 : String8("");
941
Nadav Bar766fb022018-01-07 12:18:03 +0200942 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700943
944 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700945 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800946 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
947 (config->format != AUDIO_FORMAT_DEFAULT &&
948 !audio_formats_match(config->format, outputDesc->mFormat)) ||
949 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
950 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
951 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
952 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
953 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700954 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800955 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700956 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800957 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800958 if (audio_is_linear_pcm(config->format) &&
959 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800960 goto non_direct_output;
961 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700962 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700963 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700964 outputDesc->mRefCount[stream] = 0;
965 outputDesc->mStopTime[stream] = 0;
966 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800967 outputDesc->mDirectClientSession = session;
968
Eric Laurente552edb2014-03-10 17:42:56 -0700969 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700970 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000971 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700972 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700973 return output;
974 }
975
Eric Laurentb732cf52014-09-24 19:08:21 -0700976non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700977
978 // A request for HW A/V sync cannot fallback to a mixed output because time
979 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -0800980 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -0700981 return AUDIO_IO_HANDLE_NONE;
982 }
983
Eric Laurente552edb2014-03-10 17:42:56 -0700984 // ignoring channel mask due to downmix capability in mixer
985
986 // open a non direct output
987
988 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800989 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700990 // get which output is suitable for the specified stream. The actual
991 // routing change will happen when startOutput() will be called
992 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
993
Eric Laurent8838a382014-09-08 16:44:28 -0700994 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +0200995 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
996 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -0700997 }
Eric Laurentf4e63452017-11-06 19:31:46 +0000998 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800999 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +02001000 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001001
Eric Laurente552edb2014-03-10 17:42:56 -07001002 return output;
1003}
1004
Eric Laurente0720872014-03-11 09:30:41 -07001005audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -07001006 audio_output_flags_t flags,
1007 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -07001008{
1009 // select one output among several that provide a path to a particular device or set of
1010 // devices (the list was previously build by getOutputsForDevice()).
1011 // The priority is as follows:
1012 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001013 // 2: the output with the bit depth the closest to the requested one
1014 // 3: the primary output
1015 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001016
1017 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001018 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001019 }
1020 if (outputs.size() == 1) {
1021 return outputs[0];
1022 }
1023
1024 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001025 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1026 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1027 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001028 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1029 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001030
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001031 for (audio_io_handle_t output : outputs) {
1032 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001033 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001034 // if a valid format is specified, skip output if not compatible
1035 if (format != AUDIO_FORMAT_INVALID) {
1036 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente6930022016-02-11 10:20:40 -08001037 if (!audio_formats_match(format, outputDesc->mFormat)) {
Eric Laurent8838a382014-09-08 16:44:28 -07001038 continue;
1039 }
1040 } else if (!audio_is_linear_pcm(format)) {
1041 continue;
1042 }
Eric Laurente6930022016-02-11 10:20:40 -08001043 if (AudioPort::isBetterFormatMatch(
1044 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001045 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001046 bestFormat = outputDesc->mFormat;
1047 }
Eric Laurent8838a382014-09-08 16:44:28 -07001048 }
1049
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001050 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001051 if (commonFlags >= maxCommonFlags) {
1052 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001053 if (format != AUDIO_FORMAT_INVALID
1054 && AudioPort::isBetterFormatMatch(
1055 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001056 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001057 bestFormatForFlags = outputDesc->mFormat;
1058 }
1059 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001060 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001061 maxCommonFlags = commonFlags;
1062 bestFormatForFlags = outputDesc->mFormat;
1063 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001064 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001065 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001066 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001067 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001068 }
1069 }
1070 }
1071
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001072 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001073 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001074 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001075 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001076 return outputForFormat;
1077 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001078 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001079 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001080 }
1081
1082 return outputs[0];
1083}
1084
Eric Laurente0720872014-03-11 09:30:41 -07001085status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001086 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001087 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001088{
Paul McLeanaa981192015-03-21 09:55:15 -07001089 ALOGV("startOutput() output %d, stream %d, session %d",
1090 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001091 ssize_t index = mOutputs.indexOfKey(output);
1092 if (index < 0) {
1093 ALOGW("startOutput() unknown output %d", output);
1094 return BAD_VALUE;
1095 }
1096
Eric Laurentc75307b2015-03-17 15:29:32 -07001097 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1098
Eric Laurent733ce942017-12-07 12:18:25 -08001099 status_t status = outputDesc->start();
1100 if (status != NO_ERROR) {
1101 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001102 }
1103
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001104 // Routing?
1105 mOutputRoutes.incRouteActivity(session);
1106
Eric Laurentc75307b2015-03-17 15:29:32 -07001107 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001108 AudioMix *policyMix = NULL;
1109 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001110 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001111 policyMix = outputDesc->mPolicyMix;
1112 address = policyMix->mDeviceAddress.string();
1113 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1114 newDevice = policyMix->mDeviceType;
1115 } else {
1116 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1117 }
Eric Laurent493404d2015-04-21 15:07:36 -07001118 } else if (mOutputRoutes.hasRouteChanged(session)) {
1119 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001120 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001121 } else {
1122 newDevice = AUDIO_DEVICE_NONE;
1123 }
1124
1125 uint32_t delayMs = 0;
1126
Eric Laurent733ce942017-12-07 12:18:25 -08001127 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001128
1129 if (status != NO_ERROR) {
1130 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001131 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001132 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001133 }
1134 // Automatically enable the remote submix input when output is started on a re routing mix
1135 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001136 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1137 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001138 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1139 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001140 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001141 "remote-submix");
1142 }
1143
1144 if (delayMs != 0) {
1145 usleep(delayMs * 1000);
1146 }
1147
1148 return status;
1149}
1150
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001151status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001152 audio_stream_type_t stream,
1153 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001154 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001155 uint32_t *delayMs)
1156{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001157 // cannot start playback of STREAM_TTS if any other output is being used
1158 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001159
1160 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001161 if (stream == AUDIO_STREAM_TTS) {
1162 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001163 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001164 return INVALID_OPERATION;
1165 } else {
1166 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1167 }
1168 } else {
1169 // some playback other than beacon starts
1170 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1171 }
1172
Eric Laurent77305a62016-07-25 16:39:22 -07001173 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001174 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001175 bool force = !outputDesc->isActive() &&
1176 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001177
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001178 // requiresMuteCheck is false when we can bypass mute strategy.
1179 // It covers a common case when there is no materially active audio
1180 // and muting would result in unnecessary delay and dropped audio.
1181 const uint32_t outputLatencyMs = outputDesc->latency();
1182 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1183
Eric Laurente552edb2014-03-10 17:42:56 -07001184 // increment usage count for this stream on the requested output:
1185 // NOTE that the usage count is the same for duplicated output and hardware output which is
1186 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1187 outputDesc->changeRefCount(stream, 1);
1188
Eric Laurent36829f92017-04-07 19:04:42 -07001189 if (stream == AUDIO_STREAM_MUSIC) {
1190 selectOutputForMusicEffects();
1191 }
1192
Eric Laurent493404d2015-04-21 15:07:36 -07001193 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001194 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001195 if (device == AUDIO_DEVICE_NONE) {
1196 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001197 }
Eric Laurent36829f92017-04-07 19:04:42 -07001198
Eric Laurente552edb2014-03-10 17:42:56 -07001199 routing_strategy strategy = getStrategy(stream);
1200 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001201 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1202 (beaconMuteLatency > 0);
1203 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001204 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001205 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001206 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001207 // An output has a shared device if
1208 // - managed by the same hw module
1209 // - supports the currently selected device
1210 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1211 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1212
Eric Laurent77305a62016-07-25 16:39:22 -07001213 // force a device change if any other output is:
1214 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001215 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001216 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001217 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001218 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001219 // change the device currently selected by the other output.
1220 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001221 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001222 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001223 force = true;
1224 }
1225 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001226 // a notification so that audio focus effect can propagate, or that a mute/unmute
1227 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001228 const uint32_t latencyMs = desc->latency();
1229 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1230
1231 if (shouldWait && isActive && (waitMs < latencyMs)) {
1232 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001233 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001234
1235 // Require mute check if another output is on a shared device
1236 // and currently active to have proper drain and avoid pops.
1237 // Note restoring AudioTracks onto this output needs to invoke
1238 // a volume ramp if there is no mute.
1239 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001240 }
1241 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001242
1243 const uint32_t muteWaitMs =
1244 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001245
1246 // handle special case for sonification while in call
1247 if (isInCall()) {
1248 handleIncallSonification(stream, true, false);
1249 }
1250
1251 // apply volume rules for current stream and device if necessary
1252 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001253 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001254 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001255 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001256
1257 // update the outputs if starting an output with a stream that can affect notification
1258 // routing
1259 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001260
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001261 // force reevaluating accessibility routing when ringtone or alarm starts
1262 if (strategy == STRATEGY_SONIFICATION) {
1263 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1264 }
Eric Laurentdc462862016-07-19 12:29:53 -07001265
1266 if (waitMs > muteWaitMs) {
1267 *delayMs = waitMs - muteWaitMs;
1268 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001269
1270 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1271 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1272 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1273 // change occurs after the MixerThread starts and causes a stream volume
1274 // glitch.
1275 //
1276 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001277 }
Eric Laurentdc462862016-07-19 12:29:53 -07001278
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001279 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1280 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1281 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1282 }
1283
Eric Laurente552edb2014-03-10 17:42:56 -07001284 return NO_ERROR;
1285}
1286
1287
Eric Laurente0720872014-03-11 09:30:41 -07001288status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001289 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001290 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001291{
1292 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1293 ssize_t index = mOutputs.indexOfKey(output);
1294 if (index < 0) {
1295 ALOGW("stopOutput() unknown output %d", output);
1296 return BAD_VALUE;
1297 }
1298
Eric Laurentc75307b2015-03-17 15:29:32 -07001299 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001300
Eric Laurentc75307b2015-03-17 15:29:32 -07001301 if (outputDesc->mRefCount[stream] == 1) {
1302 // Automatically disable the remote submix input when output is stopped on a
1303 // re routing mix of type MIX_TYPE_RECORDERS
1304 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1305 outputDesc->mPolicyMix != NULL &&
1306 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1307 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1308 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001309 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001310 "remote-submix");
1311 }
1312 }
1313
1314 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001315 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001316 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001317 int activityCount = mOutputRoutes.decRouteActivity(session);
1318 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1319
1320 if (forceDeviceUpdate) {
1321 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1322 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001323 }
1324
Eric Laurent3974e3b2017-12-07 17:58:43 -08001325 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1326
Eric Laurent733ce942017-12-07 12:18:25 -08001327 if (status == NO_ERROR ) {
1328 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001329 }
1330 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001331}
1332
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001333status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001334 audio_stream_type_t stream,
1335 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001336{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001337 // always handle stream stop, check which stream type is stopping
1338 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1339
Eric Laurente552edb2014-03-10 17:42:56 -07001340 // handle special case for sonification while in call
1341 if (isInCall()) {
1342 handleIncallSonification(stream, false, false);
1343 }
1344
1345 if (outputDesc->mRefCount[stream] > 0) {
1346 // decrement usage count of this stream on the output
1347 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001348
Eric Laurente552edb2014-03-10 17:42:56 -07001349 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001350 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001351 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001352 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001353 // delay the device switch by twice the latency because stopOutput() is executed when
1354 // the track stop() command is received and at that time the audio track buffer can
1355 // still contain data that needs to be drained. The latency only covers the audio HAL
1356 // and kernel buffers. Also the latency does not always include additional delay in the
1357 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001358 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001359
1360 // force restoring the device selection on other active outputs if it differs from the
1361 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001362 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001363 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001364 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001365 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001366 desc->isActive() &&
1367 outputDesc->sharesHwModuleWith(desc) &&
1368 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001369 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1370 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001371 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001372 newDevice2,
1373 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001374 delayMs);
1375 // re-apply device specific volume if not done by setOutputDevice()
1376 if (!force) {
1377 applyStreamVolumes(desc, newDevice2, delayMs);
1378 }
Eric Laurente552edb2014-03-10 17:42:56 -07001379 }
1380 }
1381 // update the outputs if stopping one with a stream that can affect notification routing
1382 handleNotificationRoutingForStream(stream);
1383 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001384
1385 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1386 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1387 setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc);
1388 }
1389
Eric Laurent36829f92017-04-07 19:04:42 -07001390 if (stream == AUDIO_STREAM_MUSIC) {
1391 selectOutputForMusicEffects();
1392 }
Eric Laurente552edb2014-03-10 17:42:56 -07001393 return NO_ERROR;
1394 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001395 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001396 return INVALID_OPERATION;
1397 }
1398}
1399
Eric Laurente83b55d2014-11-14 10:06:21 -08001400void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001401 audio_stream_type_t stream __unused,
1402 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001403{
1404 ALOGV("releaseOutput() %d", output);
1405 ssize_t index = mOutputs.indexOfKey(output);
1406 if (index < 0) {
1407 ALOGW("releaseOutput() releasing unknown output %d", output);
1408 return;
1409 }
1410
Paul McLeanaa981192015-03-21 09:55:15 -07001411 // Routing
1412 mOutputRoutes.removeRoute(session);
1413
Eric Laurentc75307b2015-03-17 15:29:32 -07001414 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001415 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001416 if (desc->mDirectOpenCount <= 0) {
1417 ALOGW("releaseOutput() invalid open count %d for output %d",
1418 desc->mDirectOpenCount, output);
1419 return;
1420 }
1421 if (--desc->mDirectOpenCount == 0) {
1422 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001423 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001424 }
1425 }
1426}
1427
1428
Eric Laurentcaf7f482014-11-25 17:50:47 -08001429status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1430 audio_io_handle_t *input,
1431 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001432 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001433 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001434 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001435 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001436 input_type_t *inputType,
1437 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001438{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001439 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001440 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001441 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001442
Eric Laurentad2e7b92017-09-14 20:06:42 -07001443 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001444 // handle legacy remote submix case where the address was not always specified
1445 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001446 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001447 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001448 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001449 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001450
Eric Laurentfe231122017-11-17 17:48:06 -08001451 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1452 inputSource = AUDIO_SOURCE_MIC;
1453 }
1454
Paul McLean466dc8e2015-04-17 13:15:36 -06001455 // Explicit routing?
1456 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001457 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001458 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001459 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001460 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001461
Eric Laurentad2e7b92017-09-14 20:06:42 -07001462 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1463 // possible
1464 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1465 *input != AUDIO_IO_HANDLE_NONE) {
1466 ssize_t index = mInputs.indexOfKey(*input);
1467 if (index < 0) {
1468 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1469 status = BAD_VALUE;
1470 goto error;
1471 }
1472 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1473 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1474 if (audioSession == 0) {
1475 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1476 status = BAD_VALUE;
1477 goto error;
1478 }
1479 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1480 // The second call is for the first active client and sets the UID. Any further call
Eric Laurent331679c2018-04-16 17:03:16 -07001481 // corresponds to a new client and is only permitted from the same UID.
1482 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurentad2e7b92017-09-14 20:06:42 -07001483 if (audioSession->openCount() == 1) {
1484 audioSession->setUid(uid);
1485 } else if (audioSession->uid() != uid) {
Eric Laurent331679c2018-04-16 17:03:16 -07001486 if (!audioSession->isSilenced()) {
1487 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1488 uid, session, audioSession->uid());
1489 status = INVALID_OPERATION;
1490 goto error;
1491 }
1492 audioSession->setUid(uid);
1493 audioSession->setSilenced(false);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001494 }
1495 audioSession->changeOpenCount(1);
1496 *inputType = API_INPUT_LEGACY;
1497 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1498 *portId = AudioPort::getNextUniqueId();
1499 }
1500 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1501 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1502 : AUDIO_PORT_HANDLE_NONE;
1503 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1504
1505 return NO_ERROR;
1506 }
1507
1508 *input = AUDIO_IO_HANDLE_NONE;
1509 *inputType = API_INPUT_INVALID;
1510
Eric Laurentad2e7b92017-09-14 20:06:42 -07001511 halInputSource = inputSource;
1512
1513 // TODO: check for existing client for this port ID
1514 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1515 *portId = AudioPort::getNextUniqueId();
1516 }
1517
1518 audio_devices_t device;
1519
Eric Laurentc447ded2015-01-06 08:47:05 -08001520 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001521 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001522 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1523 if (status != NO_ERROR) {
1524 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001525 }
1526 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001527 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1528 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001529 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001530 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001531 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001532 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001533 status = BAD_VALUE;
1534 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001535 }
Eric Laurentc722f302014-12-10 11:21:49 -08001536 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001537 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001538 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1539 // there is an external policy, but this input is attached to a mix of recorders,
1540 // meaning it receives audio injected into the framework, so the recorder doesn't
1541 // know about it and is therefore considered "legacy"
1542 *inputType = API_INPUT_LEGACY;
1543 } else {
1544 // recording a mix of players defined by an external policy, we're rerouting for
1545 // an external policy
1546 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1547 }
Eric Laurentc722f302014-12-10 11:21:49 -08001548 } else if (audio_is_remote_submix_device(device)) {
1549 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001550 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001551 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1552 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001553 } else {
1554 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001555 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001556
Eric Laurent599c7582015-12-07 18:05:55 -08001557 }
1558
1559 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001560 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001561 policyMix);
1562 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001563 status = INVALID_OPERATION;
1564 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001565 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001566
Eric Laurentad2e7b92017-09-14 20:06:42 -07001567 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001568 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1569 : AUDIO_PORT_HANDLE_NONE;
1570
1571 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1572 *input, *inputType, *selectedDeviceId);
1573
Eric Laurent599c7582015-12-07 18:05:55 -08001574 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001575
1576error:
1577 mInputRoutes.removeRoute(session);
1578 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001579}
1580
1581
1582audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1583 String8 address,
1584 audio_session_t session,
1585 uid_t uid,
1586 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001587 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001588 audio_input_flags_t flags,
1589 AudioMix *policyMix)
1590{
1591 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1592 audio_source_t halInputSource = inputSource;
1593 bool isSoundTrigger = false;
1594
1595 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1596 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1597 if (index >= 0) {
1598 input = mSoundTriggerSessions.valueFor(session);
1599 isSoundTrigger = true;
1600 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1601 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1602 } else {
1603 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001604 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001605 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001606 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001607 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001608 }
1609
Andy Hungf129b032015-04-07 13:45:50 -07001610 // find a compatible input profile (not necessarily identical in parameters)
1611 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001612 // sampling rate and flags may be updated by getInputProfile
1613 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1614 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07001615 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08001616 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001617 audio_input_flags_t profileFlags = flags;
1618 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07001619 profileFormat = config->format; // reset each time through loop, in case it is updated
Eric Laurent275e8e92014-11-30 15:14:47 -08001620 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001621 profileSamplingRate, profileFormat, profileChannelMask,
1622 profileFlags);
1623 if (profile != 0) {
1624 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001625 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1626 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001627 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1628 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1629 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001630 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001631 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1632 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001633 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001634 }
Eric Laurente552edb2014-03-10 17:42:56 -07001635 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001636 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001637 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001638 if (samplingRate == 0) {
1639 samplingRate = profileSamplingRate;
1640 }
Eric Laurente552edb2014-03-10 17:42:56 -07001641
Eric Laurent322b4d22015-04-03 15:57:54 -07001642 if (profile->getModuleHandle() == 0) {
1643 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001644 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001645 }
1646
Eric Laurent599c7582015-12-07 18:05:55 -08001647 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001648 inputSource,
1649 config->format,
1650 samplingRate,
1651 config->channel_mask,
1652 flags,
1653 uid,
1654 isSoundTrigger,
1655 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001656
Eric Laurent74708e72017-04-07 17:13:42 -07001657// FIXME: disable concurrent capture until UI is ready
1658#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001659 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001660 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001661 for (size_t i = 0; i < mInputs.size(); i++) {
1662 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001663 // reuse input if:
1664 // - it shares the same profile
1665 // AND
1666 // - it is not a reroute submix input
1667 // AND
1668 // - it is: not used for sound trigger
1669 // OR
1670 // used for sound trigger and all clients use the same session ID
1671 //
1672 if ((profile == desc->mProfile) &&
1673 (isSoundTrigger == desc->isSoundTrigger()) &&
1674 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001675
1676 sp<AudioSession> as = desc->getAudioSession(session);
1677 if (as != 0) {
1678 // do not allow unmatching properties on same session
1679 if (as->matches(audioSession)) {
1680 as->changeOpenCount(1);
1681 } else {
1682 ALOGW("getInputForDevice() record with different attributes"
1683 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001684 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001685 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001686 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001687 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001688 }
Eric Laurentbb948092017-01-23 18:33:30 -08001689
Eric Laurent555530a2017-02-07 18:17:24 -08001690 // Reuse the already opened input stream on this profile if:
1691 // - the new capture source is background OR
1692 // - the path requested configurations match OR
1693 // - the new source priority is less than the highest source priority on this input
1694 // If the input stream cannot be reused, close it before opening a new stream
1695 // on the same profile for the new client so that the requested path configuration
1696 // can be selected.
1697 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001698 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001699 desc->mChannelMask != config->channel_mask ||
1700 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001701 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001702 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001703 reusedInputDesc = desc;
1704 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001705 } else {
1706 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001707 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1708 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001709 }
Eric Laurent599c7582015-12-07 18:05:55 -08001710 }
1711 }
Eric Laurent599c7582015-12-07 18:05:55 -08001712
Eric Laurent555530a2017-02-07 18:17:24 -08001713 if (reusedInputDesc != 0) {
1714 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1715 for (size_t j = 0; j < sessions.size(); j++) {
1716 audio_session_t currentSession = sessions.keyAt(j);
1717 stopInput(reusedInputDesc->mIoHandle, currentSession);
1718 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1719 }
1720 }
Eric Laurent74708e72017-04-07 17:13:42 -07001721#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001722
Eric Laurent3974e3b2017-12-07 17:58:43 -08001723 if (!profile->canOpenNewIo()) {
1724 return AUDIO_IO_HANDLE_NONE;
1725 }
1726
Eric Laurentfe231122017-11-17 17:48:06 -08001727 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001728
Eric Laurentfe231122017-11-17 17:48:06 -08001729 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1730 lConfig.sample_rate = profileSamplingRate;
1731 lConfig.channel_mask = profileChannelMask;
1732 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001733
Eric Laurent53b810e2017-12-10 17:25:10 -08001734 if (address == "") {
1735 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1736 // the inputs vector must be of size >= 1, but we don't want to crash here
1737 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1738 }
1739
Eric Laurentfe231122017-11-17 17:48:06 -08001740 status_t status = inputDesc->open(&lConfig, device, address,
1741 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001742
1743 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001744 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001745 (profileSamplingRate != lConfig.sample_rate) ||
1746 !audio_formats_match(profileFormat, lConfig.format) ||
1747 (profileChannelMask != lConfig.channel_mask)) {
1748 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001749 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001750 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001751 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001752 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001753 }
Eric Laurent599c7582015-12-07 18:05:55 -08001754 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001755 }
1756
Eric Laurentc722f302014-12-10 11:21:49 -08001757 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001758 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001759
Eric Laurent599c7582015-12-07 18:05:55 -08001760 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001761 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001762
Eric Laurent599c7582015-12-07 18:05:55 -08001763 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001764}
1765
Eric Laurentbb948092017-01-23 18:33:30 -08001766//static
1767bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1768{
1769 return (source == AUDIO_SOURCE_HOTWORD) ||
1770 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1771 (source == AUDIO_SOURCE_FM_TUNER);
1772}
1773
Eric Laurentfb66dd92016-01-28 18:32:03 -08001774bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1775 const sp<AudioSession>& audioSession)
1776{
1777 // Do not allow capture if an active voice call is using a software patch and
1778 // the call TX source device is on the same HW module.
1779 // FIXME: would be better to refine to only inputs whose profile connects to the
1780 // call TX device but this information is not in the audio patch
1781 if (mCallTxPatch != 0 &&
1782 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1783 return false;
1784 }
1785
1786 // starting concurrent capture is enabled if:
1787 // 1) capturing for re-routing
1788 // 2) capturing for HOTWORD source
1789 // 3) capturing for FM TUNER source
1790 // 3) All other active captures are either for re-routing or HOTWORD
1791
1792 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001793 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001794 return true;
1795 }
1796
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001797 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001798 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001799 !is_virtual_input_device(activeInput->mDevice)) {
1800 return false;
1801 }
1802 }
1803
1804 return true;
1805}
1806
Chris Thornton2b864642017-06-27 21:26:07 -07001807// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1808bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1809 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1810 bool soundTriggerSupportsConcurrentCapture = false;
1811 unsigned int numModules = 0;
1812 struct sound_trigger_module_descriptor* nModules = NULL;
1813
1814 status_t status = SoundTrigger::listModules(nModules, &numModules);
1815 if (status == NO_ERROR && numModules != 0) {
1816 nModules = (struct sound_trigger_module_descriptor*) calloc(
1817 numModules, sizeof(struct sound_trigger_module_descriptor));
1818 if (nModules == NULL) {
1819 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1820 // ram the next time this function is called.
1821 ALOGE("Failed to allocate buffer for module descriptors");
1822 return false;
1823 }
1824
1825 status = SoundTrigger::listModules(nModules, &numModules);
1826 if (status == NO_ERROR) {
1827 soundTriggerSupportsConcurrentCapture = true;
1828 for (size_t i = 0; i < numModules; ++i) {
1829 soundTriggerSupportsConcurrentCapture &=
1830 nModules[i].properties.concurrent_capture;
1831 }
1832 }
1833 free(nModules);
1834 }
1835 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1836 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1837 }
1838 return mSoundTriggerSupportsConcurrentCapture;
1839}
1840
Eric Laurentfb66dd92016-01-28 18:32:03 -08001841
Eric Laurent4dc68062014-07-28 17:26:49 -07001842status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001843 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001844 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001845 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001846{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001847
1848 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1849 input, session, silenced, *concurrency);
1850
Eric Laurentfb66dd92016-01-28 18:32:03 -08001851 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001852
Eric Laurente552edb2014-03-10 17:42:56 -07001853 ssize_t index = mInputs.indexOfKey(input);
1854 if (index < 0) {
1855 ALOGW("startInput() unknown input %d", input);
1856 return BAD_VALUE;
1857 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001858 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001859
Eric Laurent599c7582015-12-07 18:05:55 -08001860 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1861 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001862 ALOGW("startInput() unknown session %d on input %d", session, input);
1863 return BAD_VALUE;
1864 }
1865
Eric Laurent74708e72017-04-07 17:13:42 -07001866// FIXME: disable concurrent capture until UI is ready
1867#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001868 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1869 ALOGW("startInput(%d) failed: other input already started", input);
1870 return INVALID_OPERATION;
1871 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001872
Eric Laurentfb66dd92016-01-28 18:32:03 -08001873 if (isInCall()) {
1874 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1875 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001876 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001877 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001878 }
Eric Laurent74708e72017-04-07 17:13:42 -07001879#else
1880 if (!is_virtual_input_device(inputDesc->mDevice)) {
1881 if (mCallTxPatch != 0 &&
1882 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1883 ALOGW("startInput(%d) failed: call in progress", input);
1884 return INVALID_OPERATION;
1885 }
1886
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001887 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001888
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001889 // If a UID is idle and records silence and another not silenced recording starts
1890 // from another UID (idle or active) we stop the current idle UID recording in
1891 // favor of the new one - "There can be only one" TM
1892 if (!silenced) {
1893 for (const auto& activeDesc : activeInputs) {
1894 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1895 activeDesc->getId() == inputDesc->getId()) {
1896 continue;
1897 }
1898
1899 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1900 true /*activeOnly*/);
1901 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1902 if (activeSession->isSilenced()) {
1903 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1904 audio_session_t activeSessionId = activeSession->session();
1905 stopInput(activeInput, activeSessionId);
1906 releaseInput(activeInput, activeSessionId);
1907 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1908 activeInputs = mInputs.getActiveInputs();
1909 }
1910 }
1911 }
1912
1913 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001914 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1915 activeDesc->getId() == inputDesc->getId()) {
1916 continue;
1917 }
1918
Eric Laurent74708e72017-04-07 17:13:42 -07001919 audio_source_t activeSource = activeDesc->inputSource(true);
1920 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1921 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1922 if (activeDesc->hasPreemptedSession(session)) {
1923 ALOGW("startInput(%d) failed for HOTWORD: "
1924 "other input %d already started for HOTWORD",
1925 input, activeDesc->mIoHandle);
1926 return INVALID_OPERATION;
1927 }
1928 } else {
1929 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1930 input, activeDesc->mIoHandle);
1931 return INVALID_OPERATION;
1932 }
1933 } else {
1934 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1935 ALOGW("startInput(%d) failed: other input %d already started",
1936 input, activeDesc->mIoHandle);
1937 return INVALID_OPERATION;
1938 }
1939 }
1940 }
1941
Chris Thornton2b864642017-06-27 21:26:07 -07001942 // We only need to check if the sound trigger session supports concurrent capture if the
1943 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1944 // that's running.
1945 const bool allowConcurrentWithSoundTrigger =
1946 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1947
Eric Laurent74708e72017-04-07 17:13:42 -07001948 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001949 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07001950 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1951 continue;
1952 }
1953
Eric Laurent74708e72017-04-07 17:13:42 -07001954 audio_source_t activeSource = activeDesc->inputSource(true);
1955 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1956 AudioSessionCollection activeSessions =
1957 activeDesc->getAudioSessions(true /*activeOnly*/);
1958 audio_session_t activeSession = activeSessions.keyAt(0);
1959 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1960 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
1961 sessions.add(activeSession);
1962 inputDesc->setPreemptedSessions(sessions);
1963 stopInput(activeHandle, activeSession);
1964 releaseInput(activeHandle, activeSession);
1965 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1966 input, activeDesc->mIoHandle);
1967 }
1968 }
1969 }
1970#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001971
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001972 // Make sure we start with the correct silence state
1973 audioSession->setSilenced(silenced);
1974
Eric Laurent313d1e72016-01-29 09:56:57 -08001975 // increment activity count before calling getNewInputDevice() below as only active sessions
1976 // are considered for device selection
1977 audioSession->changeActiveCount(1);
1978
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001979 // Routing?
1980 mInputRoutes.incRouteActivity(session);
1981
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001982 if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001983 // indicate active capture to sound trigger service if starting capture from a mic on
1984 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001985 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001986 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001987
Eric Laurent733ce942017-12-07 12:18:25 -08001988 status_t status = inputDesc->start();
1989 if (status != NO_ERROR) {
1990 mInputRoutes.decRouteActivity(session);
1991 audioSession->changeActiveCount(-1);
1992 return status;
1993 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001994
Eric Laurent733ce942017-12-07 12:18:25 -08001995 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001996 // if input maps to a dynamic policy with an activity listener, notify of state change
1997 if ((inputDesc->mPolicyMix != NULL)
1998 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1999 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2000 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08002001 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002002
Eric Laurentf7c50102016-09-30 15:19:43 -07002003 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2004 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08002005 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002006 SoundTrigger::setCaptureState(true);
2007 }
2008
2009 // automatically enable the remote submix output when input is started if not
2010 // used by a policy mix of type MIX_TYPE_RECORDERS
2011 // For remote submix (a virtual device), we open only one input per capture request.
2012 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2013 String8 address = String8("");
2014 if (inputDesc->mPolicyMix == NULL) {
2015 address = String8("0");
2016 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2017 address = inputDesc->mPolicyMix->mDeviceAddress;
2018 }
2019 if (address != "") {
2020 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2021 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2022 address, "remote-submix");
2023 }
Eric Laurentc722f302014-12-10 11:21:49 -08002024 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002025 }
Eric Laurente552edb2014-03-10 17:42:56 -07002026 }
2027
Eric Laurent599c7582015-12-07 18:05:55 -08002028 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002029
Eric Laurente552edb2014-03-10 17:42:56 -07002030 return NO_ERROR;
2031}
2032
Eric Laurent4dc68062014-07-28 17:26:49 -07002033status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2034 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002035{
2036 ALOGV("stopInput() input %d", input);
2037 ssize_t index = mInputs.indexOfKey(input);
2038 if (index < 0) {
2039 ALOGW("stopInput() unknown input %d", input);
2040 return BAD_VALUE;
2041 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002042 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002043
Eric Laurent599c7582015-12-07 18:05:55 -08002044 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002045 if (index < 0) {
2046 ALOGW("stopInput() unknown session %d on input %d", session, input);
2047 return BAD_VALUE;
2048 }
2049
Eric Laurent599c7582015-12-07 18:05:55 -08002050 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002051 ALOGW("stopInput() input %d already stopped", input);
2052 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002053 }
2054
Eric Laurent599c7582015-12-07 18:05:55 -08002055 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002056
2057 // Routing?
2058 mInputRoutes.decRouteActivity(session);
2059
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002060 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002061 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002062 if (inputDesc->isActive()) {
2063 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2064 } else {
2065 // if input maps to a dynamic policy with an activity listener, notify of state change
2066 if ((inputDesc->mPolicyMix != NULL)
2067 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2068 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2069 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002070 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002071
2072 // automatically disable the remote submix output when input is stopped if not
2073 // used by a policy mix of type MIX_TYPE_RECORDERS
2074 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2075 String8 address = String8("");
2076 if (inputDesc->mPolicyMix == NULL) {
2077 address = String8("0");
2078 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2079 address = inputDesc->mPolicyMix->mDeviceAddress;
2080 }
2081 if (address != "") {
2082 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2083 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2084 address, "remote-submix");
2085 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002086 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002087
Eric Laurentf7c50102016-09-30 15:19:43 -07002088 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002089 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002090
Eric Laurentf7c50102016-09-30 15:19:43 -07002091 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2092 // primary HW module
2093 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2094 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2095 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002096 SoundTrigger::setCaptureState(false);
2097 }
2098 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002099 }
Eric Laurente552edb2014-03-10 17:42:56 -07002100 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002101 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002102}
2103
Eric Laurent4dc68062014-07-28 17:26:49 -07002104void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2105 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002106{
2107 ALOGV("releaseInput() %d", input);
2108 ssize_t index = mInputs.indexOfKey(input);
2109 if (index < 0) {
2110 ALOGW("releaseInput() releasing unknown input %d", input);
2111 return;
2112 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002113
2114 // Routing
2115 mInputRoutes.removeRoute(session);
2116
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002117 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2118 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002119
Eric Laurent599c7582015-12-07 18:05:55 -08002120 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002121 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002122 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2123 return;
2124 }
Eric Laurent599c7582015-12-07 18:05:55 -08002125
2126 if (audioSession->openCount() == 0) {
2127 ALOGW("releaseInput() invalid open count %d on session %d",
2128 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002129 return;
2130 }
Eric Laurent599c7582015-12-07 18:05:55 -08002131
2132 if (audioSession->changeOpenCount(-1) == 0) {
2133 inputDesc->removeAudioSession(session);
2134 }
2135
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002136 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002137 ALOGV("releaseInput() exit > 0");
2138 return;
2139 }
2140
Eric Laurent05b90f82014-08-27 15:32:29 -07002141 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002142 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002143 ALOGV("releaseInput() exit");
2144}
2145
Eric Laurentd4692962014-05-05 18:13:44 -07002146void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002147 bool patchRemoved = false;
2148
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002149 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002150 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002151 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002152 if (patch_index >= 0) {
2153 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002154 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002155 mAudioPatches.removeItemsAt(patch_index);
2156 patchRemoved = true;
2157 }
Eric Laurentfe231122017-11-17 17:48:06 -08002158 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002159 }
jiabin829a00b2018-04-04 16:28:32 -07002160 mInputRoutes.clear();
Eric Laurentd4692962014-05-05 18:13:44 -07002161 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002162 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002163 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002164
2165 if (patchRemoved) {
2166 mpClientInterface->onAudioPatchListUpdate();
2167 }
Eric Laurentd4692962014-05-05 18:13:44 -07002168}
2169
Eric Laurente0720872014-03-11 09:30:41 -07002170void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002171 int indexMin,
2172 int indexMax)
2173{
2174 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002175 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002176
2177 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002178 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2179 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002180 continue;
2181 }
2182 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002183 }
Eric Laurente552edb2014-03-10 17:42:56 -07002184}
2185
Eric Laurente0720872014-03-11 09:30:41 -07002186status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002187 int index,
2188 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002189{
2190
Nadav Bar7c605f62017-12-25 00:01:52 +02002191 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2192 // app that has MODIFY_PHONE_STATE permission.
2193 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2194 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002195 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002196 return BAD_VALUE;
2197 }
2198 if (!audio_is_output_device(device)) {
2199 return BAD_VALUE;
2200 }
2201
2202 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002203 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002204
Eric Laurent1fd372e2016-04-06 14:23:53 -07002205 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002206 stream, device, index);
2207
Eric Laurent28d09f02016-03-08 10:43:05 -08002208 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002209 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2210 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002211 continue;
2212 }
2213 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2214 }
Eric Laurente552edb2014-03-10 17:42:56 -07002215
Eric Laurent1fd372e2016-04-06 14:23:53 -07002216 // update volume on all outputs and streams matching the following:
2217 // - The requested stream (or a stream matching for volume control) is active on the output
2218 // - The device (or devices) selected by the strategy corresponding to this stream includes
2219 // the requested device
2220 // - For non default requested device, currently selected device on the output is either the
2221 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002222 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2223 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002224 status_t status = NO_ERROR;
2225 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002226 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2227 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002228 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2229 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002230 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002231 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002232 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2233 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002234 continue;
2235 }
Eric Laurent794fde22016-03-11 09:50:45 -08002236 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002237 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2238 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002239 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2240 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002241 continue;
2242 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002243 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002244 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002245 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002246 applyVolume = (curDevice & curStreamDevice) != 0;
2247 } else {
2248 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002249 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002250 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002251
Eric Laurente76f29c2016-09-14 17:17:53 -07002252 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002253 //FIXME: workaround for truncated touch sounds
2254 // delayed volume change for system stream to be removed when the problem is
2255 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002256 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002257 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2258 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002259 if (volStatus != NO_ERROR) {
2260 status = volStatus;
2261 }
2262 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002263 }
Eric Laurente552edb2014-03-10 17:42:56 -07002264 }
2265 return status;
2266}
2267
Eric Laurente0720872014-03-11 09:30:41 -07002268status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002269 int *index,
2270 audio_devices_t device)
2271{
2272 if (index == NULL) {
2273 return BAD_VALUE;
2274 }
2275 if (!audio_is_output_device(device)) {
2276 return BAD_VALUE;
2277 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002278 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002279 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002280 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002281 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2282 }
François Gaffiedfd74092015-03-19 12:10:59 +01002283 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002284
François Gaffied1ab2bd2015-12-02 18:20:06 +01002285 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002286 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2287 return NO_ERROR;
2288}
2289
Eric Laurent36829f92017-04-07 19:04:42 -07002290audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002291{
2292 // select one output among several suitable for global effects.
2293 // The priority is as follows:
2294 // 1: An offloaded output. If the effect ends up not being offloadable,
2295 // AudioFlinger will invalidate the track and the offloaded output
2296 // will be closed causing the effect to be moved to a PCM output.
2297 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002298 // 3: The primary output
2299 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002300
Eric Laurent3b73df72014-03-11 09:06:29 -07002301 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002302 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002303 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002304
Eric Laurent36829f92017-04-07 19:04:42 -07002305 if (outputs.size() == 0) {
2306 return AUDIO_IO_HANDLE_NONE;
2307 }
Eric Laurente552edb2014-03-10 17:42:56 -07002308
Eric Laurent36829f92017-04-07 19:04:42 -07002309 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2310 bool activeOnly = true;
2311
2312 while (output == AUDIO_IO_HANDLE_NONE) {
2313 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2314 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2315 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2316
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002317 for (audio_io_handle_t output : outputs) {
2318 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002319 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2320 continue;
2321 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002322 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2323 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002324 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002325 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002326 }
2327 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002328 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002329 }
2330 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002331 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002332 }
2333 }
2334 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2335 output = outputOffloaded;
2336 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2337 output = outputDeepBuffer;
2338 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2339 output = outputPrimary;
2340 } else {
2341 output = outputs[0];
2342 }
2343 activeOnly = false;
2344 }
2345
2346 if (output != mMusicEffectOutput) {
2347 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2348 mMusicEffectOutput = output;
2349 }
2350
2351 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002352 return output;
2353}
2354
Eric Laurent36829f92017-04-07 19:04:42 -07002355audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2356{
2357 return selectOutputForMusicEffects();
2358}
2359
Eric Laurente0720872014-03-11 09:30:41 -07002360status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002361 audio_io_handle_t io,
2362 uint32_t strategy,
2363 int session,
2364 int id)
2365{
2366 ssize_t index = mOutputs.indexOfKey(io);
2367 if (index < 0) {
2368 index = mInputs.indexOfKey(io);
2369 if (index < 0) {
2370 ALOGW("registerEffect() unknown io %d", io);
2371 return INVALID_OPERATION;
2372 }
2373 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002374 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002375}
2376
Eric Laurentc75307b2015-03-17 15:29:32 -07002377bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2378{
Eric Laurent28d09f02016-03-08 10:43:05 -08002379 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002380 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2381 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002382 continue;
2383 }
2384 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2385 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002386 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002387}
2388
2389bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2390{
2391 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2392}
2393
Eric Laurente0720872014-03-11 09:30:41 -07002394bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002395{
2396 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002397 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002398 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002399 return true;
2400 }
2401 }
2402 return false;
2403}
2404
Eric Laurent275e8e92014-11-30 15:14:47 -08002405// Register a list of custom mixes with their attributes and format.
2406// When a mix is registered, corresponding input and output profiles are
2407// added to the remote submix hw module. The profile contains only the
2408// parameters (sampling rate, format...) specified by the mix.
2409// The corresponding input remote submix device is also connected.
2410//
2411// When a remote submix device is connected, the address is checked to select the
2412// appropriate profile and the corresponding input or output stream is opened.
2413//
2414// When capture starts, getInputForAttr() will:
2415// - 1 look for a mix matching the address passed in attribtutes tags if any
2416// - 2 if none found, getDeviceForInputSource() will:
2417// - 2.1 look for a mix matching the attributes source
2418// - 2.2 if none found, default to device selection by policy rules
2419// At this time, the corresponding output remote submix device is also connected
2420// and active playback use cases can be transferred to this mix if needed when reconnecting
2421// after AudioTracks are invalidated
2422//
2423// When playback starts, getOutputForAttr() will:
2424// - 1 look for a mix matching the address passed in attribtutes tags if any
2425// - 2 if none found, look for a mix matching the attributes usage
2426// - 3 if none found, default to device and output selection by policy rules.
2427
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002428status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002429{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002430 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2431 status_t res = NO_ERROR;
2432
2433 sp<HwModule> rSubmixModule;
2434 // examine each mix's route type
2435 for (size_t i = 0; i < mixes.size(); i++) {
2436 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2437 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2438 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002439 break;
2440 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002441 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002442 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002443 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002444 rSubmixModule = mHwModules.getModuleFromName(
2445 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2446 if (rSubmixModule == 0) {
2447 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2448 i);
2449 res = INVALID_OPERATION;
2450 break;
2451 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002452 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002453
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002454 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002455
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002456 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002457 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002458 res = INVALID_OPERATION;
2459 break;
2460 }
2461 audio_config_t outputConfig = mixes[i].mFormat;
2462 audio_config_t inputConfig = mixes[i].mFormat;
2463 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2464 // stereo and let audio flinger do the channel conversion if needed.
2465 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2466 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2467 rSubmixModule->addOutputProfile(address, &outputConfig,
2468 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2469 rSubmixModule->addInputProfile(address, &inputConfig,
2470 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002471
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002472 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2473 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2474 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2475 address.string(), "remote-submix");
2476 } else {
2477 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2478 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2479 address.string(), "remote-submix");
2480 }
2481 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002482 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002483 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002484 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2485 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002486
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002487 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002488 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2489 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2490 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2491 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2492 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2493 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002494 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2495 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002496 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2497 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002498 } else {
2499 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002500 }
2501 break;
2502 }
2503 }
2504
2505 if (res != NO_ERROR) {
2506 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002507 i, device, address.string());
2508 res = INVALID_OPERATION;
2509 break;
2510 } else if (!foundOutput) {
2511 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2512 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002513 res = INVALID_OPERATION;
2514 break;
2515 }
Eric Laurentc722f302014-12-10 11:21:49 -08002516 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002517 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002518 if (res != NO_ERROR) {
2519 unregisterPolicyMixes(mixes);
2520 }
2521 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002522}
2523
2524status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2525{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002526 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002527 status_t res = NO_ERROR;
2528 sp<HwModule> rSubmixModule;
2529 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002530 for (const auto& mix : mixes) {
2531 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002532
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002533 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002534 rSubmixModule = mHwModules.getModuleFromName(
2535 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2536 if (rSubmixModule == 0) {
2537 res = INVALID_OPERATION;
2538 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002539 }
2540 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002541
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002542 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002543
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002544 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2545 res = INVALID_OPERATION;
2546 continue;
2547 }
2548
2549 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2550 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2551 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2552 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2553 address.string(), "remote-submix");
2554 }
2555 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2556 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2557 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2558 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2559 address.string(), "remote-submix");
2560 }
2561 rSubmixModule->removeOutputProfile(address);
2562 rSubmixModule->removeInputProfile(address);
2563
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002564 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2565 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002566 res = INVALID_OPERATION;
2567 continue;
2568 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002569 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002570 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002571 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002572}
2573
Eric Laurente552edb2014-03-10 17:42:56 -07002574
Eric Laurente0720872014-03-11 09:30:41 -07002575status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002576{
2577 const size_t SIZE = 256;
2578 char buffer[SIZE];
2579 String8 result;
2580
2581 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2582 result.append(buffer);
2583
Eric Laurent87ffa392015-05-22 10:32:38 -07002584 snprintf(buffer, SIZE, " Primary Output: %d\n",
2585 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002586 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002587 std::string stateLiteral;
2588 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2589 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002590 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002591 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002592 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002593 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002594 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002595 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002596 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002597 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002598 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002599 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002600 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002601 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002602 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002603 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002604 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002605 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2606 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2607 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002608 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2609 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002610 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2611 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002612
François Gaffie2110e042015-03-24 08:41:51 +01002613 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002614
François Gaffie112b0af2015-11-19 16:13:25 +01002615 mAvailableOutputDevices.dump(fd, String8("Available output"));
2616 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002617 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002618 mOutputs.dump(fd);
2619 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002620 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002621 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002622 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002623 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002624
2625 return NO_ERROR;
2626}
2627
2628// This function checks for the parameters which can be offloaded.
2629// This can be enhanced depending on the capability of the DSP and policy
2630// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002631bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002632{
2633 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002634 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002635 offloadInfo.sample_rate, offloadInfo.channel_mask,
2636 offloadInfo.format,
2637 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2638 offloadInfo.has_video);
2639
Andy Hung2ddee192015-12-18 17:34:44 -08002640 if (mMasterMono) {
2641 return false; // no offloading if mono is set.
2642 }
2643
Eric Laurente552edb2014-03-10 17:42:56 -07002644 // Check if offload has been disabled
2645 char propValue[PROPERTY_VALUE_MAX];
2646 if (property_get("audio.offload.disable", propValue, "0")) {
2647 if (atoi(propValue) != 0) {
2648 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2649 return false;
2650 }
2651 }
2652
2653 // Check if stream type is music, then only allow offload as of now.
2654 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2655 {
2656 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2657 return false;
2658 }
2659
2660 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002661 const bool allowOffloadWithVideo =
2662 property_get_bool("audio.offload.video", false /* default_value */);
2663 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002664 ALOGV("isOffloadSupported: has_video == true, returning false");
2665 return false;
2666 }
2667
2668 //If duration is less than minimum value defined in property, return false
2669 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2670 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2671 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2672 return false;
2673 }
2674 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2675 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2676 return false;
2677 }
2678
2679 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2680 // creating an offloaded track and tearing it down immediately after start when audioflinger
2681 // detects there is an active non offloadable effect.
2682 // FIXME: We should check the audio session here but we do not have it in this context.
2683 // This may prevent offloading in rare situations where effects are left active by apps
2684 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002685 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002686 return false;
2687 }
2688
2689 // See if there is a profile to support this.
2690 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002691 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002692 offloadInfo.sample_rate,
2693 offloadInfo.format,
2694 offloadInfo.channel_mask,
2695 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002696 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2697 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002698}
2699
Eric Laurent6a94d692014-05-20 11:18:06 -07002700status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2701 audio_port_type_t type,
2702 unsigned int *num_ports,
2703 struct audio_port *ports,
2704 unsigned int *generation)
2705{
2706 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2707 generation == NULL) {
2708 return BAD_VALUE;
2709 }
2710 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2711 if (ports == NULL) {
2712 *num_ports = 0;
2713 }
2714
2715 size_t portsWritten = 0;
2716 size_t portsMax = *num_ports;
2717 *num_ports = 0;
2718 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002719 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2720 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002721 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002722 for (const auto& dev : mAvailableOutputDevices) {
2723 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002724 continue;
2725 }
2726 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002727 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002728 }
2729 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002730 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002731 }
2732 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002733 for (const auto& dev : mAvailableInputDevices) {
2734 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002735 continue;
2736 }
2737 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002738 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002739 }
2740 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002741 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002742 }
2743 }
2744 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2745 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2746 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2747 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2748 }
2749 *num_ports += mInputs.size();
2750 }
2751 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002752 size_t numOutputs = 0;
2753 for (size_t i = 0; i < mOutputs.size(); i++) {
2754 if (!mOutputs[i]->isDuplicated()) {
2755 numOutputs++;
2756 if (portsWritten < portsMax) {
2757 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2758 }
2759 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002760 }
Eric Laurent84c70242014-06-23 08:46:27 -07002761 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002762 }
2763 }
2764 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002765 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002766 return NO_ERROR;
2767}
2768
2769status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2770{
2771 return NO_ERROR;
2772}
2773
Eric Laurent6a94d692014-05-20 11:18:06 -07002774status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2775 audio_patch_handle_t *handle,
2776 uid_t uid)
2777{
2778 ALOGV("createAudioPatch()");
2779
2780 if (handle == NULL || patch == NULL) {
2781 return BAD_VALUE;
2782 }
2783 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2784
Eric Laurent874c42872014-08-08 15:13:39 -07002785 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2786 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2787 return BAD_VALUE;
2788 }
2789 // only one source per audio patch supported for now
2790 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002791 return INVALID_OPERATION;
2792 }
Eric Laurent874c42872014-08-08 15:13:39 -07002793
2794 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002795 return INVALID_OPERATION;
2796 }
Eric Laurent874c42872014-08-08 15:13:39 -07002797 for (size_t i = 0; i < patch->num_sinks; i++) {
2798 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2799 return INVALID_OPERATION;
2800 }
2801 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002802
2803 sp<AudioPatch> patchDesc;
2804 ssize_t index = mAudioPatches.indexOfKey(*handle);
2805
Eric Laurent6a94d692014-05-20 11:18:06 -07002806 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2807 patch->sources[0].role,
2808 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002809#if LOG_NDEBUG == 0
2810 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002811 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002812 patch->sinks[i].role,
2813 patch->sinks[i].type);
2814 }
2815#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002816
2817 if (index >= 0) {
2818 patchDesc = mAudioPatches.valueAt(index);
2819 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2820 mUidCached, patchDesc->mUid, uid);
2821 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2822 return INVALID_OPERATION;
2823 }
2824 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002825 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002826 }
2827
2828 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002829 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002830 if (outputDesc == NULL) {
2831 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2832 return BAD_VALUE;
2833 }
Eric Laurent84c70242014-06-23 08:46:27 -07002834 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2835 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002836 if (patchDesc != 0) {
2837 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2838 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2839 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2840 return BAD_VALUE;
2841 }
2842 }
Eric Laurent874c42872014-08-08 15:13:39 -07002843 DeviceVector devices;
2844 for (size_t i = 0; i < patch->num_sinks; i++) {
2845 // Only support mix to devices connection
2846 // TODO add support for mix to mix connection
2847 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2848 ALOGV("createAudioPatch() source mix but sink is not a device");
2849 return INVALID_OPERATION;
2850 }
2851 sp<DeviceDescriptor> devDesc =
2852 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2853 if (devDesc == 0) {
2854 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2855 return BAD_VALUE;
2856 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002857
François Gaffie53615e22015-03-19 09:24:12 +01002858 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002859 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002860 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002861 NULL, // updatedSamplingRate
2862 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002863 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002864 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002865 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002866 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002867 ALOGV("createAudioPatch() profile not supported for device %08x",
2868 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002869 return INVALID_OPERATION;
2870 }
2871 devices.add(devDesc);
2872 }
2873 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002874 return INVALID_OPERATION;
2875 }
Eric Laurent874c42872014-08-08 15:13:39 -07002876
Eric Laurent6a94d692014-05-20 11:18:06 -07002877 // TODO: reconfigure output format and channels here
2878 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002879 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002880 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002881 index = mAudioPatches.indexOfKey(*handle);
2882 if (index >= 0) {
2883 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2884 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2885 }
2886 patchDesc = mAudioPatches.valueAt(index);
2887 patchDesc->mUid = uid;
2888 ALOGV("createAudioPatch() success");
2889 } else {
2890 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2891 return INVALID_OPERATION;
2892 }
2893 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2894 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2895 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002896 // only one sink supported when connecting an input device to a mix
2897 if (patch->num_sinks > 1) {
2898 return INVALID_OPERATION;
2899 }
François Gaffie53615e22015-03-19 09:24:12 +01002900 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002901 if (inputDesc == NULL) {
2902 return BAD_VALUE;
2903 }
2904 if (patchDesc != 0) {
2905 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2906 return BAD_VALUE;
2907 }
2908 }
2909 sp<DeviceDescriptor> devDesc =
2910 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2911 if (devDesc == 0) {
2912 return BAD_VALUE;
2913 }
2914
François Gaffie53615e22015-03-19 09:24:12 +01002915 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002916 devDesc->mAddress,
2917 patch->sinks[0].sample_rate,
2918 NULL, /*updatedSampleRate*/
2919 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002920 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002921 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002922 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002923 // FIXME for the parameter type,
2924 // and the NONE
2925 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002926 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002927 return INVALID_OPERATION;
2928 }
2929 // TODO: reconfigure output format and channels here
2930 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002931 devDesc->type(), inputDesc->mIoHandle);
2932 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002933 index = mAudioPatches.indexOfKey(*handle);
2934 if (index >= 0) {
2935 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2936 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2937 }
2938 patchDesc = mAudioPatches.valueAt(index);
2939 patchDesc->mUid = uid;
2940 ALOGV("createAudioPatch() success");
2941 } else {
2942 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2943 return INVALID_OPERATION;
2944 }
2945 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2946 // device to device connection
2947 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002948 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002949 return BAD_VALUE;
2950 }
2951 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002952 sp<DeviceDescriptor> srcDeviceDesc =
2953 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002954 if (srcDeviceDesc == 0) {
2955 return BAD_VALUE;
2956 }
Eric Laurent874c42872014-08-08 15:13:39 -07002957
Eric Laurent6a94d692014-05-20 11:18:06 -07002958 //update source and sink with our own data as the data passed in the patch may
2959 // be incomplete.
2960 struct audio_patch newPatch = *patch;
2961 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002962
Eric Laurent874c42872014-08-08 15:13:39 -07002963 for (size_t i = 0; i < patch->num_sinks; i++) {
2964 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2965 ALOGV("createAudioPatch() source device but one sink is not a device");
2966 return INVALID_OPERATION;
2967 }
2968
2969 sp<DeviceDescriptor> sinkDeviceDesc =
2970 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2971 if (sinkDeviceDesc == 0) {
2972 return BAD_VALUE;
2973 }
2974 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2975
Eric Laurent3bcf8592015-04-03 12:13:24 -07002976 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08002977 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07002978 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002979 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002980 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002981 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002982 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002983 return INVALID_OPERATION;
2984 }
Eric Laurent874c42872014-08-08 15:13:39 -07002985 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002986 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002987 // if the sink device is reachable via an opened output stream, request to go via
2988 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002989 audio_io_handle_t output = selectOutput(outputs,
2990 AUDIO_OUTPUT_FLAG_NONE,
2991 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002992 if (output != AUDIO_IO_HANDLE_NONE) {
2993 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2994 if (outputDesc->isDuplicated()) {
2995 return INVALID_OPERATION;
2996 }
2997 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002998 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002999 newPatch.num_sources = 2;
3000 }
Eric Laurent83b88082014-06-20 18:31:16 -07003001 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003002 }
3003 // TODO: check from routing capabilities in config file and other conflicting patches
3004
3005 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3006 if (index >= 0) {
3007 afPatchHandle = patchDesc->mAfPatchHandle;
3008 }
3009
3010 status_t status = mpClientInterface->createAudioPatch(&newPatch,
3011 &afPatchHandle,
3012 0);
3013 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
3014 status, afPatchHandle);
3015 if (status == NO_ERROR) {
3016 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01003017 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003018 addAudioPatch(patchDesc->mHandle, patchDesc);
3019 } else {
3020 patchDesc->mPatch = newPatch;
3021 }
3022 patchDesc->mAfPatchHandle = afPatchHandle;
3023 *handle = patchDesc->mHandle;
3024 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003025 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003026 } else {
3027 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
3028 status);
3029 return INVALID_OPERATION;
3030 }
3031 } else {
3032 return BAD_VALUE;
3033 }
3034 } else {
3035 return BAD_VALUE;
3036 }
3037 return NO_ERROR;
3038}
3039
3040status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3041 uid_t uid)
3042{
3043 ALOGV("releaseAudioPatch() patch %d", handle);
3044
3045 ssize_t index = mAudioPatches.indexOfKey(handle);
3046
3047 if (index < 0) {
3048 return BAD_VALUE;
3049 }
3050 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3051 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3052 mUidCached, patchDesc->mUid, uid);
3053 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3054 return INVALID_OPERATION;
3055 }
3056
3057 struct audio_patch *patch = &patchDesc->mPatch;
3058 patchDesc->mUid = mUidCached;
3059 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003060 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003061 if (outputDesc == NULL) {
3062 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3063 return BAD_VALUE;
3064 }
3065
Eric Laurentc75307b2015-03-17 15:29:32 -07003066 setOutputDevice(outputDesc,
3067 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003068 true,
3069 0,
3070 NULL);
3071 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3072 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003073 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003074 if (inputDesc == NULL) {
3075 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3076 return BAD_VALUE;
3077 }
3078 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003079 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003080 true,
3081 NULL);
3082 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003083 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3084 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3085 status, patchDesc->mAfPatchHandle);
3086 removeAudioPatch(patchDesc->mHandle);
3087 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003088 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003089 } else {
3090 return BAD_VALUE;
3091 }
3092 } else {
3093 return BAD_VALUE;
3094 }
3095 return NO_ERROR;
3096}
3097
3098status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3099 struct audio_patch *patches,
3100 unsigned int *generation)
3101{
François Gaffie53615e22015-03-19 09:24:12 +01003102 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003103 return BAD_VALUE;
3104 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003105 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003106 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003107}
3108
Eric Laurente1715a42014-05-20 11:30:42 -07003109status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003110{
Eric Laurente1715a42014-05-20 11:30:42 -07003111 ALOGV("setAudioPortConfig()");
3112
3113 if (config == NULL) {
3114 return BAD_VALUE;
3115 }
3116 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3117 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003118 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3119 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003120 }
3121
Eric Laurenta121f902014-06-03 13:32:54 -07003122 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003123 if (config->type == AUDIO_PORT_TYPE_MIX) {
3124 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003125 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003126 if (outputDesc == NULL) {
3127 return BAD_VALUE;
3128 }
Eric Laurent84c70242014-06-23 08:46:27 -07003129 ALOG_ASSERT(!outputDesc->isDuplicated(),
3130 "setAudioPortConfig() called on duplicated output %d",
3131 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003132 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003133 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003134 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003135 if (inputDesc == NULL) {
3136 return BAD_VALUE;
3137 }
Eric Laurenta121f902014-06-03 13:32:54 -07003138 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003139 } else {
3140 return BAD_VALUE;
3141 }
3142 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3143 sp<DeviceDescriptor> deviceDesc;
3144 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3145 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3146 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3147 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3148 } else {
3149 return BAD_VALUE;
3150 }
3151 if (deviceDesc == NULL) {
3152 return BAD_VALUE;
3153 }
Eric Laurenta121f902014-06-03 13:32:54 -07003154 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003155 } else {
3156 return BAD_VALUE;
3157 }
3158
Eric Laurenta121f902014-06-03 13:32:54 -07003159 struct audio_port_config backupConfig;
3160 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3161 if (status == NO_ERROR) {
3162 struct audio_port_config newConfig;
3163 audioPortConfig->toAudioPortConfig(&newConfig, config);
3164 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003165 }
Eric Laurenta121f902014-06-03 13:32:54 -07003166 if (status != NO_ERROR) {
3167 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003168 }
Eric Laurente1715a42014-05-20 11:30:42 -07003169
3170 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003171}
3172
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003173void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3174{
Eric Laurentd60560a2015-04-10 11:31:20 -07003175 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003176 clearAudioPatches(uid);
3177 clearSessionRoutes(uid);
3178}
3179
Eric Laurent6a94d692014-05-20 11:18:06 -07003180void AudioPolicyManager::clearAudioPatches(uid_t uid)
3181{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003182 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003183 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3184 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003185 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003186 }
3187 }
3188}
3189
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003190void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3191 audio_io_handle_t ouptutToSkip)
3192{
3193 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3194 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3195 for (size_t j = 0; j < mOutputs.size(); j++) {
3196 if (mOutputs.keyAt(j) == ouptutToSkip) {
3197 continue;
3198 }
3199 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3200 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3201 continue;
3202 }
3203 // If the default device for this strategy is on another output mix,
3204 // invalidate all tracks in this strategy to force re connection.
3205 // Otherwise select new device on the output mix.
3206 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003207 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003208 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3209 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3210 }
3211 }
3212 } else {
3213 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3214 setOutputDevice(outputDesc, newDevice, false);
3215 }
3216 }
3217}
3218
3219void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3220{
3221 // remove output routes associated with this uid
3222 SortedVector<routing_strategy> affectedStrategies;
3223 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3224 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3225 if (route->mUid == uid) {
3226 mOutputRoutes.removeItemsAt(i);
3227 if (route->mDeviceDescriptor != 0) {
3228 affectedStrategies.add(getStrategy(route->mStreamType));
3229 }
3230 }
3231 }
3232 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003233 for (const auto& strategy : affectedStrategies) {
3234 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003235 }
3236
3237 // remove input routes associated with this uid
3238 SortedVector<audio_source_t> affectedSources;
3239 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3240 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3241 if (route->mUid == uid) {
3242 mInputRoutes.removeItemsAt(i);
3243 if (route->mDeviceDescriptor != 0) {
3244 affectedSources.add(route->mSource);
3245 }
3246 }
3247 }
3248 // reroute inputs if necessary
3249 SortedVector<audio_io_handle_t> inputsToClose;
3250 for (size_t i = 0; i < mInputs.size(); i++) {
3251 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003252 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003253 inputsToClose.add(inputDesc->mIoHandle);
3254 }
3255 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003256 for (const auto& input : inputsToClose) {
3257 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003258 }
3259}
3260
Eric Laurentd60560a2015-04-10 11:31:20 -07003261void AudioPolicyManager::clearAudioSources(uid_t uid)
3262{
3263 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3264 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3265 if (sourceDesc->mUid == uid) {
3266 stopAudioSource(mAudioSources.keyAt(i));
3267 }
3268 }
3269}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003270
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003271status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3272 audio_io_handle_t *ioHandle,
3273 audio_devices_t *device)
3274{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003275 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3276 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003277 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003278
François Gaffiedf372692015-03-19 10:43:27 +01003279 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003280}
3281
Eric Laurentd60560a2015-04-10 11:31:20 -07003282status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3283 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003284 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003285 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003286{
Eric Laurentd60560a2015-04-10 11:31:20 -07003287 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3288 if (source == NULL || attributes == NULL || handle == NULL) {
3289 return BAD_VALUE;
3290 }
3291
Glenn Kasten559d4392016-03-29 13:42:57 -07003292 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003293
3294 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3295 source->type != AUDIO_PORT_TYPE_DEVICE) {
3296 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3297 return INVALID_OPERATION;
3298 }
3299
3300 sp<DeviceDescriptor> srcDeviceDesc =
3301 mAvailableInputDevices.getDevice(source->ext.device.type,
3302 String8(source->ext.device.address));
3303 if (srcDeviceDesc == 0) {
3304 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3305 return BAD_VALUE;
3306 }
3307 sp<AudioSourceDescriptor> sourceDesc =
3308 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3309
3310 struct audio_patch dummyPatch;
3311 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3312 sourceDesc->mPatchDesc = patchDesc;
3313
3314 status_t status = connectAudioSource(sourceDesc);
3315 if (status == NO_ERROR) {
3316 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3317 *handle = sourceDesc->getHandle();
3318 }
3319 return status;
3320}
3321
3322status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3323{
3324 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3325
3326 // make sure we only have one patch per source.
3327 disconnectAudioSource(sourceDesc);
3328
3329 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003330 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003331 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3332
3333 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3334 sp<DeviceDescriptor> sinkDeviceDesc =
3335 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3336
3337 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3338 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3339
3340 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3341 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003342 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003343 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3344 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3345 // create patch between src device and output device
3346 // create Hwoutput and add to mHwOutputs
3347 } else {
3348 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3349 audio_io_handle_t output =
3350 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3351 if (output == AUDIO_IO_HANDLE_NONE) {
3352 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3353 return INVALID_OPERATION;
3354 }
3355 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3356 if (outputDesc->isDuplicated()) {
3357 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3358 return INVALID_OPERATION;
3359 }
Eric Laurent733ce942017-12-07 12:18:25 -08003360 status_t status = outputDesc->start();
3361 if (status != NO_ERROR) {
3362 return status;
3363 }
3364
Eric Laurentd60560a2015-04-10 11:31:20 -07003365 // create a special patch with no sink and two sources:
3366 // - the second source indicates to PatchPanel through which output mix this patch should
3367 // be connected as well as the stream type for volume control
3368 // - the sink is defined by whatever output device is currently selected for the output
3369 // though which this patch is routed.
3370 patch->num_sinks = 0;
3371 patch->num_sources = 2;
3372 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3373 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3374 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003375 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003376 &afPatchHandle,
3377 0);
3378 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3379 status, afPatchHandle);
3380 if (status != NO_ERROR) {
3381 ALOGW("%s patch panel could not connect device patch, error %d",
3382 __FUNCTION__, status);
3383 return INVALID_OPERATION;
3384 }
3385 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003386 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003387
3388 if (status != NO_ERROR) {
3389 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3390 return status;
3391 }
3392 sourceDesc->mSwOutput = outputDesc;
3393 if (delayMs != 0) {
3394 usleep(delayMs * 1000);
3395 }
3396 }
3397
3398 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3399 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3400
3401 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003402}
3403
Glenn Kasten559d4392016-03-29 13:42:57 -07003404status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003405{
Eric Laurentd60560a2015-04-10 11:31:20 -07003406 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3407 ALOGV("%s handle %d", __FUNCTION__, handle);
3408 if (sourceDesc == 0) {
3409 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3410 return BAD_VALUE;
3411 }
3412 status_t status = disconnectAudioSource(sourceDesc);
3413
3414 mAudioSources.removeItem(handle);
3415 return status;
3416}
3417
Andy Hung2ddee192015-12-18 17:34:44 -08003418status_t AudioPolicyManager::setMasterMono(bool mono)
3419{
3420 if (mMasterMono == mono) {
3421 return NO_ERROR;
3422 }
3423 mMasterMono = mono;
3424 // if enabling mono we close all offloaded devices, which will invalidate the
3425 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3426 // for recreating the new AudioTrack as non-offloaded PCM.
3427 //
3428 // If disabling mono, we leave all tracks as is: we don't know which clients
3429 // and tracks are able to be recreated as offloaded. The next "song" should
3430 // play back offloaded.
3431 if (mMasterMono) {
3432 Vector<audio_io_handle_t> offloaded;
3433 for (size_t i = 0; i < mOutputs.size(); ++i) {
3434 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3435 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3436 offloaded.push(desc->mIoHandle);
3437 }
3438 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003439 for (const auto& handle : offloaded) {
3440 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003441 }
3442 }
3443 // update master mono for all remaining outputs
3444 for (size_t i = 0; i < mOutputs.size(); ++i) {
3445 updateMono(mOutputs.keyAt(i));
3446 }
3447 return NO_ERROR;
3448}
3449
3450status_t AudioPolicyManager::getMasterMono(bool *mono)
3451{
3452 *mono = mMasterMono;
3453 return NO_ERROR;
3454}
3455
Eric Laurentac9cef52017-06-09 15:46:26 -07003456float AudioPolicyManager::getStreamVolumeDB(
3457 audio_stream_type_t stream, int index, audio_devices_t device)
3458{
3459 return computeVolume(stream, index, device);
3460}
3461
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003462void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3463{
3464 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3465
3466 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3467 for (size_t i = 0; i < activeInputs.size(); i++) {
3468 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3469 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3470 for (size_t j = 0; j < activeSessions.size(); j++) {
3471 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3472 if (activeSession->uid() == uid) {
3473 activeSession->setSilenced(silenced);
3474 }
3475 }
3476 }
3477}
3478
Eric Laurentd60560a2015-04-10 11:31:20 -07003479status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3480{
3481 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3482
3483 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3484 if (patchDesc == 0) {
3485 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3486 sourceDesc->mPatchDesc->mHandle);
3487 return BAD_VALUE;
3488 }
3489 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3490
Eric Laurent28d09f02016-03-08 10:43:05 -08003491 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003492 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3493 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003494 status_t status = stopSource(swOutputDesc, stream, false);
3495 if (status == NO_ERROR) {
3496 swOutputDesc->stop();
3497 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003498 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3499 } else {
3500 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3501 if (hwOutputDesc != 0) {
3502 // release patch between src device and output device
3503 // close Hwoutput and remove from mHwOutputs
3504 } else {
3505 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3506 }
3507 }
3508 return NO_ERROR;
3509}
3510
3511sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3512 audio_io_handle_t output, routing_strategy strategy)
3513{
3514 sp<AudioSourceDescriptor> source;
3515 for (size_t i = 0; i < mAudioSources.size(); i++) {
3516 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3517 routing_strategy sourceStrategy =
3518 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3519 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3520 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3521 source = sourceDesc;
3522 break;
3523 }
3524 }
3525 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003526}
3527
Eric Laurente552edb2014-03-10 17:42:56 -07003528// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003529// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003530// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003531uint32_t AudioPolicyManager::nextAudioPortGeneration()
3532{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003533 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003534}
3535
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003536#ifdef USE_XML_AUDIO_POLICY_CONF
3537// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3538static const char *kConfigLocationList[] =
3539 {"/odm/etc", "/vendor/etc", "/system/etc"};
3540static const int kConfigLocationListSize =
3541 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3542
3543static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3544 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
3545 status_t ret;
3546
3547 for (int i = 0; i < kConfigLocationListSize; i++) {
3548 PolicySerializer serializer;
Aniket Kumar Lata2ad79392018-01-31 20:26:59 -08003549 bool use_a2dp_offload_config =
3550 property_get_bool("persist.bluetooth.a2dp_offload.enable", false);
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003551 snprintf(audioPolicyXmlConfigFile,
3552 sizeof(audioPolicyXmlConfigFile),
3553 "%s/%s",
3554 kConfigLocationList[i],
Aniket Kumar Lata2ad79392018-01-31 20:26:59 -08003555 use_a2dp_offload_config ? AUDIO_POLICY_A2DP_OFFLOAD_XML_CONFIG_FILE_NAME :
3556 AUDIO_POLICY_XML_CONFIG_FILE_NAME);
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003557 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3558 if (ret == NO_ERROR) {
3559 break;
3560 }
3561 }
3562 return ret;
3563}
3564#endif
3565
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003566AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3567 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003568 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003569 mUidCached(getuid()),
3570 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003571 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003572 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003573#ifdef USE_XML_AUDIO_POLICY_CONF
3574 mVolumeCurves(new VolumeCurvesCollection()),
3575 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003576 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003577#else
3578 mVolumeCurves(new StreamDescriptorCollection()),
3579 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3580 mDefaultOutputDevice),
3581#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003582 mAudioPortGeneration(1),
3583 mBeaconMuteRefCount(0),
3584 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003585 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003586 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003587 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003588 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3589 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003590{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003591}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003592
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003593AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3594 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3595{
3596 loadConfig();
3597 initialize();
3598}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003599
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003600void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003601#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003602 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003603#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003604 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3605 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003606#endif
3607 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003608 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003609 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003610}
3611
3612status_t AudioPolicyManager::initialize() {
3613 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003614
3615 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003616 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3617 if (!engineInstance) {
3618 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003619 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003620 }
3621 // Retrieve the Policy Manager Interface
3622 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3623 if (mEngine == NULL) {
3624 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003625 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003626 }
3627 mEngine->setObserver(this);
3628 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003629 if (status != NO_ERROR) {
3630 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3631 return status;
3632 }
François Gaffie2110e042015-03-24 08:41:51 +01003633
Eric Laurent3a4311c2014-03-17 12:00:47 -07003634 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003635 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003636 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3637 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003638 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003639 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003640 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3641 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003642 continue;
3643 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003644 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003645 // open all output streams needed to access attached devices
3646 // except for direct output streams that are only opened when they are actually
3647 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003648 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003649 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003650 if (!outProfile->canOpenNewIo()) {
3651 ALOGE("Invalid Output profile max open count %u for profile %s",
3652 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3653 continue;
3654 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003655 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003656 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003657 continue;
3658 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003659 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003660 mTtsOutputAvailable = true;
3661 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003662
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003663 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003664 continue;
3665 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003666 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003667 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3668 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003669 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003670 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003671 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003672 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003673 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003674 if ((profileType & outputDeviceTypes) == 0) {
3675 continue;
3676 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003677 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3678 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003679 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3680 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3681 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3682 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003683 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003684 status_t status = outputDesc->open(nullptr, profileType, address,
3685 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003686
3687 if (status != NO_ERROR) {
3688 ALOGW("Cannot open output stream for device %08x on hw module %s",
3689 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003690 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003691 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003692 for (const auto& dev : supportedDevices) {
3693 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003694 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003695 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003696 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003697 }
3698 }
3699 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003700 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003701 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003702 }
3703 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003704 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003705 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003706 true,
3707 0,
3708 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003709 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003710 }
Eric Laurente552edb2014-03-10 17:42:56 -07003711 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003712 // open input streams needed to access attached devices to validate
3713 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003714 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003715 if (!inProfile->canOpenNewIo()) {
3716 ALOGE("Invalid Input profile max open count %u for profile %s",
3717 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3718 continue;
3719 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003720 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003721 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003722 continue;
3723 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003724 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003725 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003726 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3727
Eric Laurentd78f1532014-09-16 16:38:20 -07003728 if ((profileType & inputDeviceTypes) == 0) {
3729 continue;
3730 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003731 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003732 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003733
Eric Laurent53b810e2017-12-10 17:25:10 -08003734 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
3735 // the inputs vector must be of size >= 1, but we don't want to crash here
3736 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3737 : String8("");
3738 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
3739 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
3740
Eric Laurentd78f1532014-09-16 16:38:20 -07003741 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003742 status_t status = inputDesc->open(nullptr,
3743 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08003744 address,
Eric Laurentfe231122017-11-17 17:48:06 -08003745 AUDIO_SOURCE_MIC,
3746 AUDIO_INPUT_FLAG_NONE,
3747 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003748
3749 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003750 for (const auto& dev : inProfile->getSupportedDevices()) {
3751 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003752 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003753 if (index >= 0) {
3754 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3755 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003756 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003757 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003758 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003759 }
3760 }
Eric Laurentfe231122017-11-17 17:48:06 -08003761 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003762 } else {
3763 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003764 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003765 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003766 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003767 }
3768 }
3769 // make sure all attached devices have been allocated a unique ID
3770 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003771 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003772 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003773 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3774 continue;
3775 }
François Gaffie2110e042015-03-24 08:41:51 +01003776 // The device is now validated and can be appended to the available devices of the engine
3777 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3778 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003779 i++;
3780 }
3781 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003782 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003783 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003784 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3785 continue;
3786 }
François Gaffie2110e042015-03-24 08:41:51 +01003787 // The device is now validated and can be appended to the available devices of the engine
3788 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3789 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003790 i++;
3791 }
3792 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003793 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003794 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003795 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07003796 }
jiabin9ff780e2018-03-19 18:19:52 -07003797 // If microphones address is empty, set it according to device type
3798 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
3799 if (mAvailableInputDevices[i]->mAddress.isEmpty()) {
3800 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
3801 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
3802 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
3803 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS);
3804 }
3805 }
3806 }
Eric Laurente552edb2014-03-10 17:42:56 -07003807
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003808 if (mPrimaryOutput == 0) {
3809 ALOGE("Failed to open primary output");
3810 status = NO_INIT;
3811 }
Eric Laurente552edb2014-03-10 17:42:56 -07003812
3813 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003814 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07003815}
3816
Eric Laurente0720872014-03-11 09:30:41 -07003817AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003818{
Eric Laurente552edb2014-03-10 17:42:56 -07003819 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003820 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003821 }
3822 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003823 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003824 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003825 mAvailableOutputDevices.clear();
3826 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003827 mOutputs.clear();
3828 mInputs.clear();
3829 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003830 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003831}
3832
Eric Laurente0720872014-03-11 09:30:41 -07003833status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003834{
Eric Laurent87ffa392015-05-22 10:32:38 -07003835 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003836}
3837
Eric Laurente552edb2014-03-10 17:42:56 -07003838// ---
3839
Eric Laurent98e38192018-02-15 18:31:53 -08003840void AudioPolicyManager::addOutput(audio_io_handle_t output,
3841 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003842{
Eric Laurent1c333e22014-05-20 10:48:17 -07003843 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08003844 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08003845 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003846 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003847 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003848}
3849
François Gaffie53615e22015-03-19 09:24:12 +01003850void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3851{
3852 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003853 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003854}
3855
Eric Laurent98e38192018-02-15 18:31:53 -08003856void AudioPolicyManager::addInput(audio_io_handle_t input,
3857 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003858{
Eric Laurent1c333e22014-05-20 10:48:17 -07003859 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003860 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003861}
Eric Laurente552edb2014-03-10 17:42:56 -07003862
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003863void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003864 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003865 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003866 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003867 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003868 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003869 if (devDesc != 0) {
3870 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3871 desc->mIoHandle, address.string());
3872 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003873 }
3874}
3875
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003876status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003877 audio_policy_dev_state_t state,
3878 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003879 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003880{
François Gaffie53615e22015-03-19 09:24:12 +01003881 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003882 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003883
3884 if (audio_device_is_digital(device)) {
3885 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003886 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003887 }
Eric Laurente552edb2014-03-10 17:42:56 -07003888
Eric Laurent3b73df72014-03-11 09:06:29 -07003889 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003890 // first list already open outputs that can be routed to this device
3891 for (size_t i = 0; i < mOutputs.size(); i++) {
3892 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003893 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003894 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003895 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3896 outputs.add(mOutputs.keyAt(i));
3897 } else {
3898 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003899 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003900 }
Eric Laurente552edb2014-03-10 17:42:56 -07003901 }
3902 }
3903 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003904 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003905 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003906 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3907 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003908 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003909 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003910 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003911 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003912 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3913 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003914 }
Eric Laurente552edb2014-03-10 17:42:56 -07003915 }
3916 }
3917 }
3918
Eric Laurent7b279bb2015-12-14 10:18:23 -08003919 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003920
Eric Laurente552edb2014-03-10 17:42:56 -07003921 if (profiles.isEmpty() && outputs.isEmpty()) {
3922 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3923 return BAD_VALUE;
3924 }
3925
3926 // open outputs for matching profiles if needed. Direct outputs are also opened to
3927 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3928 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003929 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003930
3931 // nothing to do if one output is already opened for this profile
3932 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003933 for (j = 0; j < outputs.size(); j++) {
3934 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003935 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003936 // matching profile: save the sample rates, format and channel masks supported
3937 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003938 if (audio_device_is_digital(device)) {
3939 devDesc->importAudioPort(profile);
3940 }
Eric Laurente552edb2014-03-10 17:42:56 -07003941 break;
3942 }
3943 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003944 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003945 continue;
3946 }
3947
Eric Laurent3974e3b2017-12-07 17:58:43 -08003948 if (!profile->canOpenNewIo()) {
3949 ALOGW("Max Output number %u already opened for this profile %s",
3950 profile->maxOpenCount, profile->getTagName().c_str());
3951 continue;
3952 }
3953
Eric Laurent83efe1c2017-07-09 16:51:08 -07003954 ALOGV("opening output for device %08x with params %s profile %p name %s",
3955 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003956 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003957 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003958 status_t status = desc->open(nullptr, device, address,
3959 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003960
Eric Laurentfe231122017-11-17 17:48:06 -08003961 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003962 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003963 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003964 char *param = audio_device_address_to_parameter(device, address);
3965 mpClientInterface->setParameters(output, String8(param));
3966 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003967 }
Phil Burk00eeb322016-03-31 12:41:00 -07003968 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003969 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003970 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003971 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003972 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003973 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003974 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003975 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003976 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3977 profile->pickAudioProfile(
3978 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003979 config.offload_info.sample_rate = config.sample_rate;
3980 config.offload_info.channel_mask = config.channel_mask;
3981 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003982
3983 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3984 AUDIO_OUTPUT_FLAG_NONE, &output);
3985 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003986 output = AUDIO_IO_HANDLE_NONE;
3987 }
Eric Laurentd4692962014-05-05 18:13:44 -07003988 }
3989
Eric Laurentcf2c0212014-07-25 16:20:43 -07003990 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003991 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003992 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003993 sp<AudioPolicyMix> policyMix;
3994 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003995 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3996 address.string());
3997 }
François Gaffie036e1e92015-03-19 10:16:24 +01003998 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07003999 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01004000
Eric Laurent87ffa392015-05-22 10:32:38 -07004001 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
4002 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08004003 // no duplicated output for direct outputs and
4004 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07004005 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004006
Eric Laurentd4692962014-05-05 18:13:44 -07004007 //TODO: configure audio effect output stage here
4008
4009 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08004010 sp<SwAudioOutputDescriptor> dupOutputDesc =
4011 new SwAudioOutputDescriptor(NULL, mpClientInterface);
4012 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
4013 &duplicatedOutput);
4014 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004015 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07004016 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07004017 } else {
4018 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07004019 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08004020 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01004021 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07004022 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004023 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004024 }
Eric Laurente552edb2014-03-10 17:42:56 -07004025 }
4026 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004027 } else {
4028 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004029 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004030 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004031 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004032 profiles.removeAt(profile_index);
4033 profile_index--;
4034 } else {
4035 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07004036 // Load digital format info only for digital devices
4037 if (audio_device_is_digital(device)) {
4038 devDesc->importAudioPort(profile);
4039 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004040
François Gaffie53615e22015-03-19 09:24:12 +01004041 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004042 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
4043 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004044 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004045 NULL/*patch handle*/, address.string());
4046 }
Eric Laurente552edb2014-03-10 17:42:56 -07004047 ALOGV("checkOutputsForDevice(): adding output %d", output);
4048 }
4049 }
4050
4051 if (profiles.isEmpty()) {
4052 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4053 return BAD_VALUE;
4054 }
Eric Laurentd4692962014-05-05 18:13:44 -07004055 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004056 // check if one opened output is not needed any more after disconnecting one device
4057 for (size_t i = 0; i < mOutputs.size(); i++) {
4058 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004059 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004060 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004061 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004062 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004063 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004064 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004065 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4066 mOutputs.keyAt(i));
4067 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004068 }
Eric Laurente552edb2014-03-10 17:42:56 -07004069 }
4070 }
Eric Laurentd4692962014-05-05 18:13:44 -07004071 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004072 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004073 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4074 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004075 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004076 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004077 "clearing direct output profile %zu on module %s",
4078 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004079 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004080 }
4081 }
4082 }
4083 }
4084 return NO_ERROR;
4085}
4086
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004087status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004088 audio_policy_dev_state_t state,
4089 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004090 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004091{
Paul McLean9080a4c2015-06-18 08:24:02 -07004092 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004093 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004094
4095 if (audio_device_is_digital(device)) {
4096 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004097 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004098 }
4099
Eric Laurentd4692962014-05-05 18:13:44 -07004100 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4101 // first list already open inputs that can be routed to this device
4102 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4103 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004104 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004105 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4106 inputs.add(mInputs.keyAt(input_index));
4107 }
4108 }
4109
4110 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004111 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004112 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004113 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004114 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004115 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004116 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004117
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004118 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004119 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004120 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004121 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004122 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4123 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004124 }
Eric Laurentd4692962014-05-05 18:13:44 -07004125 }
4126 }
4127 }
4128
4129 if (profiles.isEmpty() && inputs.isEmpty()) {
4130 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4131 return BAD_VALUE;
4132 }
4133
4134 // open inputs for matching profiles if needed. Direct inputs are also opened to
4135 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4136 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4137
Eric Laurent1c333e22014-05-20 10:48:17 -07004138 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004139
Eric Laurentd4692962014-05-05 18:13:44 -07004140 // nothing to do if one input is already opened for this profile
4141 size_t input_index;
4142 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4143 desc = mInputs.valueAt(input_index);
4144 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004145 if (audio_device_is_digital(device)) {
4146 devDesc->importAudioPort(profile);
4147 }
Eric Laurentd4692962014-05-05 18:13:44 -07004148 break;
4149 }
4150 }
4151 if (input_index != mInputs.size()) {
4152 continue;
4153 }
4154
Eric Laurent3974e3b2017-12-07 17:58:43 -08004155 if (!profile->canOpenNewIo()) {
4156 ALOGW("Max Input number %u already opened for this profile %s",
4157 profile->maxOpenCount, profile->getTagName().c_str());
4158 continue;
4159 }
4160
Eric Laurentfe231122017-11-17 17:48:06 -08004161 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004162 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004163 status_t status = desc->open(nullptr,
4164 device,
4165 address,
4166 AUDIO_SOURCE_MIC,
4167 AUDIO_INPUT_FLAG_NONE,
4168 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004169
Eric Laurentcf2c0212014-07-25 16:20:43 -07004170 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004171 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004172 char *param = audio_device_address_to_parameter(device, address);
4173 mpClientInterface->setParameters(input, String8(param));
4174 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004175 }
Phil Burk00eeb322016-03-31 12:41:00 -07004176 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004177 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004178 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004179 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004180 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004181 }
4182
4183 if (input != 0) {
4184 addInput(input, desc);
4185 }
4186 } // endif input != 0
4187
Eric Laurentcf2c0212014-07-25 16:20:43 -07004188 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004189 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004190 profiles.removeAt(profile_index);
4191 profile_index--;
4192 } else {
4193 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004194 if (audio_device_is_digital(device)) {
4195 devDesc->importAudioPort(profile);
4196 }
Eric Laurentd4692962014-05-05 18:13:44 -07004197 ALOGV("checkInputsForDevice(): adding input %d", input);
4198 }
4199 } // end scan profiles
4200
4201 if (profiles.isEmpty()) {
4202 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4203 return BAD_VALUE;
4204 }
4205 } else {
4206 // Disconnect
4207 // check if one opened input is not needed any more after disconnecting one device
4208 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4209 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004210 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004211 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4212 mInputs.keyAt(input_index));
4213 inputs.add(mInputs.keyAt(input_index));
4214 }
4215 }
4216 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004217 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004218 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004219 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004220 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004221 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004222 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004223 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4224 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004225 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004226 }
4227 }
4228 }
4229 } // end disconnect
4230
4231 return NO_ERROR;
4232}
4233
4234
Eric Laurente0720872014-03-11 09:30:41 -07004235void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004236{
4237 ALOGV("closeOutput(%d)", output);
4238
Eric Laurentc75307b2015-03-17 15:29:32 -07004239 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004240 if (outputDesc == NULL) {
4241 ALOGW("closeOutput() unknown output %d", output);
4242 return;
4243 }
François Gaffie036e1e92015-03-19 10:16:24 +01004244 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004245
Eric Laurente552edb2014-03-10 17:42:56 -07004246 // look for duplicated outputs connected to the output being removed.
4247 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004248 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004249 if (dupOutputDesc->isDuplicated() &&
4250 (dupOutputDesc->mOutput1 == outputDesc ||
4251 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004252 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004253 if (dupOutputDesc->mOutput1 == outputDesc) {
4254 outputDesc2 = dupOutputDesc->mOutput2;
4255 } else {
4256 outputDesc2 = dupOutputDesc->mOutput1;
4257 }
4258 // As all active tracks on duplicated output will be deleted,
4259 // and as they were also referenced on the other output, the reference
4260 // count for their stream type must be adjusted accordingly on
4261 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004262 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004263 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004264 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004265 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004266 }
Eric Laurent733ce942017-12-07 12:18:25 -08004267 // stop() will be a no op if the output is still active but is needed in case all
4268 // active streams refcounts where cleared above
4269 if (wasActive) {
4270 outputDesc2->stop();
4271 }
Eric Laurente552edb2014-03-10 17:42:56 -07004272 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4273 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4274
4275 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004276 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004277 }
4278 }
4279
Eric Laurent05b90f82014-08-27 15:32:29 -07004280 nextAudioPortGeneration();
4281
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004282 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004283 if (index >= 0) {
4284 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004285 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004286 mAudioPatches.removeItemsAt(index);
4287 mpClientInterface->onAudioPatchListUpdate();
4288 }
4289
Eric Laurentfe231122017-11-17 17:48:06 -08004290 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004291
François Gaffie53615e22015-03-19 09:24:12 +01004292 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004293 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004294}
4295
4296void AudioPolicyManager::closeInput(audio_io_handle_t input)
4297{
4298 ALOGV("closeInput(%d)", input);
4299
4300 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4301 if (inputDesc == NULL) {
4302 ALOGW("closeInput() unknown input %d", input);
4303 return;
4304 }
4305
Eric Laurent6a94d692014-05-20 11:18:06 -07004306 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004307
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004308 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004309 if (index >= 0) {
4310 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004311 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004312 mAudioPatches.removeItemsAt(index);
4313 mpClientInterface->onAudioPatchListUpdate();
4314 }
4315
Eric Laurentfe231122017-11-17 17:48:06 -08004316 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004317 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004318}
4319
Eric Laurentc75307b2015-03-17 15:29:32 -07004320SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4321 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004322 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004323{
4324 SortedVector<audio_io_handle_t> outputs;
4325
4326 ALOGVV("getOutputsForDevice() device %04x", device);
4327 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004328 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004329 i, openOutputs.valueAt(i)->isDuplicated(),
4330 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004331 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4332 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4333 outputs.add(openOutputs.keyAt(i));
4334 }
4335 }
4336 return outputs;
4337}
4338
Eric Laurente0720872014-03-11 09:30:41 -07004339bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004340 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004341{
4342 if (outputs1.size() != outputs2.size()) {
4343 return false;
4344 }
4345 for (size_t i = 0; i < outputs1.size(); i++) {
4346 if (outputs1[i] != outputs2[i]) {
4347 return false;
4348 }
4349 }
4350 return true;
4351}
4352
Eric Laurente0720872014-03-11 09:30:41 -07004353void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004354{
4355 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4356 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4357 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4358 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4359
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004360 // also take into account external policy-related changes: add all outputs which are
4361 // associated with policies in the "before" and "after" output vectors
4362 ALOGVV("checkOutputForStrategy(): policy related outputs");
4363 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004364 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004365 if (desc != 0 && desc->mPolicyMix != NULL) {
4366 srcOutputs.add(desc->mIoHandle);
4367 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4368 }
4369 }
4370 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004371 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004372 if (desc != 0 && desc->mPolicyMix != NULL) {
4373 dstOutputs.add(desc->mIoHandle);
4374 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4375 }
4376 }
4377
Eric Laurente552edb2014-03-10 17:42:56 -07004378 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4379 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4380 strategy, srcOutputs[0], dstOutputs[0]);
4381 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004382 for (audio_io_handle_t srcOut : srcOutputs) {
4383 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut);
François Gaffiead3183e2015-03-18 16:55:35 +01004384 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004385 setStrategyMute(strategy, true, desc);
4386 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004387 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004388 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004389 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004390 if (source != 0){
4391 connectAudioSource(source);
4392 }
Eric Laurente552edb2014-03-10 17:42:56 -07004393 }
4394
4395 // Move effects associated to this strategy from previous output to new output
4396 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004397 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004398 }
4399 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004400 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004401 if (getStrategy((audio_stream_type_t)i) == strategy) {
4402 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004403 }
4404 }
4405 }
4406}
4407
Eric Laurente0720872014-03-11 09:30:41 -07004408void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004409{
François Gaffie2110e042015-03-24 08:41:51 +01004410 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004411 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004412 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004413 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004414 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004415 checkOutputForStrategy(STRATEGY_SONIFICATION);
4416 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004417 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004418 checkOutputForStrategy(STRATEGY_MEDIA);
4419 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004420 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004421}
4422
Eric Laurente0720872014-03-11 09:30:41 -07004423void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004424{
François Gaffie53615e22015-03-19 09:24:12 +01004425 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08004426 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004427 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004428 return;
4429 }
4430
Eric Laurent3a4311c2014-03-17 12:00:47 -07004431 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004432 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4433 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4434 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004435
4436 // if suspended, restore A2DP output if:
4437 // ((SCO device is NOT connected) ||
4438 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4439 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004440 //
Eric Laurentf732e072016-08-03 19:30:28 -07004441 // if not suspended, suspend A2DP output if:
4442 // (SCO device is connected) &&
4443 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4444 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004445 //
4446 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004447 if (!isScoConnected ||
4448 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4449 AUDIO_POLICY_FORCE_BT_SCO) &&
4450 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4451 AUDIO_POLICY_FORCE_BT_SCO) &&
4452 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004453 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004454
4455 mpClientInterface->restoreOutput(a2dpOutput);
4456 mA2dpSuspended = false;
4457 }
4458 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004459 if (isScoConnected &&
4460 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4461 AUDIO_POLICY_FORCE_BT_SCO) ||
4462 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4463 AUDIO_POLICY_FORCE_BT_SCO) ||
4464 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004465 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004466
4467 mpClientInterface->suspendOutput(a2dpOutput);
4468 mA2dpSuspended = true;
4469 }
4470 }
4471}
4472
Eric Laurentc75307b2015-03-17 15:29:32 -07004473audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4474 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004475{
4476 audio_devices_t device = AUDIO_DEVICE_NONE;
4477
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004478 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004479 if (index >= 0) {
4480 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4481 if (patchDesc->mUid != mUidCached) {
4482 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004483 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004484 return outputDesc->device();
4485 }
4486 }
4487
Eric Laurente552edb2014-03-10 17:42:56 -07004488 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004489 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004490 // use device for strategy enforced audible
4491 // 2: we are in call or the strategy phone is active on the output:
4492 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004493 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004494 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004495 // 4: the strategy for enforced audible is active but not enforced on the output:
4496 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004497 // 5: the strategy accessibility is active on the output:
4498 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004499 // 6: the strategy "respectful" sonification is active on the output:
4500 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004501 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004502 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004503 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004504 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004505 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004506 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004507 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004508 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004509 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4510 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004511 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004512 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004513 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004514 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004515 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4516 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004517 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4518 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004519 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004520 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004521 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004522 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004523 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004524 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004525 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004526 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004527 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004528 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004529 }
4530
Eric Laurent1c333e22014-05-20 10:48:17 -07004531 ALOGV("getNewOutputDevice() selected device %x", device);
4532 return device;
4533}
4534
Eric Laurentfb66dd92016-01-28 18:32:03 -08004535audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004536{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004537 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004538
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004539 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004540 if (index >= 0) {
4541 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4542 if (patchDesc->mUid != mUidCached) {
4543 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004544 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004545 return inputDesc->mDevice;
4546 }
4547 }
4548
Eric Laurentdc95a252018-04-12 12:46:56 -07004549 // If we are not in call and no client is active on this input, this methods returns
4550 // AUDIO_DEVICE_NONE, causing the patch on the input stream to be released.
Eric Laurentfb66dd92016-01-28 18:32:03 -08004551 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
Eric Laurentdc95a252018-04-12 12:46:56 -07004552 if (source == AUDIO_SOURCE_DEFAULT && isInCall()) {
4553 source = AUDIO_SOURCE_VOICE_COMMUNICATION;
4554 }
4555 if (source != AUDIO_SOURCE_DEFAULT) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08004556 device = getDeviceAndMixForInputSource(source);
4557 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004558
Eric Laurente552edb2014-03-10 17:42:56 -07004559 return device;
4560}
4561
Eric Laurent794fde22016-03-11 09:50:45 -08004562bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4563 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004564 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004565}
4566
Eric Laurente0720872014-03-11 09:30:41 -07004567uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004568 return (uint32_t)getStrategy(stream);
4569}
4570
Eric Laurente0720872014-03-11 09:30:41 -07004571audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004572 // By checking the range of stream before calling getStrategy, we avoid
4573 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4574 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004575 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004576 return AUDIO_DEVICE_NONE;
4577 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004578 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004579 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4580 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004581 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004582 }
Eric Laurent794fde22016-03-11 09:50:45 -08004583 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004584 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004585 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004586 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4587 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004588 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004589 curDevices |= outputDesc->device();
4590 }
4591 }
4592 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004593 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004594
4595 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4596 and doesn't really need to.*/
4597 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4598 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4599 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4600 }
Eric Laurente552edb2014-03-10 17:42:56 -07004601 return devices;
4602}
4603
François Gaffie2110e042015-03-24 08:41:51 +01004604routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4605{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004606 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004607 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004608}
4609
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004610uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4611 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004612 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4613 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4614 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004615 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4616 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4617 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004618 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004619 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004620}
4621
Eric Laurente0720872014-03-11 09:30:41 -07004622void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004623 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004624 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004625 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4626 updateDevicesAndOutputs();
4627 break;
4628 default:
4629 break;
4630 }
4631}
4632
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004633uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004634
4635 // skip beacon mute management if a dedicated TTS output is available
4636 if (mTtsOutputAvailable) {
4637 return 0;
4638 }
4639
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004640 switch(event) {
4641 case STARTING_OUTPUT:
4642 mBeaconMuteRefCount++;
4643 break;
4644 case STOPPING_OUTPUT:
4645 if (mBeaconMuteRefCount > 0) {
4646 mBeaconMuteRefCount--;
4647 }
4648 break;
4649 case STARTING_BEACON:
4650 mBeaconPlayingRefCount++;
4651 break;
4652 case STOPPING_BEACON:
4653 if (mBeaconPlayingRefCount > 0) {
4654 mBeaconPlayingRefCount--;
4655 }
4656 break;
4657 }
4658
4659 if (mBeaconMuteRefCount > 0) {
4660 // any playback causes beacon to be muted
4661 return setBeaconMute(true);
4662 } else {
4663 // no other playback: unmute when beacon starts playing, mute when it stops
4664 return setBeaconMute(mBeaconPlayingRefCount == 0);
4665 }
4666}
4667
4668uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4669 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4670 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4671 // keep track of muted state to avoid repeating mute/unmute operations
4672 if (mBeaconMuted != mute) {
4673 // mute/unmute AUDIO_STREAM_TTS on all outputs
4674 ALOGV("\t muting %d", mute);
4675 uint32_t maxLatency = 0;
4676 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004677 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004678 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004679 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004680 0 /*delay*/, AUDIO_DEVICE_NONE);
4681 const uint32_t latency = desc->latency() * 2;
4682 if (latency > maxLatency) {
4683 maxLatency = latency;
4684 }
4685 }
4686 mBeaconMuted = mute;
4687 return maxLatency;
4688 }
4689 return 0;
4690}
4691
Eric Laurente0720872014-03-11 09:30:41 -07004692audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004693 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004694{
Paul McLeanaa981192015-03-21 09:55:15 -07004695 // Routing
4696 // see if we have an explicit route
4697 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4698 // (getStrategy(stream)).
4699 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004700 // and activity count is non-zero and the device in the route descriptor is available
4701 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004702 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4703 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004704 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurentad2e7b92017-09-14 20:06:42 -07004705 if ((routeStrategy == strategy) && route->isActive() &&
4706 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004707 return route->mDeviceDescriptor->type();
4708 }
4709 }
4710
Eric Laurente552edb2014-03-10 17:42:56 -07004711 if (fromCache) {
4712 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4713 strategy, mDeviceForStrategy[strategy]);
4714 return mDeviceForStrategy[strategy];
4715 }
François Gaffie2110e042015-03-24 08:41:51 +01004716 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004717}
4718
Eric Laurente0720872014-03-11 09:30:41 -07004719void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004720{
4721 for (int i = 0; i < NUM_STRATEGIES; i++) {
4722 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4723 }
4724 mPreviousOutputs = mOutputs;
4725}
4726
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004727uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004728 audio_devices_t prevDevice,
4729 uint32_t delayMs)
4730{
4731 // mute/unmute strategies using an incompatible device combination
4732 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4733 // if unmuting, unmute only after the specified delay
4734 if (outputDesc->isDuplicated()) {
4735 return 0;
4736 }
4737
4738 uint32_t muteWaitMs = 0;
4739 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004740 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004741
4742 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4743 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004744 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004745 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4746 bool doMute = false;
4747
4748 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4749 doMute = true;
4750 outputDesc->mStrategyMutedByDevice[i] = true;
4751 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4752 doMute = true;
4753 outputDesc->mStrategyMutedByDevice[i] = false;
4754 }
Eric Laurent99401132014-05-07 19:48:15 -07004755 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004756 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004757 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004758 // skip output if it does not share any device with current output
4759 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4760 == AUDIO_DEVICE_NONE) {
4761 continue;
4762 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004763 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004764 mute ? "muting" : "unmuting", i, curDevice);
4765 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004766 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004767 if (mute) {
4768 // FIXME: should not need to double latency if volume could be applied
4769 // immediately by the audioflinger mixer. We must account for the delay
4770 // between now and the next time the audioflinger thread for this output
4771 // will process a buffer (which corresponds to one buffer size,
4772 // usually 1/2 or 1/4 of the latency).
4773 if (muteWaitMs < desc->latency() * 2) {
4774 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004775 }
4776 }
4777 }
4778 }
4779 }
4780 }
4781
Eric Laurent99401132014-05-07 19:48:15 -07004782 // temporary mute output if device selection changes to avoid volume bursts due to
4783 // different per device volumes
4784 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004785 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4786 // temporary mute duration is conservatively set to 4 times the reported latency
4787 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4788 if (muteWaitMs < tempMuteWaitMs) {
4789 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004790 }
Eric Laurentdc462862016-07-19 12:29:53 -07004791
Eric Laurent99401132014-05-07 19:48:15 -07004792 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004793 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004794 // make sure that we do not start the temporary mute period too early in case of
4795 // delayed device change
4796 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004797 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004798 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004799 }
4800 }
4801 }
4802
Eric Laurente552edb2014-03-10 17:42:56 -07004803 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4804 if (muteWaitMs > delayMs) {
4805 muteWaitMs -= delayMs;
4806 usleep(muteWaitMs * 1000);
4807 return muteWaitMs;
4808 }
4809 return 0;
4810}
4811
Eric Laurentc75307b2015-03-17 15:29:32 -07004812uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004813 audio_devices_t device,
4814 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004815 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004816 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004817 const char *address,
4818 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004819{
Eric Laurentc75307b2015-03-17 15:29:32 -07004820 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004821 AudioParameter param;
4822 uint32_t muteWaitMs;
4823
4824 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004825 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4826 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4827 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4828 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004829 return muteWaitMs;
4830 }
4831 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4832 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004833 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004834 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004835 return 0;
4836 }
4837
4838 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004839 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004840
4841 audio_devices_t prevDevice = outputDesc->mDevice;
4842
Paul McLeanaa981192015-03-21 09:55:15 -07004843 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004844
4845 if (device != AUDIO_DEVICE_NONE) {
4846 outputDesc->mDevice = device;
4847 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004848
4849 // if the outputs are not materially active, there is no need to mute.
4850 if (requiresMuteCheck) {
4851 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4852 } else {
4853 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4854 muteWaitMs = 0;
4855 }
Eric Laurente552edb2014-03-10 17:42:56 -07004856
4857 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004858 // the requested device is AUDIO_DEVICE_NONE
4859 // OR the requested device is the same as current device
4860 // AND force is not specified
4861 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004862 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004863 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4864 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004865 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004866 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004867 return muteWaitMs;
4868 }
4869
4870 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004871
Eric Laurente552edb2014-03-10 17:42:56 -07004872 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004873 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004874 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004875 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004876 DeviceVector deviceList;
4877 if ((address == NULL) || (strlen(address) == 0)) {
4878 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4879 } else {
4880 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4881 }
4882
Eric Laurent1c333e22014-05-20 10:48:17 -07004883 if (!deviceList.isEmpty()) {
4884 struct audio_patch patch;
4885 outputDesc->toAudioPortConfig(&patch.sources[0]);
4886 patch.num_sources = 1;
4887 patch.num_sinks = 0;
4888 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4889 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004890 patch.num_sinks++;
4891 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004892 ssize_t index;
4893 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4894 index = mAudioPatches.indexOfKey(*patchHandle);
4895 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004896 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004897 }
4898 sp< AudioPatch> patchDesc;
4899 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4900 if (index >= 0) {
4901 patchDesc = mAudioPatches.valueAt(index);
4902 afPatchHandle = patchDesc->mAfPatchHandle;
4903 }
4904
Eric Laurent1c333e22014-05-20 10:48:17 -07004905 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004906 &afPatchHandle,
4907 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004908 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4909 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004910 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004911 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004912 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004913 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004914 addAudioPatch(patchDesc->mHandle, patchDesc);
4915 } else {
4916 patchDesc->mPatch = patch;
4917 }
4918 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004919 if (patchHandle) {
4920 *patchHandle = patchDesc->mHandle;
4921 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004922 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004923 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004924 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004925 }
4926 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004927
4928 // inform all input as well
4929 for (size_t i = 0; i < mInputs.size(); i++) {
4930 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004931 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004932 AudioParameter inputCmd = AudioParameter();
4933 ALOGV("%s: inform input %d of device:%d", __func__,
4934 inputDescriptor->mIoHandle, device);
4935 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4936 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4937 inputCmd.toString(),
4938 delayMs);
4939 }
4940 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004941 }
Eric Laurente552edb2014-03-10 17:42:56 -07004942
4943 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004944 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004945
4946 return muteWaitMs;
4947}
4948
Eric Laurentc75307b2015-03-17 15:29:32 -07004949status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004950 int delayMs,
4951 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004952{
Eric Laurent6a94d692014-05-20 11:18:06 -07004953 ssize_t index;
4954 if (patchHandle) {
4955 index = mAudioPatches.indexOfKey(*patchHandle);
4956 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004957 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004958 }
4959 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004960 return INVALID_OPERATION;
4961 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004962 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4963 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004964 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004965 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004966 removeAudioPatch(patchDesc->mHandle);
4967 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004968 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004969 return status;
4970}
4971
4972status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4973 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004974 bool force,
4975 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004976{
4977 status_t status = NO_ERROR;
4978
Eric Laurent1f2f2232014-06-02 12:01:23 -07004979 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004980 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4981 inputDesc->mDevice = device;
4982
4983 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4984 if (!deviceList.isEmpty()) {
4985 struct audio_patch patch;
4986 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004987 // AUDIO_SOURCE_HOTWORD is for internal use only:
4988 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004989 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004990 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004991 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4992 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004993 patch.num_sinks = 1;
4994 //only one input device for now
4995 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004996 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07004997 ssize_t index;
4998 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4999 index = mAudioPatches.indexOfKey(*patchHandle);
5000 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005001 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005002 }
5003 sp< AudioPatch> patchDesc;
5004 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
5005 if (index >= 0) {
5006 patchDesc = mAudioPatches.valueAt(index);
5007 afPatchHandle = patchDesc->mAfPatchHandle;
5008 }
5009
Eric Laurent1c333e22014-05-20 10:48:17 -07005010 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005011 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07005012 0);
5013 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005014 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07005015 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005016 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005017 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005018 addAudioPatch(patchDesc->mHandle, patchDesc);
5019 } else {
5020 patchDesc->mPatch = patch;
5021 }
5022 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005023 if (patchHandle) {
5024 *patchHandle = patchDesc->mHandle;
5025 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005026 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005027 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005028 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005029 }
5030 }
5031 }
5032 return status;
5033}
5034
Eric Laurent6a94d692014-05-20 11:18:06 -07005035status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
5036 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005037{
Eric Laurent1f2f2232014-06-02 12:01:23 -07005038 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07005039 ssize_t index;
5040 if (patchHandle) {
5041 index = mAudioPatches.indexOfKey(*patchHandle);
5042 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005043 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005044 }
5045 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005046 return INVALID_OPERATION;
5047 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005048 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5049 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005050 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005051 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005052 removeAudioPatch(patchDesc->mHandle);
5053 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005054 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005055 return status;
5056}
5057
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08005058sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005059 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01005060 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005061 audio_format_t& format,
5062 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005063 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005064{
5065 // Choose an input profile based on the requested capture parameters: select the first available
5066 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005067 //
5068 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5069 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005070
Glenn Kasten730b9262018-03-29 15:01:26 -07005071 sp<IOProfile> firstInexact;
5072 uint32_t updatedSamplingRate = 0;
5073 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
5074 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005075 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005076 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005077 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07005078 //updatedFormat = format;
Eric Laurent275e8e92014-11-30 15:14:47 -08005079 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07005080 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005081 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07005082 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07005083 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07005084 &channelMask /*updatedChannelMask*/,
5085 // FIXME ugly cast
5086 (audio_output_flags_t) flags,
5087 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005088 return profile;
5089 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005090 if (firstInexact == nullptr && profile->isCompatibleProfile(device, address,
5091 samplingRate,
5092 &updatedSamplingRate,
5093 format,
5094 &updatedFormat,
5095 channelMask,
5096 &updatedChannelMask,
5097 // FIXME ugly cast
5098 (audio_output_flags_t) flags,
5099 false /*exactMatchRequiredForInputFlags*/)) {
5100 firstInexact = profile;
5101 }
5102
Eric Laurente552edb2014-03-10 17:42:56 -07005103 }
5104 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005105 if (firstInexact != nullptr) {
5106 samplingRate = updatedSamplingRate;
5107 format = updatedFormat;
5108 channelMask = updatedChannelMask;
5109 return firstInexact;
5110 }
Eric Laurente552edb2014-03-10 17:42:56 -07005111 return NULL;
5112}
5113
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005114
5115audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005116 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005117{
François Gaffie036e1e92015-03-19 10:16:24 +01005118 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5119 audio_devices_t selectedDeviceFromMix =
5120 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005121
François Gaffie036e1e92015-03-19 10:16:24 +01005122 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5123 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005124 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005125 return getDeviceForInputSource(inputSource);
5126}
5127
5128audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5129{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005130 // Routing
5131 // Scan the whole RouteMap to see if we have an explicit route:
5132 // if the input source in the RouteMap is the same as the argument above,
5133 // and activity count is non-zero and the device in the route descriptor is available
5134 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005135 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5136 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurentad2e7b92017-09-14 20:06:42 -07005137 if ((inputSource == route->mSource) && route->isActive() &&
5138 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005139 return route->mDeviceDescriptor->type();
5140 }
5141 }
5142
5143 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005144}
5145
Eric Laurente0720872014-03-11 09:30:41 -07005146float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005147 int index,
5148 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005149{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005150 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005151
5152 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5153 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5154 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5155 // the ringtone volume
5156 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5157 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5158 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5159 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5160 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5161 }
5162
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005163 // in-call: always cap earpiece volume by voice volume + some low headroom
Eric Laurent7731b5a2018-04-06 15:47:22 -07005164 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) &&
5165 (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) {
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005166 switch (stream) {
5167 case AUDIO_STREAM_SYSTEM:
5168 case AUDIO_STREAM_RING:
5169 case AUDIO_STREAM_MUSIC:
5170 case AUDIO_STREAM_ALARM:
5171 case AUDIO_STREAM_NOTIFICATION:
5172 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5173 case AUDIO_STREAM_DTMF:
5174 case AUDIO_STREAM_ACCESSIBILITY: {
Eric Laurent7731b5a2018-04-06 15:47:22 -07005175 int voiceVolumeIndex =
5176 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE);
5177 const float maxVoiceVolDb =
5178 computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE)
5179 + IN_CALL_EARPIECE_HEADROOM_DB;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005180 if (volumeDB > maxVoiceVolDb) {
5181 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5182 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5183 volumeDB = maxVoiceVolDb;
5184 }
5185 } break;
5186 default:
5187 break;
5188 }
5189 }
5190
Eric Laurente552edb2014-03-10 17:42:56 -07005191 // if a headset is connected, apply the following rules to ring tones and notifications
5192 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005193 // - always attenuate notifications volume by 6dB
5194 // - attenuate ring tones volume by 6dB unless music is not playing and
5195 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005196 // - if music is playing, always limit the volume to current music volume,
5197 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005198 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005199 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5200 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5201 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005202 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
Jakub Pawlowski00f928c2018-03-22 13:20:03 -07005203 AUDIO_DEVICE_OUT_USB_HEADSET |
5204 AUDIO_DEVICE_OUT_HEARING_AID)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005205 ((stream_strategy == STRATEGY_SONIFICATION)
5206 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005207 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005208 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005209 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005210 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005211 // when the phone is ringing we must consider that music could have been paused just before
5212 // by the music application and behave as if music was active if the last music track was
5213 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005214 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005215 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005216 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005217 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005218 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005219 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5220 musicDevice),
5221 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005222 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5223 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005224 if (volumeDB > minVolDB) {
5225 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005226 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005227 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005228 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5229 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5230 // on A2DP, also ensure notification volume is not too low compared to media when
5231 // intended to be played
5232 if ((volumeDB > -96.0f) &&
5233 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5234 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5235 stream, device,
5236 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5237 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5238 }
5239 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005240 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5241 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005242 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005243 }
5244 }
5245
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005246 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005247}
5248
Eric Laurente0720872014-03-11 09:30:41 -07005249status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005250 int index,
5251 const sp<AudioOutputDescriptor>& outputDesc,
5252 audio_devices_t device,
5253 int delayMs,
5254 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005255{
Eric Laurente552edb2014-03-10 17:42:56 -07005256 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005257 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005258 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005259 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005260 return NO_ERROR;
5261 }
François Gaffie2110e042015-03-24 08:41:51 +01005262 audio_policy_forced_cfg_t forceUseForComm =
5263 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005264 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005265 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5266 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005267 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005268 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005269 return INVALID_OPERATION;
5270 }
5271
Eric Laurentc75307b2015-03-17 15:29:32 -07005272 if (device == AUDIO_DEVICE_NONE) {
5273 device = outputDesc->device();
5274 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005275
Eric Laurentffbc80f2015-03-18 18:30:19 -07005276 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005277 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005278 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005279 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005280
Eric Laurentffbc80f2015-03-18 18:30:19 -07005281 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005282
Eric Laurent3b73df72014-03-11 09:06:29 -07005283 if (stream == AUDIO_STREAM_VOICE_CALL ||
5284 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005285 float voiceVolume;
5286 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005287 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005288 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005289 } else {
5290 voiceVolume = 1.0;
5291 }
5292
Eric Laurent18fba842016-03-31 14:41:26 -07005293 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005294 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5295 mLastVoiceVolume = voiceVolume;
5296 }
5297 }
5298
5299 return NO_ERROR;
5300}
5301
Eric Laurentc75307b2015-03-17 15:29:32 -07005302void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5303 audio_devices_t device,
5304 int delayMs,
5305 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005306{
Eric Laurentc75307b2015-03-17 15:29:32 -07005307 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005308
Eric Laurent794fde22016-03-11 09:50:45 -08005309 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005310 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005311 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005312 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005313 device,
5314 delayMs,
5315 force);
5316 }
5317}
5318
Eric Laurente0720872014-03-11 09:30:41 -07005319void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005320 bool on,
5321 const sp<AudioOutputDescriptor>& outputDesc,
5322 int delayMs,
5323 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005324{
Eric Laurent72249d52015-06-08 11:12:15 -07005325 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5326 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005327 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005328 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005329 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005330 }
5331 }
5332}
5333
Eric Laurente0720872014-03-11 09:30:41 -07005334void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005335 bool on,
5336 const sp<AudioOutputDescriptor>& outputDesc,
5337 int delayMs,
5338 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005339{
Eric Laurente552edb2014-03-10 17:42:56 -07005340 if (device == AUDIO_DEVICE_NONE) {
5341 device = outputDesc->device();
5342 }
5343
Eric Laurentc75307b2015-03-17 15:29:32 -07005344 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5345 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005346
5347 if (on) {
5348 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005349 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005350 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005351 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005352 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005353 }
5354 }
5355 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5356 outputDesc->mMuteCount[stream]++;
5357 } else {
5358 if (outputDesc->mMuteCount[stream] == 0) {
5359 ALOGV("setStreamMute() unmuting non muted stream!");
5360 return;
5361 }
5362 if (--outputDesc->mMuteCount[stream] == 0) {
5363 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005364 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005365 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005366 device,
5367 delayMs);
5368 }
5369 }
5370}
5371
Eric Laurente0720872014-03-11 09:30:41 -07005372void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005373 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005374{
Eric Laurent87ffa392015-05-22 10:32:38 -07005375 if(!hasPrimaryOutput()) {
5376 return;
5377 }
5378
Eric Laurente552edb2014-03-10 17:42:56 -07005379 // if the stream pertains to sonification strategy and we are in call we must
5380 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5381 // in the device used for phone strategy and play the tone if the selected device does not
5382 // interfere with the device used for phone strategy
5383 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5384 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005385 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005386 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5387 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005388 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005389 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5390 stream, starting, outputDesc->mDevice, stateChange);
5391 if (outputDesc->mRefCount[stream]) {
5392 int muteCount = 1;
5393 if (stateChange) {
5394 muteCount = outputDesc->mRefCount[stream];
5395 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005396 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005397 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5398 for (int i = 0; i < muteCount; i++) {
5399 setStreamMute(stream, starting, mPrimaryOutput);
5400 }
5401 } else {
5402 ALOGV("handleIncallSonification() high visibility");
5403 if (outputDesc->device() &
5404 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5405 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5406 for (int i = 0; i < muteCount; i++) {
5407 setStreamMute(stream, starting, mPrimaryOutput);
5408 }
5409 }
5410 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005411 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5412 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005413 } else {
5414 mpClientInterface->stopTone();
5415 }
5416 }
5417 }
5418 }
5419}
5420
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005421audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5422{
5423 // flags to stream type mapping
5424 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5425 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5426 }
5427 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5428 return AUDIO_STREAM_BLUETOOTH_SCO;
5429 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005430 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5431 return AUDIO_STREAM_TTS;
5432 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005433
5434 // usage to stream type mapping
5435 switch (attr->usage) {
5436 case AUDIO_USAGE_MEDIA:
5437 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005438 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005439 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5440 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005441 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5442 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005443 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5444 return AUDIO_STREAM_SYSTEM;
5445 case AUDIO_USAGE_VOICE_COMMUNICATION:
5446 return AUDIO_STREAM_VOICE_CALL;
5447
5448 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5449 return AUDIO_STREAM_DTMF;
5450
5451 case AUDIO_USAGE_ALARM:
5452 return AUDIO_STREAM_ALARM;
5453 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5454 return AUDIO_STREAM_RING;
5455
5456 case AUDIO_USAGE_NOTIFICATION:
5457 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5458 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5459 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5460 case AUDIO_USAGE_NOTIFICATION_EVENT:
5461 return AUDIO_STREAM_NOTIFICATION;
5462
5463 case AUDIO_USAGE_UNKNOWN:
5464 default:
5465 return AUDIO_STREAM_MUSIC;
5466 }
5467}
Eric Laurente83b55d2014-11-14 10:06:21 -08005468
François Gaffie53615e22015-03-19 09:24:12 +01005469bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5470{
Eric Laurente83b55d2014-11-14 10:06:21 -08005471 // has flags that map to a strategy?
5472 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5473 return true;
5474 }
5475
5476 // has known usage?
5477 switch (paa->usage) {
5478 case AUDIO_USAGE_UNKNOWN:
5479 case AUDIO_USAGE_MEDIA:
5480 case AUDIO_USAGE_VOICE_COMMUNICATION:
5481 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5482 case AUDIO_USAGE_ALARM:
5483 case AUDIO_USAGE_NOTIFICATION:
5484 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5485 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5486 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5487 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5488 case AUDIO_USAGE_NOTIFICATION_EVENT:
5489 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5490 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5491 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5492 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005493 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005494 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005495 break;
5496 default:
5497 return false;
5498 }
5499 return true;
5500}
5501
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005502bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005503 routing_strategy strategy, uint32_t inPastMs,
5504 nsecs_t sysTime) const
5505{
5506 if ((sysTime == 0) && (inPastMs != 0)) {
5507 sysTime = systemTime();
5508 }
Eric Laurent794fde22016-03-11 09:50:45 -08005509 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005510 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5511 (NUM_STRATEGIES == strategy)) &&
5512 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5513 return true;
5514 }
5515 }
5516 return false;
5517}
5518
François Gaffie2110e042015-03-24 08:41:51 +01005519audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5520{
5521 return mEngine->getForceUse(usage);
5522}
5523
5524bool AudioPolicyManager::isInCall()
5525{
5526 return isStateInCall(mEngine->getPhoneState());
5527}
5528
5529bool AudioPolicyManager::isStateInCall(int state)
5530{
5531 return is_state_in_call(state);
5532}
5533
Eric Laurentd60560a2015-04-10 11:31:20 -07005534void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5535{
5536 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5537 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5538 if (sourceDesc->mDevice->equals(deviceDesc)) {
5539 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5540 stopAudioSource(sourceDesc->getHandle());
5541 }
5542 }
5543
5544 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5545 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5546 bool release = false;
5547 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5548 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5549 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5550 source->ext.device.type == deviceDesc->type()) {
5551 release = true;
5552 }
5553 }
5554 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5555 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5556 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5557 sink->ext.device.type == deviceDesc->type()) {
5558 release = true;
5559 }
5560 }
5561 if (release) {
5562 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5563 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5564 }
5565 }
5566}
5567
Phil Burk09bc4612016-02-24 15:58:15 -08005568// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005569void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5570 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005571 // TODO Set this based on Config properties.
5572 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005573
5574 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5575 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005576 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005577
5578 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005579 bool supportsAC3 = false;
5580 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005581 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005582 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005583 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005584 switch (format) {
5585 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005586 supportsAC3 = true;
5587 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005588 case AUDIO_FORMAT_E_AC3:
5589 case AUDIO_FORMAT_DTS:
5590 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005591 // If ALWAYS, remove all other surround formats here since we will add them later.
5592 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5593 formats.removeAt(formatIndex);
5594 formatIndex--;
5595 }
Phil Burk07ac1142016-03-25 13:39:29 -07005596 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005597 break;
5598 case AUDIO_FORMAT_IEC61937:
5599 supportsIEC61937 = true;
5600 break;
5601 default:
5602 break;
5603 }
5604 }
Phil Burk09bc4612016-02-24 15:58:15 -08005605
5606 // Modify formats based on surround preferences.
5607 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005608 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5609 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5610 // Remove surround sound related formats.
5611 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5612 audio_format_t format = formats[formatIndex];
5613 switch(format) {
5614 case AUDIO_FORMAT_AC3:
5615 case AUDIO_FORMAT_E_AC3:
5616 case AUDIO_FORMAT_DTS:
5617 case AUDIO_FORMAT_DTS_HD:
5618 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005619 formats.removeAt(formatIndex);
5620 break;
5621 default:
5622 formatIndex++; // keep it
5623 break;
5624 }
Phil Burk09bc4612016-02-24 15:58:15 -08005625 }
Phil Burk07ac1142016-03-25 13:39:29 -07005626 supportsAC3 = false;
5627 supportsOtherSurround = false;
5628 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005629 }
Phil Burk07ac1142016-03-25 13:39:29 -07005630 } else { // AUTO or ALWAYS
5631 // Most TVs support AC3 even if they do not report it in the EDID.
5632 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5633 && !supportsAC3) {
5634 formats.add(AUDIO_FORMAT_AC3);
5635 supportsAC3 = true;
5636 }
5637
5638 // If ALWAYS, add support for raw surround formats if all are missing.
5639 // This assumes that if any of these formats are reported by the HAL
5640 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005641 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005642 formats.add(AUDIO_FORMAT_E_AC3);
5643 formats.add(AUDIO_FORMAT_DTS);
5644 formats.add(AUDIO_FORMAT_DTS_HD);
5645 supportsOtherSurround = true;
5646 }
5647
5648 // Add support for IEC61937 if any raw surround supported.
5649 // The HAL could do this but add it here, just in case.
5650 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5651 formats.add(AUDIO_FORMAT_IEC61937);
5652 supportsIEC61937 = true;
5653 }
Phil Burk09bc4612016-02-24 15:58:15 -08005654 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005655}
5656
5657// Modify the list of channel masks supported.
5658void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5659 ChannelsVector &channelMasks = *channelMasksPtr;
5660 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5661 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5662
5663 // If NEVER, then remove support for channelMasks > stereo.
5664 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5665 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5666 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5667 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5668 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5669 channelMasks.removeAt(maskIndex);
5670 } else {
5671 maskIndex++;
5672 }
5673 }
5674 // If ALWAYS, then make sure we at least support 5.1
5675 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5676 bool supports5dot1 = false;
5677 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005678 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005679 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5680 supports5dot1 = true;
5681 break;
5682 }
5683 }
5684 // If not then add 5.1 support.
5685 if (!supports5dot1) {
5686 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5687 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5688 }
Phil Burk09bc4612016-02-24 15:58:15 -08005689 }
5690}
5691
Phil Burk00eeb322016-03-31 12:41:00 -07005692void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5693 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005694 AudioProfileVector &profiles)
5695{
5696 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005697
François Gaffie112b0af2015-11-19 16:13:25 +01005698 // Format MUST be checked first to update the list of AudioProfile
5699 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005700 reply = mpClientInterface->getParameters(
5701 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005702 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005703 AudioParameter repliedParameters(reply);
5704 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005705 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005706 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5707 return;
5708 }
Phil Burk09bc4612016-02-24 15:58:15 -08005709 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005710 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005711 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005712 }
Phil Burk09bc4612016-02-24 15:58:15 -08005713 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005714 }
François Gaffie112b0af2015-11-19 16:13:25 +01005715
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005716 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005717 ChannelsVector channelMasks;
5718 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005719 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005720 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005721
5722 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005723 reply = mpClientInterface->getParameters(
5724 ioHandle,
5725 requestedParameters.toString() + ";" +
5726 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005727 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005728 AudioParameter repliedParameters(reply);
5729 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005730 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005731 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005732 }
5733 }
5734 if (profiles.hasDynamicChannelsFor(format)) {
5735 reply = mpClientInterface->getParameters(ioHandle,
5736 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005737 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005738 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005739 AudioParameter repliedParameters(reply);
5740 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005741 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005742 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005743 if (device == AUDIO_DEVICE_OUT_HDMI) {
5744 filterSurroundChannelMasks(&channelMasks);
5745 }
François Gaffie112b0af2015-11-19 16:13:25 +01005746 }
5747 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005748 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005749 }
5750}
Eric Laurentd60560a2015-04-10 11:31:20 -07005751
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005752} // namespace android