blob: 3ff89371b27894fd69412f2c73f6f48ff2cd5602 [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 Laurente552edb2014-03-10 17:42:56 -0700592 // if entering in call state, handle special case of active streams
593 // pertaining to sonification strategy see handleIncallSonification()
594 if (isStateInCall(state)) {
595 ALOGV("setPhoneState() in call state management: new state is %d", state);
Eric Laurent794fde22016-03-11 09:50:45 -0800596 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -0700597 handleIncallSonification((audio_stream_type_t)stream, true, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700598 }
Eric Laurent63dea1d2015-07-02 17:10:28 -0700599
600 // force reevaluating accessibility routing when call starts
601 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -0700602 }
603
604 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
Eric Laurent3b73df72014-03-11 09:06:29 -0700605 if (state == AUDIO_MODE_RINGTONE &&
606 isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700607 mLimitRingtoneVolume = true;
608 } else {
609 mLimitRingtoneVolume = false;
610 }
611}
612
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700613audio_mode_t AudioPolicyManager::getPhoneState() {
614 return mEngine->getPhoneState();
615}
616
Eric Laurente0720872014-03-11 09:30:41 -0700617void AudioPolicyManager::setForceUse(audio_policy_force_use_t usage,
Eric Laurent3b73df72014-03-11 09:06:29 -0700618 audio_policy_forced_cfg_t config)
Eric Laurente552edb2014-03-10 17:42:56 -0700619{
François Gaffie2110e042015-03-24 08:41:51 +0100620 ALOGV("setForceUse() usage %d, config %d, mPhoneState %d", usage, config, mEngine->getPhoneState());
Eric Laurent8dc87a62017-05-16 19:00:40 -0700621 if (config == mEngine->getForceUse(usage)) {
622 return;
623 }
Eric Laurente552edb2014-03-10 17:42:56 -0700624
François Gaffie2110e042015-03-24 08:41:51 +0100625 if (mEngine->setForceUse(usage, config) != NO_ERROR) {
626 ALOGW("setForceUse() could not set force cfg %d for usage %d", config, usage);
627 return;
Eric Laurente552edb2014-03-10 17:42:56 -0700628 }
François Gaffie2110e042015-03-24 08:41:51 +0100629 bool forceVolumeReeval = (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ||
630 (usage == AUDIO_POLICY_FORCE_FOR_DOCK) ||
631 (usage == AUDIO_POLICY_FORCE_FOR_SYSTEM);
Eric Laurente552edb2014-03-10 17:42:56 -0700632
633 // check for device and output changes triggered by new force usage
634 checkA2dpSuspend();
635 checkOutputForAllStrategies();
636 updateDevicesAndOutputs();
Phil Burk09bc4612016-02-24 15:58:15 -0800637
Eric Laurentdc462862016-07-19 12:29:53 -0700638 //FIXME: workaround for truncated touch sounds
639 // to be removed when the problem is handled by system UI
640 uint32_t delayMs = 0;
641 uint32_t waitMs = 0;
642 if (usage == AUDIO_POLICY_FORCE_FOR_COMMUNICATION) {
643 delayMs = TOUCH_SOUND_FIXED_DELAY_MS;
644 }
Eric Laurent87ffa392015-05-22 10:32:38 -0700645 if (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL && hasPrimaryOutput()) {
Eric Laurentc2730ba2014-07-20 15:47:07 -0700646 audio_devices_t newDevice = getNewOutputDevice(mPrimaryOutput, true /*fromCache*/);
Eric Laurentdc462862016-07-19 12:29:53 -0700647 waitMs = updateCallRouting(newDevice, delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700648 }
Eric Laurente552edb2014-03-10 17:42:56 -0700649 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -0700650 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(i);
651 audio_devices_t newDevice = getNewOutputDevice(outputDesc, true /*fromCache*/);
652 if ((mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) || (outputDesc != mPrimaryOutput)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700653 waitMs = setOutputDevice(outputDesc, newDevice, (newDevice != AUDIO_DEVICE_NONE),
654 delayMs);
Eric Laurentc2730ba2014-07-20 15:47:07 -0700655 }
Eric Laurente552edb2014-03-10 17:42:56 -0700656 if (forceVolumeReeval && (newDevice != AUDIO_DEVICE_NONE)) {
Eric Laurentdc462862016-07-19 12:29:53 -0700657 applyStreamVolumes(outputDesc, newDevice, waitMs, true);
Eric Laurente552edb2014-03-10 17:42:56 -0700658 }
659 }
660
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800661 for (const auto& activeDesc : mInputs.getActiveInputs()) {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800662 audio_devices_t newDevice = getNewInputDevice(activeDesc);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700663 // Force new input selection if the new device can not be reached via current input
Eric Laurentfb66dd92016-01-28 18:32:03 -0800664 if (activeDesc->mProfile->getSupportedDevices().types() &
665 (newDevice & ~AUDIO_DEVICE_BIT_IN)) {
666 setInputDevice(activeDesc->mIoHandle, newDevice);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700667 } else {
Eric Laurentfb66dd92016-01-28 18:32:03 -0800668 closeInput(activeDesc->mIoHandle);
Eric Laurentc171c7c2015-09-25 12:21:06 -0700669 }
Eric Laurente552edb2014-03-10 17:42:56 -0700670 }
Eric Laurente552edb2014-03-10 17:42:56 -0700671}
672
Eric Laurente0720872014-03-11 09:30:41 -0700673void AudioPolicyManager::setSystemProperty(const char* property, const char* value)
Eric Laurente552edb2014-03-10 17:42:56 -0700674{
675 ALOGV("setSystemProperty() property %s, value %s", property, value);
676}
677
678// Find a direct output profile compatible with the parameters passed, even if the input flags do
679// not explicitly request a direct output
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800680sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput(
Eric Laurente552edb2014-03-10 17:42:56 -0700681 audio_devices_t device,
682 uint32_t samplingRate,
683 audio_format_t format,
684 audio_channel_mask_t channelMask,
685 audio_output_flags_t flags)
686{
Eric Laurent861a6282015-05-18 15:40:16 -0700687 // only retain flags that will drive the direct output profile selection
688 // if explicitly requested
689 static const uint32_t kRelevantFlags =
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700690 (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD |
691 AUDIO_OUTPUT_FLAG_VOIP_RX);
Eric Laurent861a6282015-05-18 15:40:16 -0700692 flags =
693 (audio_output_flags_t)((flags & kRelevantFlags) | AUDIO_OUTPUT_FLAG_DIRECT);
694
695 sp<IOProfile> profile;
696
Mikhail Naganovd4120142017-12-06 15:49:22 -0800697 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -0800698 for (const auto& curProfile : hwModule->getOutputProfiles()) {
Eric Laurent861a6282015-05-18 15:40:16 -0700699 if (!curProfile->isCompatibleProfile(device, String8(""),
Andy Hungf129b032015-04-07 13:45:50 -0700700 samplingRate, NULL /*updatedSamplingRate*/,
701 format, NULL /*updatedFormat*/,
702 channelMask, NULL /*updatedChannelMask*/,
Eric Laurent861a6282015-05-18 15:40:16 -0700703 flags)) {
704 continue;
705 }
706 // reject profiles not corresponding to a device currently available
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100707 if ((mAvailableOutputDevices.types() & curProfile->getSupportedDevicesType()) == 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700708 continue;
709 }
710 // if several profiles are compatible, give priority to one with offload capability
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100711 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
Eric Laurent861a6282015-05-18 15:40:16 -0700712 continue;
713 }
714 profile = curProfile;
François Gaffiea8ecc2c2015-11-09 16:10:40 +0100715 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Eric Laurent861a6282015-05-18 15:40:16 -0700716 break;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700717 }
Eric Laurente552edb2014-03-10 17:42:56 -0700718 }
719 }
Eric Laurent861a6282015-05-18 15:40:16 -0700720 return profile;
Eric Laurente552edb2014-03-10 17:42:56 -0700721}
722
Eric Laurentf4e63452017-11-06 19:31:46 +0000723audio_io_handle_t AudioPolicyManager::getOutput(audio_stream_type_t stream)
Eric Laurente552edb2014-03-10 17:42:56 -0700724{
Eric Laurent3b73df72014-03-11 09:06:29 -0700725 routing_strategy strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700726 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Andy Hungc9901522017-11-10 20:07:54 -0800727
728 // Note that related method getOutputForAttr() uses getOutputForDevice() not selectOutput().
729 // We use selectOutput() here since we don't have the desired AudioTrack sample rate,
730 // format, flags, etc. This may result in some discrepancy for functions that utilize
731 // getOutput() solely on audio_stream_type such as AudioSystem::getOutputFrameCount()
732 // and AudioSystem::getOutputSamplingRate().
733
Eric Laurentf4e63452017-11-06 19:31:46 +0000734 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
735 audio_io_handle_t output = selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
Eric Laurente552edb2014-03-10 17:42:56 -0700736
Eric Laurentf4e63452017-11-06 19:31:46 +0000737 ALOGV("getOutput() stream %d selected device %08x, output %d", stream, device, output);
738 return output;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700739}
740
Eric Laurente83b55d2014-11-14 10:06:21 -0800741status_t AudioPolicyManager::getOutputForAttr(const audio_attributes_t *attr,
742 audio_io_handle_t *output,
743 audio_session_t session,
744 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700745 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800746 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200747 audio_output_flags_t *flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700748 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800749 audio_port_handle_t *portId)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700750{
Eric Laurente83b55d2014-11-14 10:06:21 -0800751 audio_attributes_t attributes;
752 if (attr != NULL) {
753 if (!isValidAttributes(attr)) {
754 ALOGE("getOutputForAttr() invalid attributes: usage=%d content=%d flags=0x%x tags=[%s]",
755 attr->usage, attr->content_type, attr->flags,
756 attr->tags);
757 return BAD_VALUE;
758 }
759 attributes = *attr;
760 } else {
761 if (*stream < AUDIO_STREAM_MIN || *stream >= AUDIO_STREAM_PUBLIC_CNT) {
762 ALOGE("getOutputForAttr(): invalid stream type");
763 return BAD_VALUE;
764 }
765 stream_type_to_audio_attributes(*stream, &attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700766 }
Eric Laurent20b9ef02016-12-05 11:03:16 -0800767
768 // TODO: check for existing client for this port ID
769 if (*portId == AUDIO_PORT_HANDLE_NONE) {
770 *portId = AudioPort::getNextUniqueId();
771 }
772
Eric Laurentc75307b2015-03-17 15:29:32 -0700773 sp<SwAudioOutputDescriptor> desc;
Jean-Michel Trivie8deced2016-02-11 12:50:39 -0800774 if (mPolicyMixes.getOutputForAttr(attributes, uid, desc) == NO_ERROR) {
François Gaffie036e1e92015-03-19 10:16:24 +0100775 ALOG_ASSERT(desc != 0, "Invalid desc returned by getOutputForAttr");
Eric Laurent20b9ef02016-12-05 11:03:16 -0800776 if (!audio_has_proportional_frames(config->format)) {
François Gaffie036e1e92015-03-19 10:16:24 +0100777 return BAD_VALUE;
Eric Laurent275e8e92014-11-30 15:14:47 -0800778 }
François Gaffie036e1e92015-03-19 10:16:24 +0100779 *stream = streamTypefromAttributesInt(&attributes);
780 *output = desc->mIoHandle;
781 ALOGV("getOutputForAttr() returns output %d", *output);
782 return NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -0800783 }
784 if (attributes.usage == AUDIO_USAGE_VIRTUAL_SOURCE) {
785 ALOGW("getOutputForAttr() no policy mix found for usage AUDIO_USAGE_VIRTUAL_SOURCE");
786 return BAD_VALUE;
787 }
788
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700789 ALOGV("getOutputForAttr() usage=%d, content=%d, tag=%s flags=%08x"
790 " session %d selectedDeviceId %d",
791 attributes.usage, attributes.content_type, attributes.tags, attributes.flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700792 session, *selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700793
794 *stream = streamTypefromAttributesInt(&attributes);
795
796 // Explicit routing?
797 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -0700798 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -0800799 deviceDesc = mAvailableOutputDevices.getDeviceFromId(*selectedDeviceId);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700800 }
801 mOutputRoutes.addRoute(session, *stream, SessionRoute::SOURCE_TYPE_NA, deviceDesc, uid);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700802
Eric Laurente83b55d2014-11-14 10:06:21 -0800803 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&attributes);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700804 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent93c3d412014-08-01 14:48:35 -0700805
Eric Laurente83b55d2014-11-14 10:06:21 -0800806 if ((attributes.flags & AUDIO_FLAG_HW_AV_SYNC) != 0) {
Nadav Bar766fb022018-01-07 12:18:03 +0200807 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_HW_AV_SYNC);
Eric Laurent93c3d412014-08-01 14:48:35 -0700808 }
809
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800810 ALOGV("getOutputForAttr() device 0x%x, sampling rate %d, format %#x, channel mask %#x, "
811 "flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200812 device, config->sample_rate, config->format, config->channel_mask, *flags);
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700813
Phil Burk2d059932018-02-15 15:55:11 -0800814 *output = getOutputForDevice(device, session, *stream, *output, config, flags);
Eric Laurente83b55d2014-11-14 10:06:21 -0800815 if (*output == AUDIO_IO_HANDLE_NONE) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700816 mOutputRoutes.removeRoute(session);
Eric Laurente83b55d2014-11-14 10:06:21 -0800817 return INVALID_OPERATION;
818 }
Paul McLeanaa981192015-03-21 09:55:15 -0700819
Eric Laurent2ac76942017-06-22 17:17:09 -0700820 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
821 *selectedDeviceId = outputDevices.size() > 0 ? outputDevices.itemAt(0)->getId()
822 : AUDIO_PORT_HANDLE_NONE;
823
824 ALOGV(" getOutputForAttr() returns output %d selectedDeviceId %d", *output, *selectedDeviceId);
825
Eric Laurente83b55d2014-11-14 10:06:21 -0800826 return NO_ERROR;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700827}
828
829audio_io_handle_t AudioPolicyManager::getOutputForDevice(
830 audio_devices_t device,
Kevin Rocard169753c2017-03-06 14:18:23 -0800831 audio_session_t session,
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700832 audio_stream_type_t stream,
Phil Burk2d059932018-02-15 15:55:11 -0800833 audio_io_handle_t originalOutput,
Eric Laurentfe231122017-11-17 17:48:06 -0800834 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200835 audio_output_flags_t *flags)
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700836{
Phil Burk2d059932018-02-15 15:55:11 -0800837 audio_io_handle_t output = originalOutput;
Eric Laurentcf2c0212014-07-25 16:20:43 -0700838 status_t status;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -0700839
Eric Laurente552edb2014-03-10 17:42:56 -0700840 // open a direct output if required by specified parameters
841 //force direct flag if offload flag is set: offloading implies a direct output stream
842 // and all common behaviors are driven by checking only the direct flag
843 // this should normally be set appropriately in the policy configuration file
Nadav Bar766fb022018-01-07 12:18:03 +0200844 if ((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
845 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurente552edb2014-03-10 17:42:56 -0700846 }
Nadav Bar766fb022018-01-07 12:18:03 +0200847 if ((*flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC) != 0) {
848 *flags = (audio_output_flags_t)(*flags | AUDIO_OUTPUT_FLAG_DIRECT);
Eric Laurent93c3d412014-08-01 14:48:35 -0700849 }
Eric Laurente83b55d2014-11-14 10:06:21 -0800850 // only allow deep buffering for music stream type
851 if (stream != AUDIO_STREAM_MUSIC) {
Nadav Bar766fb022018-01-07 12:18:03 +0200852 *flags = (audio_output_flags_t)(*flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700853 } else if (/* stream == AUDIO_STREAM_MUSIC && */
Nadav Bar766fb022018-01-07 12:18:03 +0200854 *flags == AUDIO_OUTPUT_FLAG_NONE &&
Ravi Kumar Alamanda439e4ed2015-04-03 12:13:21 -0700855 property_get_bool("audio.deep_buffer.media", false /* default_value */)) {
856 // use DEEP_BUFFER as default output for music stream type
Nadav Bar766fb022018-01-07 12:18:03 +0200857 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_DEEP_BUFFER;
Eric Laurente83b55d2014-11-14 10:06:21 -0800858 }
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700859 if (stream == AUDIO_STREAM_TTS) {
Nadav Bar766fb022018-01-07 12:18:03 +0200860 *flags = AUDIO_OUTPUT_FLAG_TTS;
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700861 } else if (stream == AUDIO_STREAM_VOICE_CALL &&
Eric Laurentfe231122017-11-17 17:48:06 -0800862 audio_is_linear_pcm(config->format)) {
Nadav Bar766fb022018-01-07 12:18:03 +0200863 *flags = (audio_output_flags_t)(AUDIO_OUTPUT_FLAG_VOIP_RX |
Haynes Mathew George84c621e2017-04-25 11:41:50 -0700864 AUDIO_OUTPUT_FLAG_DIRECT);
865 ALOGV("Set VoIP and Direct output flags for PCM format");
Nadav Bar766fb022018-01-07 12:18:03 +0200866 } else if (device == AUDIO_DEVICE_OUT_TELEPHONY_TX &&
867 stream == AUDIO_STREAM_MUSIC &&
868 audio_is_linear_pcm(config->format) &&
869 isInCall()) {
870 *flags = (audio_output_flags_t)AUDIO_OUTPUT_FLAG_INCALL_MUSIC;
Ravi Kumar Alamandac36a8892015-04-24 16:35:49 -0700871 }
Eric Laurente552edb2014-03-10 17:42:56 -0700872
Nadav Bar766fb022018-01-07 12:18:03 +0200873
Eric Laurentb732cf52014-09-24 19:08:21 -0700874 sp<IOProfile> profile;
875
876 // skip direct output selection if the request can obviously be attached to a mixed output
Eric Laurentc2607842014-09-29 09:43:03 -0700877 // and not explicitly requested
Nadav Bar766fb022018-01-07 12:18:03 +0200878 if (((*flags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
Eric Laurentfe231122017-11-17 17:48:06 -0800879 audio_is_linear_pcm(config->format) && config->sample_rate <= SAMPLE_RATE_HZ_MAX &&
880 audio_channel_count_from_out_mask(config->channel_mask) <= 2) {
Eric Laurentb732cf52014-09-24 19:08:21 -0700881 goto non_direct_output;
882 }
883
Andy Hung2ddee192015-12-18 17:34:44 -0800884 // Do not allow offloading if one non offloadable effect is enabled or MasterMono is enabled.
885 // This prevents creating an offloaded track and tearing it down immediately after start
886 // when audioflinger detects there is an active non offloadable effect.
Eric Laurente552edb2014-03-10 17:42:56 -0700887 // FIXME: We should check the audio session here but we do not have it in this context.
888 // This may prevent offloading in rare situations where effects are left active by apps
889 // in the background.
Eric Laurentb732cf52014-09-24 19:08:21 -0700890
Nadav Bar766fb022018-01-07 12:18:03 +0200891 if (((*flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0) ||
Andy Hung2ddee192015-12-18 17:34:44 -0800892 !(mEffects.isNonOffloadableEffectEnabled() || mMasterMono)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700893 profile = getProfileForDirectOutput(device,
Eric Laurentfe231122017-11-17 17:48:06 -0800894 config->sample_rate,
895 config->format,
896 config->channel_mask,
Nadav Bar766fb022018-01-07 12:18:03 +0200897 (audio_output_flags_t)*flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700898 }
899
Eric Laurent1c333e22014-05-20 10:48:17 -0700900 if (profile != 0) {
Phil Burk2d059932018-02-15 15:55:11 -0800901 // exclude MMAP streams
902 if ((*flags & AUDIO_OUTPUT_FLAG_MMAP_NOIRQ) == 0 || output != AUDIO_IO_HANDLE_NONE) {
903 for (size_t i = 0; i < mOutputs.size(); i++) {
904 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
905 if (!desc->isDuplicated() && (profile == desc->mProfile)) {
906 // reuse direct output if currently open by the same client
907 // and configured with same parameters
908 if ((config->sample_rate == desc->mSamplingRate) &&
909 audio_formats_match(config->format, desc->mFormat) &&
910 (config->channel_mask == desc->mChannelMask) &&
911 (session == desc->mDirectClientSession)) {
912 desc->mDirectOpenCount++;
913 ALOGI("getOutputForDevice() reusing direct output %d for session %d",
914 mOutputs.keyAt(i), session);
915 return mOutputs.keyAt(i);
916 }
Eric Laurente552edb2014-03-10 17:42:56 -0700917 }
918 }
919 }
Eric Laurent3974e3b2017-12-07 17:58:43 -0800920
921 if (!profile->canOpenNewIo()) {
922 goto non_direct_output;
Eric Laurente552edb2014-03-10 17:42:56 -0700923 }
Eric Laurent861a6282015-05-18 15:40:16 -0700924
Eric Laurent3974e3b2017-12-07 17:58:43 -0800925 sp<SwAudioOutputDescriptor> outputDesc =
926 new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurent53b810e2017-12-10 17:25:10 -0800927
928 DeviceVector outputDevices = mAvailableOutputDevices.getDevicesFromType(device);
929 String8 address = outputDevices.size() > 0 ? outputDevices.itemAt(0)->mAddress
930 : String8("");
931
Nadav Bar766fb022018-01-07 12:18:03 +0200932 status = outputDesc->open(config, device, address, stream, *flags, &output);
Eric Laurente552edb2014-03-10 17:42:56 -0700933
934 // only accept an output with the requested parameters
Eric Laurentcf2c0212014-07-25 16:20:43 -0700935 if (status != NO_ERROR ||
Eric Laurentfe231122017-11-17 17:48:06 -0800936 (config->sample_rate != 0 && config->sample_rate != outputDesc->mSamplingRate) ||
937 (config->format != AUDIO_FORMAT_DEFAULT &&
938 !audio_formats_match(config->format, outputDesc->mFormat)) ||
939 (config->channel_mask != 0 && config->channel_mask != outputDesc->mChannelMask)) {
940 ALOGV("getOutputForDevice() failed opening direct output: output %d sample rate %d %d,"
941 "format %d %d, channel mask %04x %04x", output, config->sample_rate,
942 outputDesc->mSamplingRate, config->format, outputDesc->mFormat,
943 config->channel_mask, outputDesc->mChannelMask);
Eric Laurentcf2c0212014-07-25 16:20:43 -0700944 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -0800945 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -0700946 }
Eric Laurenta82797f2015-01-30 11:49:43 -0800947 // fall back to mixer output if possible when the direct output could not be open
Eric Laurentfe231122017-11-17 17:48:06 -0800948 if (audio_is_linear_pcm(config->format) &&
949 config->sample_rate <= SAMPLE_RATE_HZ_MAX) {
Eric Laurenta82797f2015-01-30 11:49:43 -0800950 goto non_direct_output;
951 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700952 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -0700953 }
Eric Laurentcf2c0212014-07-25 16:20:43 -0700954 outputDesc->mRefCount[stream] = 0;
955 outputDesc->mStopTime[stream] = 0;
956 outputDesc->mDirectOpenCount = 1;
Kevin Rocard169753c2017-03-06 14:18:23 -0800957 outputDesc->mDirectClientSession = session;
958
Eric Laurente552edb2014-03-10 17:42:56 -0700959 addOutput(output, outputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700960 mPreviousOutputs = mOutputs;
Eric Laurentf4e63452017-11-06 19:31:46 +0000961 ALOGV("getOutputForDevice() returns new direct output %d", output);
Eric Laurentb52c1522014-05-20 11:27:36 -0700962 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -0700963 return output;
964 }
965
Eric Laurentb732cf52014-09-24 19:08:21 -0700966non_direct_output:
Eric Laurent14cbfca2016-03-17 09:42:16 -0700967
968 // A request for HW A/V sync cannot fallback to a mixed output because time
969 // stamps are embedded in audio data
Phil Burk2d059932018-02-15 15:55:11 -0800970 if ((*flags & (AUDIO_OUTPUT_FLAG_HW_AV_SYNC | AUDIO_OUTPUT_FLAG_MMAP_NOIRQ)) != 0) {
Eric Laurent14cbfca2016-03-17 09:42:16 -0700971 return AUDIO_IO_HANDLE_NONE;
972 }
973
Eric Laurente552edb2014-03-10 17:42:56 -0700974 // ignoring channel mask due to downmix capability in mixer
975
976 // open a non direct output
977
978 // for non direct outputs, only PCM is supported
Eric Laurentfe231122017-11-17 17:48:06 -0800979 if (audio_is_linear_pcm(config->format)) {
Eric Laurente552edb2014-03-10 17:42:56 -0700980 // get which output is suitable for the specified stream. The actual
981 // routing change will happen when startOutput() will be called
982 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
983
Eric Laurent8838a382014-09-08 16:44:28 -0700984 // at this stage we should ignore the DIRECT flag as no direct output could be found earlier
Nadav Bar766fb022018-01-07 12:18:03 +0200985 *flags = (audio_output_flags_t)(*flags & ~AUDIO_OUTPUT_FLAG_DIRECT);
986 output = selectOutput(outputs, *flags, config->format);
Eric Laurente552edb2014-03-10 17:42:56 -0700987 }
Eric Laurentf4e63452017-11-06 19:31:46 +0000988 ALOGW_IF((output == 0), "getOutputForDevice() could not find output for stream %d, "
Glenn Kasten49f36ba2017-12-06 13:02:02 -0800989 "sampling rate %d, format %#x, channels %#x, flags %#x",
Nadav Bar766fb022018-01-07 12:18:03 +0200990 stream, config->sample_rate, config->format, config->channel_mask, *flags);
Eric Laurente552edb2014-03-10 17:42:56 -0700991
Eric Laurente552edb2014-03-10 17:42:56 -0700992 return output;
993}
994
Eric Laurente0720872014-03-11 09:30:41 -0700995audio_io_handle_t AudioPolicyManager::selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent8838a382014-09-08 16:44:28 -0700996 audio_output_flags_t flags,
997 audio_format_t format)
Eric Laurente552edb2014-03-10 17:42:56 -0700998{
999 // select one output among several that provide a path to a particular device or set of
1000 // devices (the list was previously build by getOutputsForDevice()).
1001 // The priority is as follows:
1002 // 1: the output with the highest number of requested policy flags
Eric Laurente6930022016-02-11 10:20:40 -08001003 // 2: the output with the bit depth the closest to the requested one
1004 // 3: the primary output
1005 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07001006
1007 if (outputs.size() == 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001008 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001009 }
1010 if (outputs.size() == 1) {
1011 return outputs[0];
1012 }
1013
1014 int maxCommonFlags = 0;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001015 audio_io_handle_t outputForFlags = AUDIO_IO_HANDLE_NONE;
1016 audio_io_handle_t outputForPrimary = AUDIO_IO_HANDLE_NONE;
1017 audio_io_handle_t outputForFormat = AUDIO_IO_HANDLE_NONE;
Eric Laurente6930022016-02-11 10:20:40 -08001018 audio_format_t bestFormat = AUDIO_FORMAT_INVALID;
1019 audio_format_t bestFormatForFlags = AUDIO_FORMAT_INVALID;
Eric Laurente552edb2014-03-10 17:42:56 -07001020
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001021 for (audio_io_handle_t output : outputs) {
1022 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07001023 if (!outputDesc->isDuplicated()) {
Eric Laurent8838a382014-09-08 16:44:28 -07001024 // if a valid format is specified, skip output if not compatible
1025 if (format != AUDIO_FORMAT_INVALID) {
1026 if (outputDesc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente6930022016-02-11 10:20:40 -08001027 if (!audio_formats_match(format, outputDesc->mFormat)) {
Eric Laurent8838a382014-09-08 16:44:28 -07001028 continue;
1029 }
1030 } else if (!audio_is_linear_pcm(format)) {
1031 continue;
1032 }
Eric Laurente6930022016-02-11 10:20:40 -08001033 if (AudioPort::isBetterFormatMatch(
1034 outputDesc->mFormat, bestFormat, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001035 outputForFormat = output;
Eric Laurente6930022016-02-11 10:20:40 -08001036 bestFormat = outputDesc->mFormat;
1037 }
Eric Laurent8838a382014-09-08 16:44:28 -07001038 }
1039
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001040 int commonFlags = popcount(outputDesc->mProfile->getFlags() & flags);
Eric Laurente6930022016-02-11 10:20:40 -08001041 if (commonFlags >= maxCommonFlags) {
1042 if (commonFlags == maxCommonFlags) {
Andy Hungc9901522017-11-10 20:07:54 -08001043 if (format != AUDIO_FORMAT_INVALID
1044 && AudioPort::isBetterFormatMatch(
1045 outputDesc->mFormat, bestFormatForFlags, format)) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001046 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001047 bestFormatForFlags = outputDesc->mFormat;
1048 }
1049 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001050 outputForFlags = output;
Eric Laurente6930022016-02-11 10:20:40 -08001051 maxCommonFlags = commonFlags;
1052 bestFormatForFlags = outputDesc->mFormat;
1053 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001054 ALOGV("selectOutput() commonFlags for output %d, %04x", output, commonFlags);
Eric Laurente552edb2014-03-10 17:42:56 -07001055 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01001056 if (outputDesc->mProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001057 outputForPrimary = output;
Eric Laurente552edb2014-03-10 17:42:56 -07001058 }
1059 }
1060 }
1061
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001062 if (outputForFlags != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001063 return outputForFlags;
Eric Laurente552edb2014-03-10 17:42:56 -07001064 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001065 if (outputForFormat != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001066 return outputForFormat;
1067 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001068 if (outputForPrimary != AUDIO_IO_HANDLE_NONE) {
Eric Laurente6930022016-02-11 10:20:40 -08001069 return outputForPrimary;
Eric Laurente552edb2014-03-10 17:42:56 -07001070 }
1071
1072 return outputs[0];
1073}
1074
Eric Laurente0720872014-03-11 09:30:41 -07001075status_t AudioPolicyManager::startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001076 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001077 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001078{
Paul McLeanaa981192015-03-21 09:55:15 -07001079 ALOGV("startOutput() output %d, stream %d, session %d",
1080 output, stream, session);
Eric Laurente552edb2014-03-10 17:42:56 -07001081 ssize_t index = mOutputs.indexOfKey(output);
1082 if (index < 0) {
1083 ALOGW("startOutput() unknown output %d", output);
1084 return BAD_VALUE;
1085 }
1086
Eric Laurentc75307b2015-03-17 15:29:32 -07001087 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
1088
Eric Laurent733ce942017-12-07 12:18:25 -08001089 status_t status = outputDesc->start();
1090 if (status != NO_ERROR) {
1091 return status;
Eric Laurent3974e3b2017-12-07 17:58:43 -08001092 }
1093
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001094 // Routing?
1095 mOutputRoutes.incRouteActivity(session);
1096
Eric Laurentc75307b2015-03-17 15:29:32 -07001097 audio_devices_t newDevice;
Eric Laurentc40d9692016-04-13 19:14:13 -07001098 AudioMix *policyMix = NULL;
1099 const char *address = NULL;
Eric Laurentc75307b2015-03-17 15:29:32 -07001100 if (outputDesc->mPolicyMix != NULL) {
Eric Laurentc40d9692016-04-13 19:14:13 -07001101 policyMix = outputDesc->mPolicyMix;
1102 address = policyMix->mDeviceAddress.string();
1103 if ((policyMix->mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
1104 newDevice = policyMix->mDeviceType;
1105 } else {
1106 newDevice = AUDIO_DEVICE_OUT_REMOTE_SUBMIX;
1107 }
Eric Laurent493404d2015-04-21 15:07:36 -07001108 } else if (mOutputRoutes.hasRouteChanged(session)) {
1109 newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001110 checkStrategyRoute(getStrategy(stream), output);
Eric Laurentc75307b2015-03-17 15:29:32 -07001111 } else {
1112 newDevice = AUDIO_DEVICE_NONE;
1113 }
1114
1115 uint32_t delayMs = 0;
1116
Eric Laurent733ce942017-12-07 12:18:25 -08001117 status = startSource(outputDesc, stream, newDevice, address, &delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07001118
1119 if (status != NO_ERROR) {
1120 mOutputRoutes.decRouteActivity(session);
Eric Laurent733ce942017-12-07 12:18:25 -08001121 outputDesc->stop();
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001122 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001123 }
1124 // Automatically enable the remote submix input when output is started on a re routing mix
1125 // of type MIX_TYPE_RECORDERS
Eric Laurentc40d9692016-04-13 19:14:13 -07001126 if (audio_is_remote_submix_device(newDevice) && policyMix != NULL &&
1127 policyMix->mMixType == MIX_TYPE_RECORDERS) {
Eric Laurentc75307b2015-03-17 15:29:32 -07001128 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1129 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
Eric Laurentc40d9692016-04-13 19:14:13 -07001130 address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001131 "remote-submix");
1132 }
1133
1134 if (delayMs != 0) {
1135 usleep(delayMs * 1000);
1136 }
1137
1138 return status;
1139}
1140
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001141status_t AudioPolicyManager::startSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurentc75307b2015-03-17 15:29:32 -07001142 audio_stream_type_t stream,
1143 audio_devices_t device,
Eric Laurentc40d9692016-04-13 19:14:13 -07001144 const char *address,
Eric Laurentc75307b2015-03-17 15:29:32 -07001145 uint32_t *delayMs)
1146{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001147 // cannot start playback of STREAM_TTS if any other output is being used
1148 uint32_t beaconMuteLatency = 0;
Eric Laurentc75307b2015-03-17 15:29:32 -07001149
1150 *delayMs = 0;
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001151 if (stream == AUDIO_STREAM_TTS) {
1152 ALOGV("\t found BEACON stream");
Eric Laurent9459fb02015-08-12 18:36:32 -07001153 if (!mTtsOutputAvailable && mOutputs.isAnyOutputActive(AUDIO_STREAM_TTS /*streamToIgnore*/)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001154 return INVALID_OPERATION;
1155 } else {
1156 beaconMuteLatency = handleEventForBeacon(STARTING_BEACON);
1157 }
1158 } else {
1159 // some playback other than beacon starts
1160 beaconMuteLatency = handleEventForBeacon(STARTING_OUTPUT);
1161 }
1162
Eric Laurent77305a62016-07-25 16:39:22 -07001163 // force device change if the output is inactive and no audio patch is already present.
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001164 // check active before incrementing usage count
Eric Laurent77305a62016-07-25 16:39:22 -07001165 bool force = !outputDesc->isActive() &&
1166 (outputDesc->getPatchHandle() == AUDIO_PATCH_HANDLE_NONE);
Eric Laurent7c1ec5f2015-07-09 14:52:47 -07001167
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001168 // requiresMuteCheck is false when we can bypass mute strategy.
1169 // It covers a common case when there is no materially active audio
1170 // and muting would result in unnecessary delay and dropped audio.
1171 const uint32_t outputLatencyMs = outputDesc->latency();
1172 bool requiresMuteCheck = outputDesc->isActive(outputLatencyMs * 2); // account for drain
1173
Eric Laurente552edb2014-03-10 17:42:56 -07001174 // increment usage count for this stream on the requested output:
1175 // NOTE that the usage count is the same for duplicated output and hardware output which is
1176 // necessary for a correct control of hardware output routing by startOutput() and stopOutput()
1177 outputDesc->changeRefCount(stream, 1);
1178
Eric Laurent36829f92017-04-07 19:04:42 -07001179 if (stream == AUDIO_STREAM_MUSIC) {
1180 selectOutputForMusicEffects();
1181 }
1182
Eric Laurent493404d2015-04-21 15:07:36 -07001183 if (outputDesc->mRefCount[stream] == 1 || device != AUDIO_DEVICE_NONE) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001184 // starting an output being rerouted?
Eric Laurentc75307b2015-03-17 15:29:32 -07001185 if (device == AUDIO_DEVICE_NONE) {
1186 device = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurent275e8e92014-11-30 15:14:47 -08001187 }
Eric Laurent36829f92017-04-07 19:04:42 -07001188
Eric Laurente552edb2014-03-10 17:42:56 -07001189 routing_strategy strategy = getStrategy(stream);
1190 bool shouldWait = (strategy == STRATEGY_SONIFICATION) ||
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001191 (strategy == STRATEGY_SONIFICATION_RESPECTFUL) ||
1192 (beaconMuteLatency > 0);
1193 uint32_t waitMs = beaconMuteLatency;
Eric Laurente552edb2014-03-10 17:42:56 -07001194 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001195 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07001196 if (desc != outputDesc) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001197 // An output has a shared device if
1198 // - managed by the same hw module
1199 // - supports the currently selected device
1200 const bool sharedDevice = outputDesc->sharesHwModuleWith(desc)
1201 && (desc->supportedDevices() & device) != AUDIO_DEVICE_NONE;
1202
Eric Laurent77305a62016-07-25 16:39:22 -07001203 // force a device change if any other output is:
1204 // - managed by the same hw module
Jean-Michel Trivi4a5b4812018-02-08 17:22:32 +00001205 // - supports currently selected device
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001206 // - has a current device selection that differs from selected device.
Eric Laurent77305a62016-07-25 16:39:22 -07001207 // - has an active audio patch
Eric Laurente552edb2014-03-10 17:42:56 -07001208 // In this case, the audio HAL must receive the new device selection so that it can
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001209 // change the device currently selected by the other output.
1210 if (sharedDevice &&
Eric Laurent77305a62016-07-25 16:39:22 -07001211 desc->device() != device &&
Eric Laurent77305a62016-07-25 16:39:22 -07001212 desc->getPatchHandle() != AUDIO_PATCH_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07001213 force = true;
1214 }
1215 // wait for audio on other active outputs to be presented when starting
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001216 // a notification so that audio focus effect can propagate, or that a mute/unmute
1217 // event occurred for beacon
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001218 const uint32_t latencyMs = desc->latency();
1219 const bool isActive = desc->isActive(latencyMs * 2); // account for drain
1220
1221 if (shouldWait && isActive && (waitMs < latencyMs)) {
1222 waitMs = latencyMs;
Eric Laurente552edb2014-03-10 17:42:56 -07001223 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001224
1225 // Require mute check if another output is on a shared device
1226 // and currently active to have proper drain and avoid pops.
1227 // Note restoring AudioTracks onto this output needs to invoke
1228 // a volume ramp if there is no mute.
1229 requiresMuteCheck |= sharedDevice && isActive;
Eric Laurente552edb2014-03-10 17:42:56 -07001230 }
1231 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001232
1233 const uint32_t muteWaitMs =
1234 setOutputDevice(outputDesc, device, force, 0, NULL, address, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07001235
1236 // handle special case for sonification while in call
1237 if (isInCall()) {
1238 handleIncallSonification(stream, true, false);
1239 }
1240
1241 // apply volume rules for current stream and device if necessary
1242 checkAndSetVolume(stream,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001243 mVolumeCurves->getVolumeIndex(stream, outputDesc->device()),
Eric Laurentc75307b2015-03-17 15:29:32 -07001244 outputDesc,
Shuhei Miyazaki6fe70332017-07-31 15:21:28 +09001245 outputDesc->device());
Eric Laurente552edb2014-03-10 17:42:56 -07001246
1247 // update the outputs if starting an output with a stream that can affect notification
1248 // routing
1249 handleNotificationRoutingForStream(stream);
Eric Laurentc722f302014-12-10 11:21:49 -08001250
Eric Laurent2cbe89a2014-12-19 11:49:08 -08001251 // force reevaluating accessibility routing when ringtone or alarm starts
1252 if (strategy == STRATEGY_SONIFICATION) {
1253 mpClientInterface->invalidateStream(AUDIO_STREAM_ACCESSIBILITY);
1254 }
Eric Laurentdc462862016-07-19 12:29:53 -07001255
1256 if (waitMs > muteWaitMs) {
1257 *delayMs = waitMs - muteWaitMs;
1258 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00001259
1260 // FIXME: A device change (muteWaitMs > 0) likely introduces a volume change.
1261 // A volume change enacted by APM with 0 delay is not synchronous, as it goes
1262 // via AudioCommandThread to AudioFlinger. Hence it is possible that the volume
1263 // change occurs after the MixerThread starts and causes a stream volume
1264 // glitch.
1265 //
1266 // We do not introduce additional delay here.
Eric Laurente552edb2014-03-10 17:42:56 -07001267 }
Eric Laurentdc462862016-07-19 12:29:53 -07001268
Eric Laurente552edb2014-03-10 17:42:56 -07001269 return NO_ERROR;
1270}
1271
1272
Eric Laurente0720872014-03-11 09:30:41 -07001273status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001274 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001275 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001276{
1277 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1278 ssize_t index = mOutputs.indexOfKey(output);
1279 if (index < 0) {
1280 ALOGW("stopOutput() unknown output %d", output);
1281 return BAD_VALUE;
1282 }
1283
Eric Laurentc75307b2015-03-17 15:29:32 -07001284 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001285
Eric Laurentc75307b2015-03-17 15:29:32 -07001286 if (outputDesc->mRefCount[stream] == 1) {
1287 // Automatically disable the remote submix input when output is stopped on a
1288 // re routing mix of type MIX_TYPE_RECORDERS
1289 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1290 outputDesc->mPolicyMix != NULL &&
1291 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1292 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1293 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001294 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001295 "remote-submix");
1296 }
1297 }
1298
1299 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001300 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001301 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001302 int activityCount = mOutputRoutes.decRouteActivity(session);
1303 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1304
1305 if (forceDeviceUpdate) {
1306 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1307 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001308 }
1309
Eric Laurent3974e3b2017-12-07 17:58:43 -08001310 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1311
Eric Laurent733ce942017-12-07 12:18:25 -08001312 if (status == NO_ERROR ) {
1313 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001314 }
1315 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001316}
1317
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001318status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001319 audio_stream_type_t stream,
1320 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001321{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001322 // always handle stream stop, check which stream type is stopping
1323 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1324
Eric Laurente552edb2014-03-10 17:42:56 -07001325 // handle special case for sonification while in call
1326 if (isInCall()) {
1327 handleIncallSonification(stream, false, false);
1328 }
1329
1330 if (outputDesc->mRefCount[stream] > 0) {
1331 // decrement usage count of this stream on the output
1332 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001333
Eric Laurente552edb2014-03-10 17:42:56 -07001334 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001335 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001336 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001337 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001338 // delay the device switch by twice the latency because stopOutput() is executed when
1339 // the track stop() command is received and at that time the audio track buffer can
1340 // still contain data that needs to be drained. The latency only covers the audio HAL
1341 // and kernel buffers. Also the latency does not always include additional delay in the
1342 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001343 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001344
1345 // force restoring the device selection on other active outputs if it differs from the
1346 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001347 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001348 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001349 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001350 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001351 desc->isActive() &&
1352 outputDesc->sharesHwModuleWith(desc) &&
1353 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001354 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1355 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001356 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001357 newDevice2,
1358 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001359 delayMs);
1360 // re-apply device specific volume if not done by setOutputDevice()
1361 if (!force) {
1362 applyStreamVolumes(desc, newDevice2, delayMs);
1363 }
Eric Laurente552edb2014-03-10 17:42:56 -07001364 }
1365 }
1366 // update the outputs if stopping one with a stream that can affect notification routing
1367 handleNotificationRoutingForStream(stream);
1368 }
Eric Laurent36829f92017-04-07 19:04:42 -07001369 if (stream == AUDIO_STREAM_MUSIC) {
1370 selectOutputForMusicEffects();
1371 }
Eric Laurente552edb2014-03-10 17:42:56 -07001372 return NO_ERROR;
1373 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001374 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001375 return INVALID_OPERATION;
1376 }
1377}
1378
Eric Laurente83b55d2014-11-14 10:06:21 -08001379void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001380 audio_stream_type_t stream __unused,
1381 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001382{
1383 ALOGV("releaseOutput() %d", output);
1384 ssize_t index = mOutputs.indexOfKey(output);
1385 if (index < 0) {
1386 ALOGW("releaseOutput() releasing unknown output %d", output);
1387 return;
1388 }
1389
Paul McLeanaa981192015-03-21 09:55:15 -07001390 // Routing
1391 mOutputRoutes.removeRoute(session);
1392
Eric Laurentc75307b2015-03-17 15:29:32 -07001393 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001394 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001395 if (desc->mDirectOpenCount <= 0) {
1396 ALOGW("releaseOutput() invalid open count %d for output %d",
1397 desc->mDirectOpenCount, output);
1398 return;
1399 }
1400 if (--desc->mDirectOpenCount == 0) {
1401 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001402 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001403 }
1404 }
1405}
1406
1407
Eric Laurentcaf7f482014-11-25 17:50:47 -08001408status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1409 audio_io_handle_t *input,
1410 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001411 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001412 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001413 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001414 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001415 input_type_t *inputType,
1416 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001417{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001418 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001419 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001420 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001421
Eric Laurentad2e7b92017-09-14 20:06:42 -07001422 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001423 // handle legacy remote submix case where the address was not always specified
1424 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001425 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001426 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001427 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001428 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001429
Eric Laurentfe231122017-11-17 17:48:06 -08001430 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1431 inputSource = AUDIO_SOURCE_MIC;
1432 }
1433
Paul McLean466dc8e2015-04-17 13:15:36 -06001434 // Explicit routing?
1435 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001436 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001437 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001438 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001439 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001440
Eric Laurentad2e7b92017-09-14 20:06:42 -07001441 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1442 // possible
1443 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1444 *input != AUDIO_IO_HANDLE_NONE) {
1445 ssize_t index = mInputs.indexOfKey(*input);
1446 if (index < 0) {
1447 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1448 status = BAD_VALUE;
1449 goto error;
1450 }
1451 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1452 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1453 if (audioSession == 0) {
1454 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1455 status = BAD_VALUE;
1456 goto error;
1457 }
1458 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1459 // The second call is for the first active client and sets the UID. Any further call
1460 // corresponds to a new client and is only permitted from the same UId.
1461 if (audioSession->openCount() == 1) {
1462 audioSession->setUid(uid);
1463 } else if (audioSession->uid() != uid) {
1464 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1465 uid, session, audioSession->uid());
1466 status = INVALID_OPERATION;
1467 goto error;
1468 }
1469 audioSession->changeOpenCount(1);
1470 *inputType = API_INPUT_LEGACY;
1471 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1472 *portId = AudioPort::getNextUniqueId();
1473 }
1474 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1475 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1476 : AUDIO_PORT_HANDLE_NONE;
1477 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1478
1479 return NO_ERROR;
1480 }
1481
1482 *input = AUDIO_IO_HANDLE_NONE;
1483 *inputType = API_INPUT_INVALID;
1484
Eric Laurentad2e7b92017-09-14 20:06:42 -07001485 halInputSource = inputSource;
1486
1487 // TODO: check for existing client for this port ID
1488 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1489 *portId = AudioPort::getNextUniqueId();
1490 }
1491
1492 audio_devices_t device;
1493
Eric Laurentc447ded2015-01-06 08:47:05 -08001494 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001495 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001496 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1497 if (status != NO_ERROR) {
1498 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001499 }
1500 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001501 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1502 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001503 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001504 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001505 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001506 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001507 status = BAD_VALUE;
1508 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001509 }
Eric Laurentc722f302014-12-10 11:21:49 -08001510 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001511 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001512 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1513 // there is an external policy, but this input is attached to a mix of recorders,
1514 // meaning it receives audio injected into the framework, so the recorder doesn't
1515 // know about it and is therefore considered "legacy"
1516 *inputType = API_INPUT_LEGACY;
1517 } else {
1518 // recording a mix of players defined by an external policy, we're rerouting for
1519 // an external policy
1520 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1521 }
Eric Laurentc722f302014-12-10 11:21:49 -08001522 } else if (audio_is_remote_submix_device(device)) {
1523 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001524 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001525 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1526 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001527 } else {
1528 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001529 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001530
Eric Laurent599c7582015-12-07 18:05:55 -08001531 }
1532
1533 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001534 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001535 policyMix);
1536 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001537 status = INVALID_OPERATION;
1538 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001539 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001540
Eric Laurentad2e7b92017-09-14 20:06:42 -07001541 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001542 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1543 : AUDIO_PORT_HANDLE_NONE;
1544
1545 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1546 *input, *inputType, *selectedDeviceId);
1547
Eric Laurent599c7582015-12-07 18:05:55 -08001548 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001549
1550error:
1551 mInputRoutes.removeRoute(session);
1552 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001553}
1554
1555
1556audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1557 String8 address,
1558 audio_session_t session,
1559 uid_t uid,
1560 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001561 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001562 audio_input_flags_t flags,
1563 AudioMix *policyMix)
1564{
1565 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1566 audio_source_t halInputSource = inputSource;
1567 bool isSoundTrigger = false;
1568
1569 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1570 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1571 if (index >= 0) {
1572 input = mSoundTriggerSessions.valueFor(session);
1573 isSoundTrigger = true;
1574 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1575 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1576 } else {
1577 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001578 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001579 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001580 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001581 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001582 }
1583
Andy Hungf129b032015-04-07 13:45:50 -07001584 // find a compatible input profile (not necessarily identical in parameters)
1585 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001586 // sampling rate and flags may be updated by getInputProfile
1587 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1588 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
1589 audio_format_t profileFormat = config->format;
1590 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001591 audio_input_flags_t profileFlags = flags;
1592 for (;;) {
Eric Laurent275e8e92014-11-30 15:14:47 -08001593 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001594 profileSamplingRate, profileFormat, profileChannelMask,
1595 profileFlags);
1596 if (profile != 0) {
1597 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001598 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1599 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001600 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1601 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1602 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001603 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001604 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1605 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001606 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001607 }
Eric Laurente552edb2014-03-10 17:42:56 -07001608 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001609 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001610 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001611 if (samplingRate == 0) {
1612 samplingRate = profileSamplingRate;
1613 }
Eric Laurente552edb2014-03-10 17:42:56 -07001614
Eric Laurent322b4d22015-04-03 15:57:54 -07001615 if (profile->getModuleHandle() == 0) {
1616 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001617 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001618 }
1619
Eric Laurent599c7582015-12-07 18:05:55 -08001620 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001621 inputSource,
1622 config->format,
1623 samplingRate,
1624 config->channel_mask,
1625 flags,
1626 uid,
1627 isSoundTrigger,
1628 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001629
Eric Laurent74708e72017-04-07 17:13:42 -07001630// FIXME: disable concurrent capture until UI is ready
1631#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001632 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001633 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001634 for (size_t i = 0; i < mInputs.size(); i++) {
1635 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001636 // reuse input if:
1637 // - it shares the same profile
1638 // AND
1639 // - it is not a reroute submix input
1640 // AND
1641 // - it is: not used for sound trigger
1642 // OR
1643 // used for sound trigger and all clients use the same session ID
1644 //
1645 if ((profile == desc->mProfile) &&
1646 (isSoundTrigger == desc->isSoundTrigger()) &&
1647 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001648
1649 sp<AudioSession> as = desc->getAudioSession(session);
1650 if (as != 0) {
1651 // do not allow unmatching properties on same session
1652 if (as->matches(audioSession)) {
1653 as->changeOpenCount(1);
1654 } else {
1655 ALOGW("getInputForDevice() record with different attributes"
1656 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001657 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001658 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001659 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001660 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001661 }
Eric Laurentbb948092017-01-23 18:33:30 -08001662
Eric Laurent555530a2017-02-07 18:17:24 -08001663 // Reuse the already opened input stream on this profile if:
1664 // - the new capture source is background OR
1665 // - the path requested configurations match OR
1666 // - the new source priority is less than the highest source priority on this input
1667 // If the input stream cannot be reused, close it before opening a new stream
1668 // on the same profile for the new client so that the requested path configuration
1669 // can be selected.
1670 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001671 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001672 desc->mChannelMask != config->channel_mask ||
1673 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001674 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001675 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001676 reusedInputDesc = desc;
1677 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001678 } else {
1679 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001680 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1681 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001682 }
Eric Laurent599c7582015-12-07 18:05:55 -08001683 }
1684 }
Eric Laurent599c7582015-12-07 18:05:55 -08001685
Eric Laurent555530a2017-02-07 18:17:24 -08001686 if (reusedInputDesc != 0) {
1687 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1688 for (size_t j = 0; j < sessions.size(); j++) {
1689 audio_session_t currentSession = sessions.keyAt(j);
1690 stopInput(reusedInputDesc->mIoHandle, currentSession);
1691 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1692 }
1693 }
Eric Laurent74708e72017-04-07 17:13:42 -07001694#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001695
Eric Laurent3974e3b2017-12-07 17:58:43 -08001696 if (!profile->canOpenNewIo()) {
1697 return AUDIO_IO_HANDLE_NONE;
1698 }
1699
Eric Laurentfe231122017-11-17 17:48:06 -08001700 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001701
Eric Laurentfe231122017-11-17 17:48:06 -08001702 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1703 lConfig.sample_rate = profileSamplingRate;
1704 lConfig.channel_mask = profileChannelMask;
1705 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001706
Eric Laurent53b810e2017-12-10 17:25:10 -08001707 if (address == "") {
1708 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1709 // the inputs vector must be of size >= 1, but we don't want to crash here
1710 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1711 }
1712
Eric Laurentfe231122017-11-17 17:48:06 -08001713 status_t status = inputDesc->open(&lConfig, device, address,
1714 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001715
1716 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001717 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001718 (profileSamplingRate != lConfig.sample_rate) ||
1719 !audio_formats_match(profileFormat, lConfig.format) ||
1720 (profileChannelMask != lConfig.channel_mask)) {
1721 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001722 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001723 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001724 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001725 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001726 }
Eric Laurent599c7582015-12-07 18:05:55 -08001727 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001728 }
1729
Eric Laurentc722f302014-12-10 11:21:49 -08001730 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001731 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001732
Eric Laurent599c7582015-12-07 18:05:55 -08001733 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001734 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001735
Eric Laurent599c7582015-12-07 18:05:55 -08001736 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001737}
1738
Eric Laurentbb948092017-01-23 18:33:30 -08001739//static
1740bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1741{
1742 return (source == AUDIO_SOURCE_HOTWORD) ||
1743 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1744 (source == AUDIO_SOURCE_FM_TUNER);
1745}
1746
Eric Laurentfb66dd92016-01-28 18:32:03 -08001747bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1748 const sp<AudioSession>& audioSession)
1749{
1750 // Do not allow capture if an active voice call is using a software patch and
1751 // the call TX source device is on the same HW module.
1752 // FIXME: would be better to refine to only inputs whose profile connects to the
1753 // call TX device but this information is not in the audio patch
1754 if (mCallTxPatch != 0 &&
1755 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1756 return false;
1757 }
1758
1759 // starting concurrent capture is enabled if:
1760 // 1) capturing for re-routing
1761 // 2) capturing for HOTWORD source
1762 // 3) capturing for FM TUNER source
1763 // 3) All other active captures are either for re-routing or HOTWORD
1764
1765 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001766 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001767 return true;
1768 }
1769
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001770 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001771 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001772 !is_virtual_input_device(activeInput->mDevice)) {
1773 return false;
1774 }
1775 }
1776
1777 return true;
1778}
1779
Chris Thornton2b864642017-06-27 21:26:07 -07001780// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1781bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1782 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1783 bool soundTriggerSupportsConcurrentCapture = false;
1784 unsigned int numModules = 0;
1785 struct sound_trigger_module_descriptor* nModules = NULL;
1786
1787 status_t status = SoundTrigger::listModules(nModules, &numModules);
1788 if (status == NO_ERROR && numModules != 0) {
1789 nModules = (struct sound_trigger_module_descriptor*) calloc(
1790 numModules, sizeof(struct sound_trigger_module_descriptor));
1791 if (nModules == NULL) {
1792 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1793 // ram the next time this function is called.
1794 ALOGE("Failed to allocate buffer for module descriptors");
1795 return false;
1796 }
1797
1798 status = SoundTrigger::listModules(nModules, &numModules);
1799 if (status == NO_ERROR) {
1800 soundTriggerSupportsConcurrentCapture = true;
1801 for (size_t i = 0; i < numModules; ++i) {
1802 soundTriggerSupportsConcurrentCapture &=
1803 nModules[i].properties.concurrent_capture;
1804 }
1805 }
1806 free(nModules);
1807 }
1808 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1809 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1810 }
1811 return mSoundTriggerSupportsConcurrentCapture;
1812}
1813
Eric Laurentfb66dd92016-01-28 18:32:03 -08001814
Eric Laurent4dc68062014-07-28 17:26:49 -07001815status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001816 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001817 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001818 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001819{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001820
1821 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1822 input, session, silenced, *concurrency);
1823
Eric Laurentfb66dd92016-01-28 18:32:03 -08001824 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001825
Eric Laurente552edb2014-03-10 17:42:56 -07001826 ssize_t index = mInputs.indexOfKey(input);
1827 if (index < 0) {
1828 ALOGW("startInput() unknown input %d", input);
1829 return BAD_VALUE;
1830 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001831 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001832
Eric Laurent599c7582015-12-07 18:05:55 -08001833 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1834 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001835 ALOGW("startInput() unknown session %d on input %d", session, input);
1836 return BAD_VALUE;
1837 }
1838
Eric Laurent74708e72017-04-07 17:13:42 -07001839// FIXME: disable concurrent capture until UI is ready
1840#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001841 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1842 ALOGW("startInput(%d) failed: other input already started", input);
1843 return INVALID_OPERATION;
1844 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001845
Eric Laurentfb66dd92016-01-28 18:32:03 -08001846 if (isInCall()) {
1847 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1848 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001849 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001850 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001851 }
Eric Laurent74708e72017-04-07 17:13:42 -07001852#else
1853 if (!is_virtual_input_device(inputDesc->mDevice)) {
1854 if (mCallTxPatch != 0 &&
1855 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1856 ALOGW("startInput(%d) failed: call in progress", input);
1857 return INVALID_OPERATION;
1858 }
1859
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001860 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001861
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001862 // If a UID is idle and records silence and another not silenced recording starts
1863 // from another UID (idle or active) we stop the current idle UID recording in
1864 // favor of the new one - "There can be only one" TM
1865 if (!silenced) {
1866 for (const auto& activeDesc : activeInputs) {
1867 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1868 activeDesc->getId() == inputDesc->getId()) {
1869 continue;
1870 }
1871
1872 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1873 true /*activeOnly*/);
1874 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1875 if (activeSession->isSilenced()) {
1876 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1877 audio_session_t activeSessionId = activeSession->session();
1878 stopInput(activeInput, activeSessionId);
1879 releaseInput(activeInput, activeSessionId);
1880 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1881 activeInputs = mInputs.getActiveInputs();
1882 }
1883 }
1884 }
1885
1886 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001887 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1888 activeDesc->getId() == inputDesc->getId()) {
1889 continue;
1890 }
1891
Eric Laurent74708e72017-04-07 17:13:42 -07001892 audio_source_t activeSource = activeDesc->inputSource(true);
1893 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1894 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1895 if (activeDesc->hasPreemptedSession(session)) {
1896 ALOGW("startInput(%d) failed for HOTWORD: "
1897 "other input %d already started for HOTWORD",
1898 input, activeDesc->mIoHandle);
1899 return INVALID_OPERATION;
1900 }
1901 } else {
1902 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1903 input, activeDesc->mIoHandle);
1904 return INVALID_OPERATION;
1905 }
1906 } else {
1907 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1908 ALOGW("startInput(%d) failed: other input %d already started",
1909 input, activeDesc->mIoHandle);
1910 return INVALID_OPERATION;
1911 }
1912 }
1913 }
1914
Chris Thornton2b864642017-06-27 21:26:07 -07001915 // We only need to check if the sound trigger session supports concurrent capture if the
1916 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1917 // that's running.
1918 const bool allowConcurrentWithSoundTrigger =
1919 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1920
Eric Laurent74708e72017-04-07 17:13:42 -07001921 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001922 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07001923 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1924 continue;
1925 }
1926
Eric Laurent74708e72017-04-07 17:13:42 -07001927 audio_source_t activeSource = activeDesc->inputSource(true);
1928 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1929 AudioSessionCollection activeSessions =
1930 activeDesc->getAudioSessions(true /*activeOnly*/);
1931 audio_session_t activeSession = activeSessions.keyAt(0);
1932 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1933 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
1934 sessions.add(activeSession);
1935 inputDesc->setPreemptedSessions(sessions);
1936 stopInput(activeHandle, activeSession);
1937 releaseInput(activeHandle, activeSession);
1938 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1939 input, activeDesc->mIoHandle);
1940 }
1941 }
1942 }
1943#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001944
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001945 // Make sure we start with the correct silence state
1946 audioSession->setSilenced(silenced);
1947
Eric Laurent313d1e72016-01-29 09:56:57 -08001948 // increment activity count before calling getNewInputDevice() below as only active sessions
1949 // are considered for device selection
1950 audioSession->changeActiveCount(1);
1951
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001952 // Routing?
1953 mInputRoutes.incRouteActivity(session);
1954
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001955 if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001956 // indicate active capture to sound trigger service if starting capture from a mic on
1957 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001958 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001959 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001960
Eric Laurent733ce942017-12-07 12:18:25 -08001961 status_t status = inputDesc->start();
1962 if (status != NO_ERROR) {
1963 mInputRoutes.decRouteActivity(session);
1964 audioSession->changeActiveCount(-1);
1965 return status;
1966 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001967
Eric Laurent733ce942017-12-07 12:18:25 -08001968 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001969 // if input maps to a dynamic policy with an activity listener, notify of state change
1970 if ((inputDesc->mPolicyMix != NULL)
1971 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1972 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
1973 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08001974 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001975
Eric Laurentf7c50102016-09-30 15:19:43 -07001976 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
1977 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08001978 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001979 SoundTrigger::setCaptureState(true);
1980 }
1981
1982 // automatically enable the remote submix output when input is started if not
1983 // used by a policy mix of type MIX_TYPE_RECORDERS
1984 // For remote submix (a virtual device), we open only one input per capture request.
1985 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
1986 String8 address = String8("");
1987 if (inputDesc->mPolicyMix == NULL) {
1988 address = String8("0");
1989 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
1990 address = inputDesc->mPolicyMix->mDeviceAddress;
1991 }
1992 if (address != "") {
1993 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
1994 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
1995 address, "remote-submix");
1996 }
Eric Laurentc722f302014-12-10 11:21:49 -08001997 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001998 }
Eric Laurente552edb2014-03-10 17:42:56 -07001999 }
2000
Eric Laurent599c7582015-12-07 18:05:55 -08002001 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002002
Eric Laurente552edb2014-03-10 17:42:56 -07002003 return NO_ERROR;
2004}
2005
Eric Laurent4dc68062014-07-28 17:26:49 -07002006status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2007 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002008{
2009 ALOGV("stopInput() input %d", input);
2010 ssize_t index = mInputs.indexOfKey(input);
2011 if (index < 0) {
2012 ALOGW("stopInput() unknown input %d", input);
2013 return BAD_VALUE;
2014 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002015 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002016
Eric Laurent599c7582015-12-07 18:05:55 -08002017 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002018 if (index < 0) {
2019 ALOGW("stopInput() unknown session %d on input %d", session, input);
2020 return BAD_VALUE;
2021 }
2022
Eric Laurent599c7582015-12-07 18:05:55 -08002023 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002024 ALOGW("stopInput() input %d already stopped", input);
2025 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002026 }
2027
Eric Laurent599c7582015-12-07 18:05:55 -08002028 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002029
2030 // Routing?
2031 mInputRoutes.decRouteActivity(session);
2032
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002033 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002034 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002035 if (inputDesc->isActive()) {
2036 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2037 } else {
2038 // if input maps to a dynamic policy with an activity listener, notify of state change
2039 if ((inputDesc->mPolicyMix != NULL)
2040 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2041 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2042 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002043 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002044
2045 // automatically disable the remote submix output when input is stopped if not
2046 // used by a policy mix of type MIX_TYPE_RECORDERS
2047 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2048 String8 address = String8("");
2049 if (inputDesc->mPolicyMix == NULL) {
2050 address = String8("0");
2051 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2052 address = inputDesc->mPolicyMix->mDeviceAddress;
2053 }
2054 if (address != "") {
2055 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2056 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2057 address, "remote-submix");
2058 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002059 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002060
Eric Laurentf7c50102016-09-30 15:19:43 -07002061 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002062 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002063
Eric Laurentf7c50102016-09-30 15:19:43 -07002064 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2065 // primary HW module
2066 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2067 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2068 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002069 SoundTrigger::setCaptureState(false);
2070 }
2071 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002072 }
Eric Laurente552edb2014-03-10 17:42:56 -07002073 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002074 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002075}
2076
Eric Laurent4dc68062014-07-28 17:26:49 -07002077void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2078 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002079{
2080 ALOGV("releaseInput() %d", input);
2081 ssize_t index = mInputs.indexOfKey(input);
2082 if (index < 0) {
2083 ALOGW("releaseInput() releasing unknown input %d", input);
2084 return;
2085 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002086
2087 // Routing
2088 mInputRoutes.removeRoute(session);
2089
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002090 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2091 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002092
Eric Laurent599c7582015-12-07 18:05:55 -08002093 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002094 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002095 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2096 return;
2097 }
Eric Laurent599c7582015-12-07 18:05:55 -08002098
2099 if (audioSession->openCount() == 0) {
2100 ALOGW("releaseInput() invalid open count %d on session %d",
2101 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002102 return;
2103 }
Eric Laurent599c7582015-12-07 18:05:55 -08002104
2105 if (audioSession->changeOpenCount(-1) == 0) {
2106 inputDesc->removeAudioSession(session);
2107 }
2108
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002109 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002110 ALOGV("releaseInput() exit > 0");
2111 return;
2112 }
2113
Eric Laurent05b90f82014-08-27 15:32:29 -07002114 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002115 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002116 ALOGV("releaseInput() exit");
2117}
2118
Eric Laurentd4692962014-05-05 18:13:44 -07002119void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002120 bool patchRemoved = false;
2121
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002122 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002123 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002124 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002125 if (patch_index >= 0) {
2126 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002127 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002128 mAudioPatches.removeItemsAt(patch_index);
2129 patchRemoved = true;
2130 }
Eric Laurentfe231122017-11-17 17:48:06 -08002131 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002132 }
2133 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002134 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002135 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002136
2137 if (patchRemoved) {
2138 mpClientInterface->onAudioPatchListUpdate();
2139 }
Eric Laurentd4692962014-05-05 18:13:44 -07002140}
2141
Eric Laurente0720872014-03-11 09:30:41 -07002142void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002143 int indexMin,
2144 int indexMax)
2145{
2146 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002147 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002148
2149 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002150 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2151 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002152 continue;
2153 }
2154 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002155 }
Eric Laurente552edb2014-03-10 17:42:56 -07002156}
2157
Eric Laurente0720872014-03-11 09:30:41 -07002158status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002159 int index,
2160 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002161{
2162
Nadav Bar7c605f62017-12-25 00:01:52 +02002163 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2164 // app that has MODIFY_PHONE_STATE permission.
2165 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2166 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002167 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002168 return BAD_VALUE;
2169 }
2170 if (!audio_is_output_device(device)) {
2171 return BAD_VALUE;
2172 }
2173
2174 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002175 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002176
Eric Laurent1fd372e2016-04-06 14:23:53 -07002177 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002178 stream, device, index);
2179
Eric Laurent28d09f02016-03-08 10:43:05 -08002180 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002181 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2182 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002183 continue;
2184 }
2185 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2186 }
Eric Laurente552edb2014-03-10 17:42:56 -07002187
Eric Laurent1fd372e2016-04-06 14:23:53 -07002188 // update volume on all outputs and streams matching the following:
2189 // - The requested stream (or a stream matching for volume control) is active on the output
2190 // - The device (or devices) selected by the strategy corresponding to this stream includes
2191 // the requested device
2192 // - For non default requested device, currently selected device on the output is either the
2193 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002194 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2195 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002196 status_t status = NO_ERROR;
2197 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002198 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2199 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002200 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2201 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002202 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002203 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002204 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2205 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002206 continue;
2207 }
Eric Laurent794fde22016-03-11 09:50:45 -08002208 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002209 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2210 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002211 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2212 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002213 continue;
2214 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002215 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002216 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002217 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002218 applyVolume = (curDevice & curStreamDevice) != 0;
2219 } else {
2220 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002221 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002222 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002223
Eric Laurente76f29c2016-09-14 17:17:53 -07002224 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002225 //FIXME: workaround for truncated touch sounds
2226 // delayed volume change for system stream to be removed when the problem is
2227 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002228 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002229 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2230 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002231 if (volStatus != NO_ERROR) {
2232 status = volStatus;
2233 }
2234 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002235 }
Eric Laurente552edb2014-03-10 17:42:56 -07002236 }
2237 return status;
2238}
2239
Eric Laurente0720872014-03-11 09:30:41 -07002240status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002241 int *index,
2242 audio_devices_t device)
2243{
2244 if (index == NULL) {
2245 return BAD_VALUE;
2246 }
2247 if (!audio_is_output_device(device)) {
2248 return BAD_VALUE;
2249 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002250 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002251 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002252 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002253 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2254 }
François Gaffiedfd74092015-03-19 12:10:59 +01002255 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002256
François Gaffied1ab2bd2015-12-02 18:20:06 +01002257 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002258 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2259 return NO_ERROR;
2260}
2261
Eric Laurent36829f92017-04-07 19:04:42 -07002262audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002263{
2264 // select one output among several suitable for global effects.
2265 // The priority is as follows:
2266 // 1: An offloaded output. If the effect ends up not being offloadable,
2267 // AudioFlinger will invalidate the track and the offloaded output
2268 // will be closed causing the effect to be moved to a PCM output.
2269 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002270 // 3: The primary output
2271 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002272
Eric Laurent3b73df72014-03-11 09:06:29 -07002273 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002274 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002275 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002276
Eric Laurent36829f92017-04-07 19:04:42 -07002277 if (outputs.size() == 0) {
2278 return AUDIO_IO_HANDLE_NONE;
2279 }
Eric Laurente552edb2014-03-10 17:42:56 -07002280
Eric Laurent36829f92017-04-07 19:04:42 -07002281 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2282 bool activeOnly = true;
2283
2284 while (output == AUDIO_IO_HANDLE_NONE) {
2285 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2286 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2287 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2288
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002289 for (audio_io_handle_t output : outputs) {
2290 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002291 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2292 continue;
2293 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002294 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2295 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002296 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002297 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002298 }
2299 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002300 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002301 }
2302 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002303 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002304 }
2305 }
2306 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2307 output = outputOffloaded;
2308 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2309 output = outputDeepBuffer;
2310 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2311 output = outputPrimary;
2312 } else {
2313 output = outputs[0];
2314 }
2315 activeOnly = false;
2316 }
2317
2318 if (output != mMusicEffectOutput) {
2319 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2320 mMusicEffectOutput = output;
2321 }
2322
2323 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002324 return output;
2325}
2326
Eric Laurent36829f92017-04-07 19:04:42 -07002327audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2328{
2329 return selectOutputForMusicEffects();
2330}
2331
Eric Laurente0720872014-03-11 09:30:41 -07002332status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002333 audio_io_handle_t io,
2334 uint32_t strategy,
2335 int session,
2336 int id)
2337{
2338 ssize_t index = mOutputs.indexOfKey(io);
2339 if (index < 0) {
2340 index = mInputs.indexOfKey(io);
2341 if (index < 0) {
2342 ALOGW("registerEffect() unknown io %d", io);
2343 return INVALID_OPERATION;
2344 }
2345 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002346 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002347}
2348
Eric Laurentc75307b2015-03-17 15:29:32 -07002349bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2350{
Eric Laurent28d09f02016-03-08 10:43:05 -08002351 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002352 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2353 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002354 continue;
2355 }
2356 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2357 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002358 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002359}
2360
2361bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2362{
2363 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2364}
2365
Eric Laurente0720872014-03-11 09:30:41 -07002366bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002367{
2368 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002369 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002370 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002371 return true;
2372 }
2373 }
2374 return false;
2375}
2376
Eric Laurent275e8e92014-11-30 15:14:47 -08002377// Register a list of custom mixes with their attributes and format.
2378// When a mix is registered, corresponding input and output profiles are
2379// added to the remote submix hw module. The profile contains only the
2380// parameters (sampling rate, format...) specified by the mix.
2381// The corresponding input remote submix device is also connected.
2382//
2383// When a remote submix device is connected, the address is checked to select the
2384// appropriate profile and the corresponding input or output stream is opened.
2385//
2386// When capture starts, getInputForAttr() will:
2387// - 1 look for a mix matching the address passed in attribtutes tags if any
2388// - 2 if none found, getDeviceForInputSource() will:
2389// - 2.1 look for a mix matching the attributes source
2390// - 2.2 if none found, default to device selection by policy rules
2391// At this time, the corresponding output remote submix device is also connected
2392// and active playback use cases can be transferred to this mix if needed when reconnecting
2393// after AudioTracks are invalidated
2394//
2395// When playback starts, getOutputForAttr() will:
2396// - 1 look for a mix matching the address passed in attribtutes tags if any
2397// - 2 if none found, look for a mix matching the attributes usage
2398// - 3 if none found, default to device and output selection by policy rules.
2399
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002400status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002401{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002402 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2403 status_t res = NO_ERROR;
2404
2405 sp<HwModule> rSubmixModule;
2406 // examine each mix's route type
2407 for (size_t i = 0; i < mixes.size(); i++) {
2408 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2409 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2410 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002411 break;
2412 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002413 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002414 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002415 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002416 rSubmixModule = mHwModules.getModuleFromName(
2417 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2418 if (rSubmixModule == 0) {
2419 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2420 i);
2421 res = INVALID_OPERATION;
2422 break;
2423 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002424 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002425
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002426 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002427
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002428 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002429 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002430 res = INVALID_OPERATION;
2431 break;
2432 }
2433 audio_config_t outputConfig = mixes[i].mFormat;
2434 audio_config_t inputConfig = mixes[i].mFormat;
2435 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2436 // stereo and let audio flinger do the channel conversion if needed.
2437 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2438 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2439 rSubmixModule->addOutputProfile(address, &outputConfig,
2440 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2441 rSubmixModule->addInputProfile(address, &inputConfig,
2442 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002443
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002444 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2445 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2446 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2447 address.string(), "remote-submix");
2448 } else {
2449 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2450 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2451 address.string(), "remote-submix");
2452 }
2453 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002454 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002455 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002456 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2457 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002458
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002459 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002460 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2461 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2462 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2463 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2464 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2465 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002466 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2467 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002468 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2469 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002470 } else {
2471 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002472 }
2473 break;
2474 }
2475 }
2476
2477 if (res != NO_ERROR) {
2478 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002479 i, device, address.string());
2480 res = INVALID_OPERATION;
2481 break;
2482 } else if (!foundOutput) {
2483 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2484 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002485 res = INVALID_OPERATION;
2486 break;
2487 }
Eric Laurentc722f302014-12-10 11:21:49 -08002488 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002489 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002490 if (res != NO_ERROR) {
2491 unregisterPolicyMixes(mixes);
2492 }
2493 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002494}
2495
2496status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2497{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002498 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002499 status_t res = NO_ERROR;
2500 sp<HwModule> rSubmixModule;
2501 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002502 for (const auto& mix : mixes) {
2503 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002504
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002505 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002506 rSubmixModule = mHwModules.getModuleFromName(
2507 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2508 if (rSubmixModule == 0) {
2509 res = INVALID_OPERATION;
2510 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002511 }
2512 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002513
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002514 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002515
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002516 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2517 res = INVALID_OPERATION;
2518 continue;
2519 }
2520
2521 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2522 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2523 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2524 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2525 address.string(), "remote-submix");
2526 }
2527 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2528 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2529 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2530 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2531 address.string(), "remote-submix");
2532 }
2533 rSubmixModule->removeOutputProfile(address);
2534 rSubmixModule->removeInputProfile(address);
2535
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002536 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2537 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002538 res = INVALID_OPERATION;
2539 continue;
2540 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002541 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002542 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002543 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002544}
2545
Eric Laurente552edb2014-03-10 17:42:56 -07002546
Eric Laurente0720872014-03-11 09:30:41 -07002547status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002548{
2549 const size_t SIZE = 256;
2550 char buffer[SIZE];
2551 String8 result;
2552
2553 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2554 result.append(buffer);
2555
Eric Laurent87ffa392015-05-22 10:32:38 -07002556 snprintf(buffer, SIZE, " Primary Output: %d\n",
2557 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002558 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002559 std::string stateLiteral;
2560 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2561 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002562 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002563 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002564 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002565 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002566 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002567 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002568 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002569 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002570 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002571 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002572 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002573 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002574 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002575 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002576 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002577 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2578 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2579 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002580 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2581 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002582 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2583 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002584
François Gaffie2110e042015-03-24 08:41:51 +01002585 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002586
François Gaffie112b0af2015-11-19 16:13:25 +01002587 mAvailableOutputDevices.dump(fd, String8("Available output"));
2588 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002589 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002590 mOutputs.dump(fd);
2591 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002592 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002593 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002594 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002595 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002596
2597 return NO_ERROR;
2598}
2599
2600// This function checks for the parameters which can be offloaded.
2601// This can be enhanced depending on the capability of the DSP and policy
2602// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002603bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002604{
2605 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002606 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002607 offloadInfo.sample_rate, offloadInfo.channel_mask,
2608 offloadInfo.format,
2609 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2610 offloadInfo.has_video);
2611
Andy Hung2ddee192015-12-18 17:34:44 -08002612 if (mMasterMono) {
2613 return false; // no offloading if mono is set.
2614 }
2615
Eric Laurente552edb2014-03-10 17:42:56 -07002616 // Check if offload has been disabled
2617 char propValue[PROPERTY_VALUE_MAX];
2618 if (property_get("audio.offload.disable", propValue, "0")) {
2619 if (atoi(propValue) != 0) {
2620 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2621 return false;
2622 }
2623 }
2624
2625 // Check if stream type is music, then only allow offload as of now.
2626 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2627 {
2628 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2629 return false;
2630 }
2631
2632 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002633 const bool allowOffloadWithVideo =
2634 property_get_bool("audio.offload.video", false /* default_value */);
2635 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002636 ALOGV("isOffloadSupported: has_video == true, returning false");
2637 return false;
2638 }
2639
2640 //If duration is less than minimum value defined in property, return false
2641 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2642 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2643 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2644 return false;
2645 }
2646 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2647 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2648 return false;
2649 }
2650
2651 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2652 // creating an offloaded track and tearing it down immediately after start when audioflinger
2653 // detects there is an active non offloadable effect.
2654 // FIXME: We should check the audio session here but we do not have it in this context.
2655 // This may prevent offloading in rare situations where effects are left active by apps
2656 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002657 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002658 return false;
2659 }
2660
2661 // See if there is a profile to support this.
2662 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002663 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002664 offloadInfo.sample_rate,
2665 offloadInfo.format,
2666 offloadInfo.channel_mask,
2667 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002668 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2669 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002670}
2671
Eric Laurent6a94d692014-05-20 11:18:06 -07002672status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2673 audio_port_type_t type,
2674 unsigned int *num_ports,
2675 struct audio_port *ports,
2676 unsigned int *generation)
2677{
2678 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2679 generation == NULL) {
2680 return BAD_VALUE;
2681 }
2682 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2683 if (ports == NULL) {
2684 *num_ports = 0;
2685 }
2686
2687 size_t portsWritten = 0;
2688 size_t portsMax = *num_ports;
2689 *num_ports = 0;
2690 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002691 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2692 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002693 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002694 for (const auto& dev : mAvailableOutputDevices) {
2695 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002696 continue;
2697 }
2698 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002699 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002700 }
2701 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002702 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002703 }
2704 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002705 for (const auto& dev : mAvailableInputDevices) {
2706 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002707 continue;
2708 }
2709 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002710 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002711 }
2712 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002713 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002714 }
2715 }
2716 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2717 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2718 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2719 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2720 }
2721 *num_ports += mInputs.size();
2722 }
2723 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002724 size_t numOutputs = 0;
2725 for (size_t i = 0; i < mOutputs.size(); i++) {
2726 if (!mOutputs[i]->isDuplicated()) {
2727 numOutputs++;
2728 if (portsWritten < portsMax) {
2729 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2730 }
2731 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002732 }
Eric Laurent84c70242014-06-23 08:46:27 -07002733 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002734 }
2735 }
2736 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002737 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002738 return NO_ERROR;
2739}
2740
2741status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2742{
2743 return NO_ERROR;
2744}
2745
Eric Laurent6a94d692014-05-20 11:18:06 -07002746status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2747 audio_patch_handle_t *handle,
2748 uid_t uid)
2749{
2750 ALOGV("createAudioPatch()");
2751
2752 if (handle == NULL || patch == NULL) {
2753 return BAD_VALUE;
2754 }
2755 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2756
Eric Laurent874c42872014-08-08 15:13:39 -07002757 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2758 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2759 return BAD_VALUE;
2760 }
2761 // only one source per audio patch supported for now
2762 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002763 return INVALID_OPERATION;
2764 }
Eric Laurent874c42872014-08-08 15:13:39 -07002765
2766 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002767 return INVALID_OPERATION;
2768 }
Eric Laurent874c42872014-08-08 15:13:39 -07002769 for (size_t i = 0; i < patch->num_sinks; i++) {
2770 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2771 return INVALID_OPERATION;
2772 }
2773 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002774
2775 sp<AudioPatch> patchDesc;
2776 ssize_t index = mAudioPatches.indexOfKey(*handle);
2777
Eric Laurent6a94d692014-05-20 11:18:06 -07002778 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2779 patch->sources[0].role,
2780 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002781#if LOG_NDEBUG == 0
2782 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002783 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002784 patch->sinks[i].role,
2785 patch->sinks[i].type);
2786 }
2787#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002788
2789 if (index >= 0) {
2790 patchDesc = mAudioPatches.valueAt(index);
2791 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2792 mUidCached, patchDesc->mUid, uid);
2793 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2794 return INVALID_OPERATION;
2795 }
2796 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002797 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002798 }
2799
2800 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002801 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002802 if (outputDesc == NULL) {
2803 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2804 return BAD_VALUE;
2805 }
Eric Laurent84c70242014-06-23 08:46:27 -07002806 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2807 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002808 if (patchDesc != 0) {
2809 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2810 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2811 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2812 return BAD_VALUE;
2813 }
2814 }
Eric Laurent874c42872014-08-08 15:13:39 -07002815 DeviceVector devices;
2816 for (size_t i = 0; i < patch->num_sinks; i++) {
2817 // Only support mix to devices connection
2818 // TODO add support for mix to mix connection
2819 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2820 ALOGV("createAudioPatch() source mix but sink is not a device");
2821 return INVALID_OPERATION;
2822 }
2823 sp<DeviceDescriptor> devDesc =
2824 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2825 if (devDesc == 0) {
2826 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2827 return BAD_VALUE;
2828 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002829
François Gaffie53615e22015-03-19 09:24:12 +01002830 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002831 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002832 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002833 NULL, // updatedSamplingRate
2834 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002835 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002836 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002837 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002838 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002839 ALOGV("createAudioPatch() profile not supported for device %08x",
2840 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002841 return INVALID_OPERATION;
2842 }
2843 devices.add(devDesc);
2844 }
2845 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002846 return INVALID_OPERATION;
2847 }
Eric Laurent874c42872014-08-08 15:13:39 -07002848
Eric Laurent6a94d692014-05-20 11:18:06 -07002849 // TODO: reconfigure output format and channels here
2850 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002851 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002852 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002853 index = mAudioPatches.indexOfKey(*handle);
2854 if (index >= 0) {
2855 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2856 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2857 }
2858 patchDesc = mAudioPatches.valueAt(index);
2859 patchDesc->mUid = uid;
2860 ALOGV("createAudioPatch() success");
2861 } else {
2862 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2863 return INVALID_OPERATION;
2864 }
2865 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2866 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2867 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002868 // only one sink supported when connecting an input device to a mix
2869 if (patch->num_sinks > 1) {
2870 return INVALID_OPERATION;
2871 }
François Gaffie53615e22015-03-19 09:24:12 +01002872 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002873 if (inputDesc == NULL) {
2874 return BAD_VALUE;
2875 }
2876 if (patchDesc != 0) {
2877 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2878 return BAD_VALUE;
2879 }
2880 }
2881 sp<DeviceDescriptor> devDesc =
2882 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2883 if (devDesc == 0) {
2884 return BAD_VALUE;
2885 }
2886
François Gaffie53615e22015-03-19 09:24:12 +01002887 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002888 devDesc->mAddress,
2889 patch->sinks[0].sample_rate,
2890 NULL, /*updatedSampleRate*/
2891 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002892 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002893 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002894 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002895 // FIXME for the parameter type,
2896 // and the NONE
2897 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002898 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002899 return INVALID_OPERATION;
2900 }
2901 // TODO: reconfigure output format and channels here
2902 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002903 devDesc->type(), inputDesc->mIoHandle);
2904 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002905 index = mAudioPatches.indexOfKey(*handle);
2906 if (index >= 0) {
2907 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2908 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2909 }
2910 patchDesc = mAudioPatches.valueAt(index);
2911 patchDesc->mUid = uid;
2912 ALOGV("createAudioPatch() success");
2913 } else {
2914 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2915 return INVALID_OPERATION;
2916 }
2917 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2918 // device to device connection
2919 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002920 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002921 return BAD_VALUE;
2922 }
2923 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002924 sp<DeviceDescriptor> srcDeviceDesc =
2925 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002926 if (srcDeviceDesc == 0) {
2927 return BAD_VALUE;
2928 }
Eric Laurent874c42872014-08-08 15:13:39 -07002929
Eric Laurent6a94d692014-05-20 11:18:06 -07002930 //update source and sink with our own data as the data passed in the patch may
2931 // be incomplete.
2932 struct audio_patch newPatch = *patch;
2933 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002934
Eric Laurent874c42872014-08-08 15:13:39 -07002935 for (size_t i = 0; i < patch->num_sinks; i++) {
2936 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2937 ALOGV("createAudioPatch() source device but one sink is not a device");
2938 return INVALID_OPERATION;
2939 }
2940
2941 sp<DeviceDescriptor> sinkDeviceDesc =
2942 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2943 if (sinkDeviceDesc == 0) {
2944 return BAD_VALUE;
2945 }
2946 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2947
Eric Laurent3bcf8592015-04-03 12:13:24 -07002948 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08002949 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07002950 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002951 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002952 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002953 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002954 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002955 return INVALID_OPERATION;
2956 }
Eric Laurent874c42872014-08-08 15:13:39 -07002957 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002958 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002959 // if the sink device is reachable via an opened output stream, request to go via
2960 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002961 audio_io_handle_t output = selectOutput(outputs,
2962 AUDIO_OUTPUT_FLAG_NONE,
2963 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002964 if (output != AUDIO_IO_HANDLE_NONE) {
2965 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2966 if (outputDesc->isDuplicated()) {
2967 return INVALID_OPERATION;
2968 }
2969 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002970 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002971 newPatch.num_sources = 2;
2972 }
Eric Laurent83b88082014-06-20 18:31:16 -07002973 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002974 }
2975 // TODO: check from routing capabilities in config file and other conflicting patches
2976
2977 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
2978 if (index >= 0) {
2979 afPatchHandle = patchDesc->mAfPatchHandle;
2980 }
2981
2982 status_t status = mpClientInterface->createAudioPatch(&newPatch,
2983 &afPatchHandle,
2984 0);
2985 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
2986 status, afPatchHandle);
2987 if (status == NO_ERROR) {
2988 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01002989 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07002990 addAudioPatch(patchDesc->mHandle, patchDesc);
2991 } else {
2992 patchDesc->mPatch = newPatch;
2993 }
2994 patchDesc->mAfPatchHandle = afPatchHandle;
2995 *handle = patchDesc->mHandle;
2996 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07002997 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07002998 } else {
2999 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
3000 status);
3001 return INVALID_OPERATION;
3002 }
3003 } else {
3004 return BAD_VALUE;
3005 }
3006 } else {
3007 return BAD_VALUE;
3008 }
3009 return NO_ERROR;
3010}
3011
3012status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3013 uid_t uid)
3014{
3015 ALOGV("releaseAudioPatch() patch %d", handle);
3016
3017 ssize_t index = mAudioPatches.indexOfKey(handle);
3018
3019 if (index < 0) {
3020 return BAD_VALUE;
3021 }
3022 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3023 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3024 mUidCached, patchDesc->mUid, uid);
3025 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3026 return INVALID_OPERATION;
3027 }
3028
3029 struct audio_patch *patch = &patchDesc->mPatch;
3030 patchDesc->mUid = mUidCached;
3031 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003032 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003033 if (outputDesc == NULL) {
3034 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3035 return BAD_VALUE;
3036 }
3037
Eric Laurentc75307b2015-03-17 15:29:32 -07003038 setOutputDevice(outputDesc,
3039 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003040 true,
3041 0,
3042 NULL);
3043 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3044 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003045 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003046 if (inputDesc == NULL) {
3047 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3048 return BAD_VALUE;
3049 }
3050 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003051 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003052 true,
3053 NULL);
3054 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003055 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3056 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3057 status, patchDesc->mAfPatchHandle);
3058 removeAudioPatch(patchDesc->mHandle);
3059 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003060 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003061 } else {
3062 return BAD_VALUE;
3063 }
3064 } else {
3065 return BAD_VALUE;
3066 }
3067 return NO_ERROR;
3068}
3069
3070status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3071 struct audio_patch *patches,
3072 unsigned int *generation)
3073{
François Gaffie53615e22015-03-19 09:24:12 +01003074 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003075 return BAD_VALUE;
3076 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003077 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003078 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003079}
3080
Eric Laurente1715a42014-05-20 11:30:42 -07003081status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003082{
Eric Laurente1715a42014-05-20 11:30:42 -07003083 ALOGV("setAudioPortConfig()");
3084
3085 if (config == NULL) {
3086 return BAD_VALUE;
3087 }
3088 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3089 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003090 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3091 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003092 }
3093
Eric Laurenta121f902014-06-03 13:32:54 -07003094 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003095 if (config->type == AUDIO_PORT_TYPE_MIX) {
3096 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003097 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003098 if (outputDesc == NULL) {
3099 return BAD_VALUE;
3100 }
Eric Laurent84c70242014-06-23 08:46:27 -07003101 ALOG_ASSERT(!outputDesc->isDuplicated(),
3102 "setAudioPortConfig() called on duplicated output %d",
3103 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003104 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003105 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003106 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003107 if (inputDesc == NULL) {
3108 return BAD_VALUE;
3109 }
Eric Laurenta121f902014-06-03 13:32:54 -07003110 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003111 } else {
3112 return BAD_VALUE;
3113 }
3114 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3115 sp<DeviceDescriptor> deviceDesc;
3116 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3117 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3118 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3119 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3120 } else {
3121 return BAD_VALUE;
3122 }
3123 if (deviceDesc == NULL) {
3124 return BAD_VALUE;
3125 }
Eric Laurenta121f902014-06-03 13:32:54 -07003126 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003127 } else {
3128 return BAD_VALUE;
3129 }
3130
Eric Laurenta121f902014-06-03 13:32:54 -07003131 struct audio_port_config backupConfig;
3132 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3133 if (status == NO_ERROR) {
3134 struct audio_port_config newConfig;
3135 audioPortConfig->toAudioPortConfig(&newConfig, config);
3136 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003137 }
Eric Laurenta121f902014-06-03 13:32:54 -07003138 if (status != NO_ERROR) {
3139 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003140 }
Eric Laurente1715a42014-05-20 11:30:42 -07003141
3142 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003143}
3144
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003145void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3146{
Eric Laurentd60560a2015-04-10 11:31:20 -07003147 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003148 clearAudioPatches(uid);
3149 clearSessionRoutes(uid);
3150}
3151
Eric Laurent6a94d692014-05-20 11:18:06 -07003152void AudioPolicyManager::clearAudioPatches(uid_t uid)
3153{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003154 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003155 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3156 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003157 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003158 }
3159 }
3160}
3161
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003162void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3163 audio_io_handle_t ouptutToSkip)
3164{
3165 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3166 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3167 for (size_t j = 0; j < mOutputs.size(); j++) {
3168 if (mOutputs.keyAt(j) == ouptutToSkip) {
3169 continue;
3170 }
3171 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3172 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3173 continue;
3174 }
3175 // If the default device for this strategy is on another output mix,
3176 // invalidate all tracks in this strategy to force re connection.
3177 // Otherwise select new device on the output mix.
3178 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003179 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003180 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3181 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3182 }
3183 }
3184 } else {
3185 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3186 setOutputDevice(outputDesc, newDevice, false);
3187 }
3188 }
3189}
3190
3191void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3192{
3193 // remove output routes associated with this uid
3194 SortedVector<routing_strategy> affectedStrategies;
3195 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3196 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3197 if (route->mUid == uid) {
3198 mOutputRoutes.removeItemsAt(i);
3199 if (route->mDeviceDescriptor != 0) {
3200 affectedStrategies.add(getStrategy(route->mStreamType));
3201 }
3202 }
3203 }
3204 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003205 for (const auto& strategy : affectedStrategies) {
3206 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003207 }
3208
3209 // remove input routes associated with this uid
3210 SortedVector<audio_source_t> affectedSources;
3211 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3212 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3213 if (route->mUid == uid) {
3214 mInputRoutes.removeItemsAt(i);
3215 if (route->mDeviceDescriptor != 0) {
3216 affectedSources.add(route->mSource);
3217 }
3218 }
3219 }
3220 // reroute inputs if necessary
3221 SortedVector<audio_io_handle_t> inputsToClose;
3222 for (size_t i = 0; i < mInputs.size(); i++) {
3223 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003224 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003225 inputsToClose.add(inputDesc->mIoHandle);
3226 }
3227 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003228 for (const auto& input : inputsToClose) {
3229 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003230 }
3231}
3232
Eric Laurentd60560a2015-04-10 11:31:20 -07003233void AudioPolicyManager::clearAudioSources(uid_t uid)
3234{
3235 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3236 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3237 if (sourceDesc->mUid == uid) {
3238 stopAudioSource(mAudioSources.keyAt(i));
3239 }
3240 }
3241}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003242
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003243status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3244 audio_io_handle_t *ioHandle,
3245 audio_devices_t *device)
3246{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003247 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3248 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003249 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003250
François Gaffiedf372692015-03-19 10:43:27 +01003251 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003252}
3253
Eric Laurentd60560a2015-04-10 11:31:20 -07003254status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3255 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003256 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003257 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003258{
Eric Laurentd60560a2015-04-10 11:31:20 -07003259 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3260 if (source == NULL || attributes == NULL || handle == NULL) {
3261 return BAD_VALUE;
3262 }
3263
Glenn Kasten559d4392016-03-29 13:42:57 -07003264 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003265
3266 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3267 source->type != AUDIO_PORT_TYPE_DEVICE) {
3268 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3269 return INVALID_OPERATION;
3270 }
3271
3272 sp<DeviceDescriptor> srcDeviceDesc =
3273 mAvailableInputDevices.getDevice(source->ext.device.type,
3274 String8(source->ext.device.address));
3275 if (srcDeviceDesc == 0) {
3276 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3277 return BAD_VALUE;
3278 }
3279 sp<AudioSourceDescriptor> sourceDesc =
3280 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3281
3282 struct audio_patch dummyPatch;
3283 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3284 sourceDesc->mPatchDesc = patchDesc;
3285
3286 status_t status = connectAudioSource(sourceDesc);
3287 if (status == NO_ERROR) {
3288 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3289 *handle = sourceDesc->getHandle();
3290 }
3291 return status;
3292}
3293
3294status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3295{
3296 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3297
3298 // make sure we only have one patch per source.
3299 disconnectAudioSource(sourceDesc);
3300
3301 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003302 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003303 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3304
3305 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3306 sp<DeviceDescriptor> sinkDeviceDesc =
3307 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3308
3309 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3310 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3311
3312 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3313 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003314 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003315 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3316 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3317 // create patch between src device and output device
3318 // create Hwoutput and add to mHwOutputs
3319 } else {
3320 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3321 audio_io_handle_t output =
3322 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3323 if (output == AUDIO_IO_HANDLE_NONE) {
3324 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3325 return INVALID_OPERATION;
3326 }
3327 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3328 if (outputDesc->isDuplicated()) {
3329 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3330 return INVALID_OPERATION;
3331 }
Eric Laurent733ce942017-12-07 12:18:25 -08003332 status_t status = outputDesc->start();
3333 if (status != NO_ERROR) {
3334 return status;
3335 }
3336
Eric Laurentd60560a2015-04-10 11:31:20 -07003337 // create a special patch with no sink and two sources:
3338 // - the second source indicates to PatchPanel through which output mix this patch should
3339 // be connected as well as the stream type for volume control
3340 // - the sink is defined by whatever output device is currently selected for the output
3341 // though which this patch is routed.
3342 patch->num_sinks = 0;
3343 patch->num_sources = 2;
3344 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3345 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3346 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003347 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003348 &afPatchHandle,
3349 0);
3350 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3351 status, afPatchHandle);
3352 if (status != NO_ERROR) {
3353 ALOGW("%s patch panel could not connect device patch, error %d",
3354 __FUNCTION__, status);
3355 return INVALID_OPERATION;
3356 }
3357 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003358 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003359
3360 if (status != NO_ERROR) {
3361 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3362 return status;
3363 }
3364 sourceDesc->mSwOutput = outputDesc;
3365 if (delayMs != 0) {
3366 usleep(delayMs * 1000);
3367 }
3368 }
3369
3370 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3371 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3372
3373 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003374}
3375
Glenn Kasten559d4392016-03-29 13:42:57 -07003376status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003377{
Eric Laurentd60560a2015-04-10 11:31:20 -07003378 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3379 ALOGV("%s handle %d", __FUNCTION__, handle);
3380 if (sourceDesc == 0) {
3381 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3382 return BAD_VALUE;
3383 }
3384 status_t status = disconnectAudioSource(sourceDesc);
3385
3386 mAudioSources.removeItem(handle);
3387 return status;
3388}
3389
Andy Hung2ddee192015-12-18 17:34:44 -08003390status_t AudioPolicyManager::setMasterMono(bool mono)
3391{
3392 if (mMasterMono == mono) {
3393 return NO_ERROR;
3394 }
3395 mMasterMono = mono;
3396 // if enabling mono we close all offloaded devices, which will invalidate the
3397 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3398 // for recreating the new AudioTrack as non-offloaded PCM.
3399 //
3400 // If disabling mono, we leave all tracks as is: we don't know which clients
3401 // and tracks are able to be recreated as offloaded. The next "song" should
3402 // play back offloaded.
3403 if (mMasterMono) {
3404 Vector<audio_io_handle_t> offloaded;
3405 for (size_t i = 0; i < mOutputs.size(); ++i) {
3406 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3407 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3408 offloaded.push(desc->mIoHandle);
3409 }
3410 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003411 for (const auto& handle : offloaded) {
3412 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003413 }
3414 }
3415 // update master mono for all remaining outputs
3416 for (size_t i = 0; i < mOutputs.size(); ++i) {
3417 updateMono(mOutputs.keyAt(i));
3418 }
3419 return NO_ERROR;
3420}
3421
3422status_t AudioPolicyManager::getMasterMono(bool *mono)
3423{
3424 *mono = mMasterMono;
3425 return NO_ERROR;
3426}
3427
Eric Laurentac9cef52017-06-09 15:46:26 -07003428float AudioPolicyManager::getStreamVolumeDB(
3429 audio_stream_type_t stream, int index, audio_devices_t device)
3430{
3431 return computeVolume(stream, index, device);
3432}
3433
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003434void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3435{
3436 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3437
3438 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3439 for (size_t i = 0; i < activeInputs.size(); i++) {
3440 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3441 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3442 for (size_t j = 0; j < activeSessions.size(); j++) {
3443 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3444 if (activeSession->uid() == uid) {
3445 activeSession->setSilenced(silenced);
3446 }
3447 }
3448 }
3449}
3450
Eric Laurentd60560a2015-04-10 11:31:20 -07003451status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3452{
3453 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3454
3455 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3456 if (patchDesc == 0) {
3457 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3458 sourceDesc->mPatchDesc->mHandle);
3459 return BAD_VALUE;
3460 }
3461 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3462
Eric Laurent28d09f02016-03-08 10:43:05 -08003463 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003464 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3465 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003466 status_t status = stopSource(swOutputDesc, stream, false);
3467 if (status == NO_ERROR) {
3468 swOutputDesc->stop();
3469 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003470 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3471 } else {
3472 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3473 if (hwOutputDesc != 0) {
3474 // release patch between src device and output device
3475 // close Hwoutput and remove from mHwOutputs
3476 } else {
3477 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3478 }
3479 }
3480 return NO_ERROR;
3481}
3482
3483sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3484 audio_io_handle_t output, routing_strategy strategy)
3485{
3486 sp<AudioSourceDescriptor> source;
3487 for (size_t i = 0; i < mAudioSources.size(); i++) {
3488 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3489 routing_strategy sourceStrategy =
3490 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3491 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3492 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3493 source = sourceDesc;
3494 break;
3495 }
3496 }
3497 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003498}
3499
Eric Laurente552edb2014-03-10 17:42:56 -07003500// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003501// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003502// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003503uint32_t AudioPolicyManager::nextAudioPortGeneration()
3504{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003505 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003506}
3507
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003508#ifdef USE_XML_AUDIO_POLICY_CONF
3509// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3510static const char *kConfigLocationList[] =
3511 {"/odm/etc", "/vendor/etc", "/system/etc"};
3512static const int kConfigLocationListSize =
3513 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3514
3515static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3516 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
3517 status_t ret;
3518
3519 for (int i = 0; i < kConfigLocationListSize; i++) {
3520 PolicySerializer serializer;
Aniket Kumar Lata2ad79392018-01-31 20:26:59 -08003521 bool use_a2dp_offload_config =
3522 property_get_bool("persist.bluetooth.a2dp_offload.enable", false);
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003523 snprintf(audioPolicyXmlConfigFile,
3524 sizeof(audioPolicyXmlConfigFile),
3525 "%s/%s",
3526 kConfigLocationList[i],
Aniket Kumar Lata2ad79392018-01-31 20:26:59 -08003527 use_a2dp_offload_config ? AUDIO_POLICY_A2DP_OFFLOAD_XML_CONFIG_FILE_NAME :
3528 AUDIO_POLICY_XML_CONFIG_FILE_NAME);
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003529 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3530 if (ret == NO_ERROR) {
3531 break;
3532 }
3533 }
3534 return ret;
3535}
3536#endif
3537
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003538AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3539 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003540 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003541 mUidCached(getuid()),
3542 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003543 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003544 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003545#ifdef USE_XML_AUDIO_POLICY_CONF
3546 mVolumeCurves(new VolumeCurvesCollection()),
3547 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003548 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003549#else
3550 mVolumeCurves(new StreamDescriptorCollection()),
3551 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3552 mDefaultOutputDevice),
3553#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003554 mAudioPortGeneration(1),
3555 mBeaconMuteRefCount(0),
3556 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003557 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003558 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003559 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003560 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3561 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003562{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003563}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003564
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003565AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3566 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3567{
3568 loadConfig();
3569 initialize();
3570}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003571
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003572void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003573#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003574 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003575#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003576 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3577 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003578#endif
3579 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003580 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003581 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003582}
3583
3584status_t AudioPolicyManager::initialize() {
3585 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003586
3587 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003588 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3589 if (!engineInstance) {
3590 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003591 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003592 }
3593 // Retrieve the Policy Manager Interface
3594 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3595 if (mEngine == NULL) {
3596 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003597 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003598 }
3599 mEngine->setObserver(this);
3600 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003601 if (status != NO_ERROR) {
3602 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3603 return status;
3604 }
François Gaffie2110e042015-03-24 08:41:51 +01003605
Eric Laurent3a4311c2014-03-17 12:00:47 -07003606 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003607 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003608 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3609 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003610 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003611 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003612 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3613 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003614 continue;
3615 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003616 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003617 // open all output streams needed to access attached devices
3618 // except for direct output streams that are only opened when they are actually
3619 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003620 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003621 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003622 if (!outProfile->canOpenNewIo()) {
3623 ALOGE("Invalid Output profile max open count %u for profile %s",
3624 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3625 continue;
3626 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003627 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003628 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003629 continue;
3630 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003631 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003632 mTtsOutputAvailable = true;
3633 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003634
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003635 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003636 continue;
3637 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003638 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003639 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3640 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003641 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003642 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003643 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003644 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003645 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003646 if ((profileType & outputDeviceTypes) == 0) {
3647 continue;
3648 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003649 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3650 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003651 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3652 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3653 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3654 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003655 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003656 status_t status = outputDesc->open(nullptr, profileType, address,
3657 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003658
3659 if (status != NO_ERROR) {
3660 ALOGW("Cannot open output stream for device %08x on hw module %s",
3661 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003662 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003663 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003664 for (const auto& dev : supportedDevices) {
3665 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003666 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003667 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003668 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003669 }
3670 }
3671 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003672 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003673 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003674 }
3675 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003676 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003677 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003678 true,
3679 0,
3680 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003681 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003682 }
Eric Laurente552edb2014-03-10 17:42:56 -07003683 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003684 // open input streams needed to access attached devices to validate
3685 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003686 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003687 if (!inProfile->canOpenNewIo()) {
3688 ALOGE("Invalid Input profile max open count %u for profile %s",
3689 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3690 continue;
3691 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003692 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003693 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003694 continue;
3695 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003696 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003697 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003698 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3699
Eric Laurentd78f1532014-09-16 16:38:20 -07003700 if ((profileType & inputDeviceTypes) == 0) {
3701 continue;
3702 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003703 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003704 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003705
Eric Laurent53b810e2017-12-10 17:25:10 -08003706 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
3707 // the inputs vector must be of size >= 1, but we don't want to crash here
3708 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3709 : String8("");
3710 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
3711 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
3712
Eric Laurentd78f1532014-09-16 16:38:20 -07003713 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003714 status_t status = inputDesc->open(nullptr,
3715 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08003716 address,
Eric Laurentfe231122017-11-17 17:48:06 -08003717 AUDIO_SOURCE_MIC,
3718 AUDIO_INPUT_FLAG_NONE,
3719 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003720
3721 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003722 for (const auto& dev : inProfile->getSupportedDevices()) {
3723 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003724 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003725 if (index >= 0) {
3726 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3727 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003728 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003729 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003730 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003731 }
3732 }
Eric Laurentfe231122017-11-17 17:48:06 -08003733 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003734 } else {
3735 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003736 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003737 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003738 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003739 }
3740 }
3741 // make sure all attached devices have been allocated a unique ID
3742 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003743 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003744 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003745 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3746 continue;
3747 }
François Gaffie2110e042015-03-24 08:41:51 +01003748 // The device is now validated and can be appended to the available devices of the engine
3749 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3750 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003751 i++;
3752 }
3753 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003754 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003755 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003756 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3757 continue;
3758 }
François Gaffie2110e042015-03-24 08:41:51 +01003759 // The device is now validated and can be appended to the available devices of the engine
3760 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3761 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003762 i++;
3763 }
3764 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003765 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003766 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003767 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07003768 }
Eric Laurente552edb2014-03-10 17:42:56 -07003769
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003770 if (mPrimaryOutput == 0) {
3771 ALOGE("Failed to open primary output");
3772 status = NO_INIT;
3773 }
Eric Laurente552edb2014-03-10 17:42:56 -07003774
3775 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003776 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07003777}
3778
Eric Laurente0720872014-03-11 09:30:41 -07003779AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003780{
Eric Laurente552edb2014-03-10 17:42:56 -07003781 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003782 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003783 }
3784 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003785 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003786 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003787 mAvailableOutputDevices.clear();
3788 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003789 mOutputs.clear();
3790 mInputs.clear();
3791 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003792 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003793}
3794
Eric Laurente0720872014-03-11 09:30:41 -07003795status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003796{
Eric Laurent87ffa392015-05-22 10:32:38 -07003797 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003798}
3799
Eric Laurente552edb2014-03-10 17:42:56 -07003800// ---
3801
Eric Laurent98e38192018-02-15 18:31:53 -08003802void AudioPolicyManager::addOutput(audio_io_handle_t output,
3803 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003804{
Eric Laurent1c333e22014-05-20 10:48:17 -07003805 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08003806 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08003807 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003808 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003809 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003810}
3811
François Gaffie53615e22015-03-19 09:24:12 +01003812void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3813{
3814 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003815 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003816}
3817
Eric Laurent98e38192018-02-15 18:31:53 -08003818void AudioPolicyManager::addInput(audio_io_handle_t input,
3819 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003820{
Eric Laurent1c333e22014-05-20 10:48:17 -07003821 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003822 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003823}
Eric Laurente552edb2014-03-10 17:42:56 -07003824
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003825void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003826 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003827 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003828 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003829 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003830 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003831 if (devDesc != 0) {
3832 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3833 desc->mIoHandle, address.string());
3834 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003835 }
3836}
3837
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003838status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003839 audio_policy_dev_state_t state,
3840 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003841 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003842{
François Gaffie53615e22015-03-19 09:24:12 +01003843 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003844 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003845
3846 if (audio_device_is_digital(device)) {
3847 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003848 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003849 }
Eric Laurente552edb2014-03-10 17:42:56 -07003850
Eric Laurent3b73df72014-03-11 09:06:29 -07003851 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003852 // first list already open outputs that can be routed to this device
3853 for (size_t i = 0; i < mOutputs.size(); i++) {
3854 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003855 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003856 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003857 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3858 outputs.add(mOutputs.keyAt(i));
3859 } else {
3860 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003861 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003862 }
Eric Laurente552edb2014-03-10 17:42:56 -07003863 }
3864 }
3865 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003866 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003867 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003868 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3869 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003870 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003871 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003872 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003873 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003874 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3875 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003876 }
Eric Laurente552edb2014-03-10 17:42:56 -07003877 }
3878 }
3879 }
3880
Eric Laurent7b279bb2015-12-14 10:18:23 -08003881 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003882
Eric Laurente552edb2014-03-10 17:42:56 -07003883 if (profiles.isEmpty() && outputs.isEmpty()) {
3884 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3885 return BAD_VALUE;
3886 }
3887
3888 // open outputs for matching profiles if needed. Direct outputs are also opened to
3889 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3890 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003891 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003892
3893 // nothing to do if one output is already opened for this profile
3894 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003895 for (j = 0; j < outputs.size(); j++) {
3896 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003897 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003898 // matching profile: save the sample rates, format and channel masks supported
3899 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003900 if (audio_device_is_digital(device)) {
3901 devDesc->importAudioPort(profile);
3902 }
Eric Laurente552edb2014-03-10 17:42:56 -07003903 break;
3904 }
3905 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003906 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003907 continue;
3908 }
3909
Eric Laurent3974e3b2017-12-07 17:58:43 -08003910 if (!profile->canOpenNewIo()) {
3911 ALOGW("Max Output number %u already opened for this profile %s",
3912 profile->maxOpenCount, profile->getTagName().c_str());
3913 continue;
3914 }
3915
Eric Laurent83efe1c2017-07-09 16:51:08 -07003916 ALOGV("opening output for device %08x with params %s profile %p name %s",
3917 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003918 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003919 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003920 status_t status = desc->open(nullptr, device, address,
3921 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003922
Eric Laurentfe231122017-11-17 17:48:06 -08003923 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003924 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003925 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003926 char *param = audio_device_address_to_parameter(device, address);
3927 mpClientInterface->setParameters(output, String8(param));
3928 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003929 }
Phil Burk00eeb322016-03-31 12:41:00 -07003930 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003931 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003932 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003933 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003934 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003935 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003936 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003937 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003938 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3939 profile->pickAudioProfile(
3940 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003941 config.offload_info.sample_rate = config.sample_rate;
3942 config.offload_info.channel_mask = config.channel_mask;
3943 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003944
3945 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3946 AUDIO_OUTPUT_FLAG_NONE, &output);
3947 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003948 output = AUDIO_IO_HANDLE_NONE;
3949 }
Eric Laurentd4692962014-05-05 18:13:44 -07003950 }
3951
Eric Laurentcf2c0212014-07-25 16:20:43 -07003952 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003953 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003954 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003955 sp<AudioPolicyMix> policyMix;
3956 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003957 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3958 address.string());
3959 }
François Gaffie036e1e92015-03-19 10:16:24 +01003960 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07003961 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01003962
Eric Laurent87ffa392015-05-22 10:32:38 -07003963 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
3964 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08003965 // no duplicated output for direct outputs and
3966 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07003967 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003968
Eric Laurentd4692962014-05-05 18:13:44 -07003969 //TODO: configure audio effect output stage here
3970
3971 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08003972 sp<SwAudioOutputDescriptor> dupOutputDesc =
3973 new SwAudioOutputDescriptor(NULL, mpClientInterface);
3974 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
3975 &duplicatedOutput);
3976 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003977 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07003978 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07003979 } else {
3980 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07003981 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08003982 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01003983 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07003984 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003985 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07003986 }
Eric Laurente552edb2014-03-10 17:42:56 -07003987 }
3988 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003989 } else {
3990 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003991 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07003992 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003993 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07003994 profiles.removeAt(profile_index);
3995 profile_index--;
3996 } else {
3997 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07003998 // Load digital format info only for digital devices
3999 if (audio_device_is_digital(device)) {
4000 devDesc->importAudioPort(profile);
4001 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004002
François Gaffie53615e22015-03-19 09:24:12 +01004003 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004004 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
4005 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004006 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004007 NULL/*patch handle*/, address.string());
4008 }
Eric Laurente552edb2014-03-10 17:42:56 -07004009 ALOGV("checkOutputsForDevice(): adding output %d", output);
4010 }
4011 }
4012
4013 if (profiles.isEmpty()) {
4014 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4015 return BAD_VALUE;
4016 }
Eric Laurentd4692962014-05-05 18:13:44 -07004017 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004018 // check if one opened output is not needed any more after disconnecting one device
4019 for (size_t i = 0; i < mOutputs.size(); i++) {
4020 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004021 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004022 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004023 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004024 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004025 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004026 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004027 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4028 mOutputs.keyAt(i));
4029 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004030 }
Eric Laurente552edb2014-03-10 17:42:56 -07004031 }
4032 }
Eric Laurentd4692962014-05-05 18:13:44 -07004033 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004034 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004035 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4036 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004037 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004038 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004039 "clearing direct output profile %zu on module %s",
4040 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004041 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004042 }
4043 }
4044 }
4045 }
4046 return NO_ERROR;
4047}
4048
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004049status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004050 audio_policy_dev_state_t state,
4051 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004052 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004053{
Paul McLean9080a4c2015-06-18 08:24:02 -07004054 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004055 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004056
4057 if (audio_device_is_digital(device)) {
4058 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004059 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004060 }
4061
Eric Laurentd4692962014-05-05 18:13:44 -07004062 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4063 // first list already open inputs that can be routed to this device
4064 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4065 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004066 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004067 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4068 inputs.add(mInputs.keyAt(input_index));
4069 }
4070 }
4071
4072 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004073 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004074 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004075 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004076 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004077 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004078 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004079
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004080 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004081 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004082 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004083 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004084 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4085 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004086 }
Eric Laurentd4692962014-05-05 18:13:44 -07004087 }
4088 }
4089 }
4090
4091 if (profiles.isEmpty() && inputs.isEmpty()) {
4092 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4093 return BAD_VALUE;
4094 }
4095
4096 // open inputs for matching profiles if needed. Direct inputs are also opened to
4097 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4098 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4099
Eric Laurent1c333e22014-05-20 10:48:17 -07004100 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004101
Eric Laurentd4692962014-05-05 18:13:44 -07004102 // nothing to do if one input is already opened for this profile
4103 size_t input_index;
4104 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4105 desc = mInputs.valueAt(input_index);
4106 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004107 if (audio_device_is_digital(device)) {
4108 devDesc->importAudioPort(profile);
4109 }
Eric Laurentd4692962014-05-05 18:13:44 -07004110 break;
4111 }
4112 }
4113 if (input_index != mInputs.size()) {
4114 continue;
4115 }
4116
Eric Laurent3974e3b2017-12-07 17:58:43 -08004117 if (!profile->canOpenNewIo()) {
4118 ALOGW("Max Input number %u already opened for this profile %s",
4119 profile->maxOpenCount, profile->getTagName().c_str());
4120 continue;
4121 }
4122
Eric Laurentfe231122017-11-17 17:48:06 -08004123 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004124 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004125 status_t status = desc->open(nullptr,
4126 device,
4127 address,
4128 AUDIO_SOURCE_MIC,
4129 AUDIO_INPUT_FLAG_NONE,
4130 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004131
Eric Laurentcf2c0212014-07-25 16:20:43 -07004132 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004133 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004134 char *param = audio_device_address_to_parameter(device, address);
4135 mpClientInterface->setParameters(input, String8(param));
4136 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004137 }
Phil Burk00eeb322016-03-31 12:41:00 -07004138 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004139 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004140 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004141 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004142 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004143 }
4144
4145 if (input != 0) {
4146 addInput(input, desc);
4147 }
4148 } // endif input != 0
4149
Eric Laurentcf2c0212014-07-25 16:20:43 -07004150 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004151 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004152 profiles.removeAt(profile_index);
4153 profile_index--;
4154 } else {
4155 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004156 if (audio_device_is_digital(device)) {
4157 devDesc->importAudioPort(profile);
4158 }
Eric Laurentd4692962014-05-05 18:13:44 -07004159 ALOGV("checkInputsForDevice(): adding input %d", input);
4160 }
4161 } // end scan profiles
4162
4163 if (profiles.isEmpty()) {
4164 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4165 return BAD_VALUE;
4166 }
4167 } else {
4168 // Disconnect
4169 // check if one opened input is not needed any more after disconnecting one device
4170 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4171 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004172 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004173 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4174 mInputs.keyAt(input_index));
4175 inputs.add(mInputs.keyAt(input_index));
4176 }
4177 }
4178 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004179 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004180 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004181 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004182 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004183 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004184 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004185 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4186 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004187 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004188 }
4189 }
4190 }
4191 } // end disconnect
4192
4193 return NO_ERROR;
4194}
4195
4196
Eric Laurente0720872014-03-11 09:30:41 -07004197void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004198{
4199 ALOGV("closeOutput(%d)", output);
4200
Eric Laurentc75307b2015-03-17 15:29:32 -07004201 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004202 if (outputDesc == NULL) {
4203 ALOGW("closeOutput() unknown output %d", output);
4204 return;
4205 }
François Gaffie036e1e92015-03-19 10:16:24 +01004206 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004207
Eric Laurente552edb2014-03-10 17:42:56 -07004208 // look for duplicated outputs connected to the output being removed.
4209 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004210 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004211 if (dupOutputDesc->isDuplicated() &&
4212 (dupOutputDesc->mOutput1 == outputDesc ||
4213 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004214 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004215 if (dupOutputDesc->mOutput1 == outputDesc) {
4216 outputDesc2 = dupOutputDesc->mOutput2;
4217 } else {
4218 outputDesc2 = dupOutputDesc->mOutput1;
4219 }
4220 // As all active tracks on duplicated output will be deleted,
4221 // and as they were also referenced on the other output, the reference
4222 // count for their stream type must be adjusted accordingly on
4223 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004224 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004225 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004226 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004227 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004228 }
Eric Laurent733ce942017-12-07 12:18:25 -08004229 // stop() will be a no op if the output is still active but is needed in case all
4230 // active streams refcounts where cleared above
4231 if (wasActive) {
4232 outputDesc2->stop();
4233 }
Eric Laurente552edb2014-03-10 17:42:56 -07004234 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4235 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4236
4237 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004238 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004239 }
4240 }
4241
Eric Laurent05b90f82014-08-27 15:32:29 -07004242 nextAudioPortGeneration();
4243
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004244 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004245 if (index >= 0) {
4246 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004247 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004248 mAudioPatches.removeItemsAt(index);
4249 mpClientInterface->onAudioPatchListUpdate();
4250 }
4251
Eric Laurentfe231122017-11-17 17:48:06 -08004252 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004253
François Gaffie53615e22015-03-19 09:24:12 +01004254 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004255 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004256}
4257
4258void AudioPolicyManager::closeInput(audio_io_handle_t input)
4259{
4260 ALOGV("closeInput(%d)", input);
4261
4262 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4263 if (inputDesc == NULL) {
4264 ALOGW("closeInput() unknown input %d", input);
4265 return;
4266 }
4267
Eric Laurent6a94d692014-05-20 11:18:06 -07004268 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004269
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004270 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004271 if (index >= 0) {
4272 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004273 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004274 mAudioPatches.removeItemsAt(index);
4275 mpClientInterface->onAudioPatchListUpdate();
4276 }
4277
Eric Laurentfe231122017-11-17 17:48:06 -08004278 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004279 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004280}
4281
Eric Laurentc75307b2015-03-17 15:29:32 -07004282SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4283 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004284 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004285{
4286 SortedVector<audio_io_handle_t> outputs;
4287
4288 ALOGVV("getOutputsForDevice() device %04x", device);
4289 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004290 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004291 i, openOutputs.valueAt(i)->isDuplicated(),
4292 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004293 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4294 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4295 outputs.add(openOutputs.keyAt(i));
4296 }
4297 }
4298 return outputs;
4299}
4300
Eric Laurente0720872014-03-11 09:30:41 -07004301bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004302 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004303{
4304 if (outputs1.size() != outputs2.size()) {
4305 return false;
4306 }
4307 for (size_t i = 0; i < outputs1.size(); i++) {
4308 if (outputs1[i] != outputs2[i]) {
4309 return false;
4310 }
4311 }
4312 return true;
4313}
4314
Eric Laurente0720872014-03-11 09:30:41 -07004315void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004316{
4317 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4318 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4319 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4320 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4321
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004322 // also take into account external policy-related changes: add all outputs which are
4323 // associated with policies in the "before" and "after" output vectors
4324 ALOGVV("checkOutputForStrategy(): policy related outputs");
4325 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004326 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004327 if (desc != 0 && desc->mPolicyMix != NULL) {
4328 srcOutputs.add(desc->mIoHandle);
4329 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4330 }
4331 }
4332 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004333 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004334 if (desc != 0 && desc->mPolicyMix != NULL) {
4335 dstOutputs.add(desc->mIoHandle);
4336 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4337 }
4338 }
4339
Eric Laurente552edb2014-03-10 17:42:56 -07004340 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4341 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4342 strategy, srcOutputs[0], dstOutputs[0]);
4343 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004344 for (audio_io_handle_t srcOut : srcOutputs) {
4345 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut);
François Gaffiead3183e2015-03-18 16:55:35 +01004346 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004347 setStrategyMute(strategy, true, desc);
4348 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004349 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004350 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004351 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004352 if (source != 0){
4353 connectAudioSource(source);
4354 }
Eric Laurente552edb2014-03-10 17:42:56 -07004355 }
4356
4357 // Move effects associated to this strategy from previous output to new output
4358 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004359 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004360 }
4361 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004362 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004363 if (getStrategy((audio_stream_type_t)i) == strategy) {
4364 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004365 }
4366 }
4367 }
4368}
4369
Eric Laurente0720872014-03-11 09:30:41 -07004370void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004371{
François Gaffie2110e042015-03-24 08:41:51 +01004372 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004373 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004374 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004375 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004376 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004377 checkOutputForStrategy(STRATEGY_SONIFICATION);
4378 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004379 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004380 checkOutputForStrategy(STRATEGY_MEDIA);
4381 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004382 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004383}
4384
Eric Laurente0720872014-03-11 09:30:41 -07004385void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004386{
François Gaffie53615e22015-03-19 09:24:12 +01004387 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Eric Laurente552edb2014-03-10 17:42:56 -07004388 if (a2dpOutput == 0) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004389 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004390 return;
4391 }
4392
Eric Laurent3a4311c2014-03-17 12:00:47 -07004393 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004394 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4395 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4396 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004397
4398 // if suspended, restore A2DP output if:
4399 // ((SCO device is NOT connected) ||
4400 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4401 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004402 //
Eric Laurentf732e072016-08-03 19:30:28 -07004403 // if not suspended, suspend A2DP output if:
4404 // (SCO device is connected) &&
4405 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4406 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004407 //
4408 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004409 if (!isScoConnected ||
4410 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4411 AUDIO_POLICY_FORCE_BT_SCO) &&
4412 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4413 AUDIO_POLICY_FORCE_BT_SCO) &&
4414 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004415 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004416
4417 mpClientInterface->restoreOutput(a2dpOutput);
4418 mA2dpSuspended = false;
4419 }
4420 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004421 if (isScoConnected &&
4422 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4423 AUDIO_POLICY_FORCE_BT_SCO) ||
4424 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4425 AUDIO_POLICY_FORCE_BT_SCO) ||
4426 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004427 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004428
4429 mpClientInterface->suspendOutput(a2dpOutput);
4430 mA2dpSuspended = true;
4431 }
4432 }
4433}
4434
Eric Laurentc75307b2015-03-17 15:29:32 -07004435audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4436 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004437{
4438 audio_devices_t device = AUDIO_DEVICE_NONE;
4439
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004440 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004441 if (index >= 0) {
4442 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4443 if (patchDesc->mUid != mUidCached) {
4444 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004445 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004446 return outputDesc->device();
4447 }
4448 }
4449
Eric Laurente552edb2014-03-10 17:42:56 -07004450 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004451 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004452 // use device for strategy enforced audible
4453 // 2: we are in call or the strategy phone is active on the output:
4454 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004455 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004456 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004457 // 4: the strategy for enforced audible is active but not enforced on the output:
4458 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004459 // 5: the strategy accessibility is active on the output:
4460 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004461 // 6: the strategy "respectful" sonification is active on the output:
4462 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004463 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004464 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004465 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004466 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004467 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004468 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004469 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004470 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004471 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4472 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004473 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004474 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004475 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004476 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004477 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4478 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004479 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4480 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004481 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004482 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004483 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004484 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004485 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004486 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004487 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004488 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004489 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004490 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004491 }
4492
Eric Laurent1c333e22014-05-20 10:48:17 -07004493 ALOGV("getNewOutputDevice() selected device %x", device);
4494 return device;
4495}
4496
Eric Laurentfb66dd92016-01-28 18:32:03 -08004497audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004498{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004499 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004500
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004501 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004502 if (index >= 0) {
4503 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4504 if (patchDesc->mUid != mUidCached) {
4505 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004506 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004507 return inputDesc->mDevice;
4508 }
4509 }
4510
Eric Laurentfb66dd92016-01-28 18:32:03 -08004511 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
4512 if (isInCall()) {
4513 device = getDeviceAndMixForInputSource(AUDIO_SOURCE_VOICE_COMMUNICATION);
4514 } else if (source != AUDIO_SOURCE_DEFAULT) {
4515 device = getDeviceAndMixForInputSource(source);
4516 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004517
Eric Laurente552edb2014-03-10 17:42:56 -07004518 return device;
4519}
4520
Eric Laurent794fde22016-03-11 09:50:45 -08004521bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4522 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004523 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004524}
4525
Eric Laurente0720872014-03-11 09:30:41 -07004526uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004527 return (uint32_t)getStrategy(stream);
4528}
4529
Eric Laurente0720872014-03-11 09:30:41 -07004530audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004531 // By checking the range of stream before calling getStrategy, we avoid
4532 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4533 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004534 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004535 return AUDIO_DEVICE_NONE;
4536 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004537 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004538 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4539 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004540 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004541 }
Eric Laurent794fde22016-03-11 09:50:45 -08004542 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004543 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004544 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004545 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4546 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004547 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004548 curDevices |= outputDesc->device();
4549 }
4550 }
4551 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004552 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004553
4554 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4555 and doesn't really need to.*/
4556 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4557 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4558 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4559 }
Eric Laurente552edb2014-03-10 17:42:56 -07004560 return devices;
4561}
4562
François Gaffie2110e042015-03-24 08:41:51 +01004563routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4564{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004565 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004566 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004567}
4568
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004569uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4570 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004571 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4572 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4573 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004574 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4575 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4576 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004577 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004578 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004579}
4580
Eric Laurente0720872014-03-11 09:30:41 -07004581void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004582 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004583 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004584 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4585 updateDevicesAndOutputs();
4586 break;
4587 default:
4588 break;
4589 }
4590}
4591
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004592uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004593
4594 // skip beacon mute management if a dedicated TTS output is available
4595 if (mTtsOutputAvailable) {
4596 return 0;
4597 }
4598
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004599 switch(event) {
4600 case STARTING_OUTPUT:
4601 mBeaconMuteRefCount++;
4602 break;
4603 case STOPPING_OUTPUT:
4604 if (mBeaconMuteRefCount > 0) {
4605 mBeaconMuteRefCount--;
4606 }
4607 break;
4608 case STARTING_BEACON:
4609 mBeaconPlayingRefCount++;
4610 break;
4611 case STOPPING_BEACON:
4612 if (mBeaconPlayingRefCount > 0) {
4613 mBeaconPlayingRefCount--;
4614 }
4615 break;
4616 }
4617
4618 if (mBeaconMuteRefCount > 0) {
4619 // any playback causes beacon to be muted
4620 return setBeaconMute(true);
4621 } else {
4622 // no other playback: unmute when beacon starts playing, mute when it stops
4623 return setBeaconMute(mBeaconPlayingRefCount == 0);
4624 }
4625}
4626
4627uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4628 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4629 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4630 // keep track of muted state to avoid repeating mute/unmute operations
4631 if (mBeaconMuted != mute) {
4632 // mute/unmute AUDIO_STREAM_TTS on all outputs
4633 ALOGV("\t muting %d", mute);
4634 uint32_t maxLatency = 0;
4635 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004636 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004637 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004638 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004639 0 /*delay*/, AUDIO_DEVICE_NONE);
4640 const uint32_t latency = desc->latency() * 2;
4641 if (latency > maxLatency) {
4642 maxLatency = latency;
4643 }
4644 }
4645 mBeaconMuted = mute;
4646 return maxLatency;
4647 }
4648 return 0;
4649}
4650
Eric Laurente0720872014-03-11 09:30:41 -07004651audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004652 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004653{
Paul McLeanaa981192015-03-21 09:55:15 -07004654 // Routing
4655 // see if we have an explicit route
4656 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4657 // (getStrategy(stream)).
4658 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004659 // and activity count is non-zero and the device in the route descriptor is available
4660 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004661 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4662 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004663 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurentad2e7b92017-09-14 20:06:42 -07004664 if ((routeStrategy == strategy) && route->isActive() &&
4665 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004666 return route->mDeviceDescriptor->type();
4667 }
4668 }
4669
Eric Laurente552edb2014-03-10 17:42:56 -07004670 if (fromCache) {
4671 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4672 strategy, mDeviceForStrategy[strategy]);
4673 return mDeviceForStrategy[strategy];
4674 }
François Gaffie2110e042015-03-24 08:41:51 +01004675 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004676}
4677
Eric Laurente0720872014-03-11 09:30:41 -07004678void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004679{
4680 for (int i = 0; i < NUM_STRATEGIES; i++) {
4681 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4682 }
4683 mPreviousOutputs = mOutputs;
4684}
4685
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004686uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004687 audio_devices_t prevDevice,
4688 uint32_t delayMs)
4689{
4690 // mute/unmute strategies using an incompatible device combination
4691 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4692 // if unmuting, unmute only after the specified delay
4693 if (outputDesc->isDuplicated()) {
4694 return 0;
4695 }
4696
4697 uint32_t muteWaitMs = 0;
4698 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004699 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004700
4701 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4702 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004703 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004704 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4705 bool doMute = false;
4706
4707 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4708 doMute = true;
4709 outputDesc->mStrategyMutedByDevice[i] = true;
4710 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4711 doMute = true;
4712 outputDesc->mStrategyMutedByDevice[i] = false;
4713 }
Eric Laurent99401132014-05-07 19:48:15 -07004714 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004715 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004716 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004717 // skip output if it does not share any device with current output
4718 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4719 == AUDIO_DEVICE_NONE) {
4720 continue;
4721 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004722 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004723 mute ? "muting" : "unmuting", i, curDevice);
4724 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004725 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004726 if (mute) {
4727 // FIXME: should not need to double latency if volume could be applied
4728 // immediately by the audioflinger mixer. We must account for the delay
4729 // between now and the next time the audioflinger thread for this output
4730 // will process a buffer (which corresponds to one buffer size,
4731 // usually 1/2 or 1/4 of the latency).
4732 if (muteWaitMs < desc->latency() * 2) {
4733 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004734 }
4735 }
4736 }
4737 }
4738 }
4739 }
4740
Eric Laurent99401132014-05-07 19:48:15 -07004741 // temporary mute output if device selection changes to avoid volume bursts due to
4742 // different per device volumes
4743 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004744 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4745 // temporary mute duration is conservatively set to 4 times the reported latency
4746 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4747 if (muteWaitMs < tempMuteWaitMs) {
4748 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004749 }
Eric Laurentdc462862016-07-19 12:29:53 -07004750
Eric Laurent99401132014-05-07 19:48:15 -07004751 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004752 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004753 // make sure that we do not start the temporary mute period too early in case of
4754 // delayed device change
4755 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004756 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004757 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004758 }
4759 }
4760 }
4761
Eric Laurente552edb2014-03-10 17:42:56 -07004762 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4763 if (muteWaitMs > delayMs) {
4764 muteWaitMs -= delayMs;
4765 usleep(muteWaitMs * 1000);
4766 return muteWaitMs;
4767 }
4768 return 0;
4769}
4770
Eric Laurentc75307b2015-03-17 15:29:32 -07004771uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004772 audio_devices_t device,
4773 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004774 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004775 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004776 const char *address,
4777 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004778{
Eric Laurentc75307b2015-03-17 15:29:32 -07004779 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004780 AudioParameter param;
4781 uint32_t muteWaitMs;
4782
4783 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004784 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4785 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4786 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4787 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004788 return muteWaitMs;
4789 }
4790 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4791 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004792 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004793 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004794 return 0;
4795 }
4796
4797 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004798 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004799
4800 audio_devices_t prevDevice = outputDesc->mDevice;
4801
Paul McLeanaa981192015-03-21 09:55:15 -07004802 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004803
4804 if (device != AUDIO_DEVICE_NONE) {
4805 outputDesc->mDevice = device;
4806 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004807
4808 // if the outputs are not materially active, there is no need to mute.
4809 if (requiresMuteCheck) {
4810 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4811 } else {
4812 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4813 muteWaitMs = 0;
4814 }
Eric Laurente552edb2014-03-10 17:42:56 -07004815
4816 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004817 // the requested device is AUDIO_DEVICE_NONE
4818 // OR the requested device is the same as current device
4819 // AND force is not specified
4820 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004821 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004822 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4823 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004824 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004825 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004826 return muteWaitMs;
4827 }
4828
4829 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004830
Eric Laurente552edb2014-03-10 17:42:56 -07004831 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004832 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004833 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004834 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004835 DeviceVector deviceList;
4836 if ((address == NULL) || (strlen(address) == 0)) {
4837 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4838 } else {
4839 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4840 }
4841
Eric Laurent1c333e22014-05-20 10:48:17 -07004842 if (!deviceList.isEmpty()) {
4843 struct audio_patch patch;
4844 outputDesc->toAudioPortConfig(&patch.sources[0]);
4845 patch.num_sources = 1;
4846 patch.num_sinks = 0;
4847 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4848 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004849 patch.num_sinks++;
4850 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004851 ssize_t index;
4852 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4853 index = mAudioPatches.indexOfKey(*patchHandle);
4854 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004855 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004856 }
4857 sp< AudioPatch> patchDesc;
4858 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4859 if (index >= 0) {
4860 patchDesc = mAudioPatches.valueAt(index);
4861 afPatchHandle = patchDesc->mAfPatchHandle;
4862 }
4863
Eric Laurent1c333e22014-05-20 10:48:17 -07004864 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004865 &afPatchHandle,
4866 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004867 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4868 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004869 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004870 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004871 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004872 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004873 addAudioPatch(patchDesc->mHandle, patchDesc);
4874 } else {
4875 patchDesc->mPatch = patch;
4876 }
4877 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004878 if (patchHandle) {
4879 *patchHandle = patchDesc->mHandle;
4880 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004881 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004882 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004883 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004884 }
4885 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004886
4887 // inform all input as well
4888 for (size_t i = 0; i < mInputs.size(); i++) {
4889 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004890 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004891 AudioParameter inputCmd = AudioParameter();
4892 ALOGV("%s: inform input %d of device:%d", __func__,
4893 inputDescriptor->mIoHandle, device);
4894 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4895 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4896 inputCmd.toString(),
4897 delayMs);
4898 }
4899 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004900 }
Eric Laurente552edb2014-03-10 17:42:56 -07004901
4902 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004903 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004904
4905 return muteWaitMs;
4906}
4907
Eric Laurentc75307b2015-03-17 15:29:32 -07004908status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004909 int delayMs,
4910 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004911{
Eric Laurent6a94d692014-05-20 11:18:06 -07004912 ssize_t index;
4913 if (patchHandle) {
4914 index = mAudioPatches.indexOfKey(*patchHandle);
4915 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004916 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004917 }
4918 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004919 return INVALID_OPERATION;
4920 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004921 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4922 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004923 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004924 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004925 removeAudioPatch(patchDesc->mHandle);
4926 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004927 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004928 return status;
4929}
4930
4931status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4932 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004933 bool force,
4934 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004935{
4936 status_t status = NO_ERROR;
4937
Eric Laurent1f2f2232014-06-02 12:01:23 -07004938 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004939 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4940 inputDesc->mDevice = device;
4941
4942 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4943 if (!deviceList.isEmpty()) {
4944 struct audio_patch patch;
4945 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004946 // AUDIO_SOURCE_HOTWORD is for internal use only:
4947 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004948 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004949 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004950 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4951 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004952 patch.num_sinks = 1;
4953 //only one input device for now
4954 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004955 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07004956 ssize_t index;
4957 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4958 index = mAudioPatches.indexOfKey(*patchHandle);
4959 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004960 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004961 }
4962 sp< AudioPatch> patchDesc;
4963 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4964 if (index >= 0) {
4965 patchDesc = mAudioPatches.valueAt(index);
4966 afPatchHandle = patchDesc->mAfPatchHandle;
4967 }
4968
Eric Laurent1c333e22014-05-20 10:48:17 -07004969 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004970 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07004971 0);
4972 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004973 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07004974 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004975 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004976 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004977 addAudioPatch(patchDesc->mHandle, patchDesc);
4978 } else {
4979 patchDesc->mPatch = patch;
4980 }
4981 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004982 if (patchHandle) {
4983 *patchHandle = patchDesc->mHandle;
4984 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004985 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004986 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004987 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004988 }
4989 }
4990 }
4991 return status;
4992}
4993
Eric Laurent6a94d692014-05-20 11:18:06 -07004994status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
4995 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004996{
Eric Laurent1f2f2232014-06-02 12:01:23 -07004997 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07004998 ssize_t index;
4999 if (patchHandle) {
5000 index = mAudioPatches.indexOfKey(*patchHandle);
5001 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005002 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005003 }
5004 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005005 return INVALID_OPERATION;
5006 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005007 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5008 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005009 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005010 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005011 removeAudioPatch(patchDesc->mHandle);
5012 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005013 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005014 return status;
5015}
5016
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08005017sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005018 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01005019 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005020 audio_format_t& format,
5021 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005022 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005023{
5024 // Choose an input profile based on the requested capture parameters: select the first available
5025 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005026 //
5027 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5028 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005029
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005030 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005031 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005032 // profile->log();
Eric Laurent275e8e92014-11-30 15:14:47 -08005033 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kastencbd48022014-07-24 13:46:44 -07005034 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005035 format,
5036 &format /*updatedFormat*/,
5037 channelMask,
5038 &channelMask /*updatedChannelMask*/,
5039 (audio_output_flags_t) flags)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08005040
Eric Laurente552edb2014-03-10 17:42:56 -07005041 return profile;
5042 }
5043 }
5044 }
5045 return NULL;
5046}
5047
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005048
5049audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005050 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005051{
François Gaffie036e1e92015-03-19 10:16:24 +01005052 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5053 audio_devices_t selectedDeviceFromMix =
5054 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005055
François Gaffie036e1e92015-03-19 10:16:24 +01005056 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5057 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005058 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005059 return getDeviceForInputSource(inputSource);
5060}
5061
5062audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5063{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005064 // Routing
5065 // Scan the whole RouteMap to see if we have an explicit route:
5066 // if the input source in the RouteMap is the same as the argument above,
5067 // and activity count is non-zero and the device in the route descriptor is available
5068 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005069 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5070 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurentad2e7b92017-09-14 20:06:42 -07005071 if ((inputSource == route->mSource) && route->isActive() &&
5072 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005073 return route->mDeviceDescriptor->type();
5074 }
5075 }
5076
5077 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005078}
5079
Eric Laurente0720872014-03-11 09:30:41 -07005080float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005081 int index,
5082 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005083{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005084 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005085
5086 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5087 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5088 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5089 // the ringtone volume
5090 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5091 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5092 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5093 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5094 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5095 }
5096
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005097 // in-call: always cap earpiece volume by voice volume + some low headroom
5098 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) && isInCall()) {
5099 switch (stream) {
5100 case AUDIO_STREAM_SYSTEM:
5101 case AUDIO_STREAM_RING:
5102 case AUDIO_STREAM_MUSIC:
5103 case AUDIO_STREAM_ALARM:
5104 case AUDIO_STREAM_NOTIFICATION:
5105 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5106 case AUDIO_STREAM_DTMF:
5107 case AUDIO_STREAM_ACCESSIBILITY: {
5108 const float maxVoiceVolDb = computeVolume(AUDIO_STREAM_VOICE_CALL, index, device)
5109 + IN_CALL_EARPIECE_HEADROOM_DB;
5110 if (volumeDB > maxVoiceVolDb) {
5111 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5112 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5113 volumeDB = maxVoiceVolDb;
5114 }
5115 } break;
5116 default:
5117 break;
5118 }
5119 }
5120
Eric Laurente552edb2014-03-10 17:42:56 -07005121 // if a headset is connected, apply the following rules to ring tones and notifications
5122 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005123 // - always attenuate notifications volume by 6dB
5124 // - attenuate ring tones volume by 6dB unless music is not playing and
5125 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005126 // - if music is playing, always limit the volume to current music volume,
5127 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005128 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005129 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5130 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5131 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005132 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
5133 AUDIO_DEVICE_OUT_USB_HEADSET)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005134 ((stream_strategy == STRATEGY_SONIFICATION)
5135 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005136 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005137 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005138 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005139 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005140 // when the phone is ringing we must consider that music could have been paused just before
5141 // by the music application and behave as if music was active if the last music track was
5142 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005143 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005144 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005145 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005146 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005147 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005148 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5149 musicDevice),
5150 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005151 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5152 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005153 if (volumeDB > minVolDB) {
5154 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005155 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005156 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005157 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5158 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5159 // on A2DP, also ensure notification volume is not too low compared to media when
5160 // intended to be played
5161 if ((volumeDB > -96.0f) &&
5162 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5163 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5164 stream, device,
5165 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5166 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5167 }
5168 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005169 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5170 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005171 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005172 }
5173 }
5174
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005175 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005176}
5177
Eric Laurente0720872014-03-11 09:30:41 -07005178status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005179 int index,
5180 const sp<AudioOutputDescriptor>& outputDesc,
5181 audio_devices_t device,
5182 int delayMs,
5183 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005184{
Eric Laurente552edb2014-03-10 17:42:56 -07005185 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005186 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005187 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005188 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005189 return NO_ERROR;
5190 }
François Gaffie2110e042015-03-24 08:41:51 +01005191 audio_policy_forced_cfg_t forceUseForComm =
5192 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005193 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005194 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5195 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005196 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005197 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005198 return INVALID_OPERATION;
5199 }
5200
Eric Laurentc75307b2015-03-17 15:29:32 -07005201 if (device == AUDIO_DEVICE_NONE) {
5202 device = outputDesc->device();
5203 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005204
Eric Laurentffbc80f2015-03-18 18:30:19 -07005205 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005206 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005207 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005208 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005209
Eric Laurentffbc80f2015-03-18 18:30:19 -07005210 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005211
Eric Laurent3b73df72014-03-11 09:06:29 -07005212 if (stream == AUDIO_STREAM_VOICE_CALL ||
5213 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005214 float voiceVolume;
5215 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005216 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005217 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005218 } else {
5219 voiceVolume = 1.0;
5220 }
5221
Eric Laurent18fba842016-03-31 14:41:26 -07005222 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005223 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5224 mLastVoiceVolume = voiceVolume;
5225 }
5226 }
5227
5228 return NO_ERROR;
5229}
5230
Eric Laurentc75307b2015-03-17 15:29:32 -07005231void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5232 audio_devices_t device,
5233 int delayMs,
5234 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005235{
Eric Laurentc75307b2015-03-17 15:29:32 -07005236 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005237
Eric Laurent794fde22016-03-11 09:50:45 -08005238 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005239 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005240 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005241 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005242 device,
5243 delayMs,
5244 force);
5245 }
5246}
5247
Eric Laurente0720872014-03-11 09:30:41 -07005248void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005249 bool on,
5250 const sp<AudioOutputDescriptor>& outputDesc,
5251 int delayMs,
5252 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005253{
Eric Laurent72249d52015-06-08 11:12:15 -07005254 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5255 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005256 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005257 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005258 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005259 }
5260 }
5261}
5262
Eric Laurente0720872014-03-11 09:30:41 -07005263void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005264 bool on,
5265 const sp<AudioOutputDescriptor>& outputDesc,
5266 int delayMs,
5267 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005268{
Eric Laurente552edb2014-03-10 17:42:56 -07005269 if (device == AUDIO_DEVICE_NONE) {
5270 device = outputDesc->device();
5271 }
5272
Eric Laurentc75307b2015-03-17 15:29:32 -07005273 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5274 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005275
5276 if (on) {
5277 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005278 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005279 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005280 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005281 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005282 }
5283 }
5284 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5285 outputDesc->mMuteCount[stream]++;
5286 } else {
5287 if (outputDesc->mMuteCount[stream] == 0) {
5288 ALOGV("setStreamMute() unmuting non muted stream!");
5289 return;
5290 }
5291 if (--outputDesc->mMuteCount[stream] == 0) {
5292 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005293 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005294 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005295 device,
5296 delayMs);
5297 }
5298 }
5299}
5300
Eric Laurente0720872014-03-11 09:30:41 -07005301void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005302 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005303{
Eric Laurent87ffa392015-05-22 10:32:38 -07005304 if(!hasPrimaryOutput()) {
5305 return;
5306 }
5307
Eric Laurente552edb2014-03-10 17:42:56 -07005308 // if the stream pertains to sonification strategy and we are in call we must
5309 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5310 // in the device used for phone strategy and play the tone if the selected device does not
5311 // interfere with the device used for phone strategy
5312 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5313 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005314 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005315 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5316 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005317 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005318 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5319 stream, starting, outputDesc->mDevice, stateChange);
5320 if (outputDesc->mRefCount[stream]) {
5321 int muteCount = 1;
5322 if (stateChange) {
5323 muteCount = outputDesc->mRefCount[stream];
5324 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005325 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005326 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5327 for (int i = 0; i < muteCount; i++) {
5328 setStreamMute(stream, starting, mPrimaryOutput);
5329 }
5330 } else {
5331 ALOGV("handleIncallSonification() high visibility");
5332 if (outputDesc->device() &
5333 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5334 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5335 for (int i = 0; i < muteCount; i++) {
5336 setStreamMute(stream, starting, mPrimaryOutput);
5337 }
5338 }
5339 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005340 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5341 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005342 } else {
5343 mpClientInterface->stopTone();
5344 }
5345 }
5346 }
5347 }
5348}
5349
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005350audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5351{
5352 // flags to stream type mapping
5353 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5354 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5355 }
5356 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5357 return AUDIO_STREAM_BLUETOOTH_SCO;
5358 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005359 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5360 return AUDIO_STREAM_TTS;
5361 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005362
5363 // usage to stream type mapping
5364 switch (attr->usage) {
5365 case AUDIO_USAGE_MEDIA:
5366 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005367 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005368 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5369 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005370 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5371 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005372 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5373 return AUDIO_STREAM_SYSTEM;
5374 case AUDIO_USAGE_VOICE_COMMUNICATION:
5375 return AUDIO_STREAM_VOICE_CALL;
5376
5377 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5378 return AUDIO_STREAM_DTMF;
5379
5380 case AUDIO_USAGE_ALARM:
5381 return AUDIO_STREAM_ALARM;
5382 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5383 return AUDIO_STREAM_RING;
5384
5385 case AUDIO_USAGE_NOTIFICATION:
5386 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5387 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5388 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5389 case AUDIO_USAGE_NOTIFICATION_EVENT:
5390 return AUDIO_STREAM_NOTIFICATION;
5391
5392 case AUDIO_USAGE_UNKNOWN:
5393 default:
5394 return AUDIO_STREAM_MUSIC;
5395 }
5396}
Eric Laurente83b55d2014-11-14 10:06:21 -08005397
François Gaffie53615e22015-03-19 09:24:12 +01005398bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5399{
Eric Laurente83b55d2014-11-14 10:06:21 -08005400 // has flags that map to a strategy?
5401 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5402 return true;
5403 }
5404
5405 // has known usage?
5406 switch (paa->usage) {
5407 case AUDIO_USAGE_UNKNOWN:
5408 case AUDIO_USAGE_MEDIA:
5409 case AUDIO_USAGE_VOICE_COMMUNICATION:
5410 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5411 case AUDIO_USAGE_ALARM:
5412 case AUDIO_USAGE_NOTIFICATION:
5413 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5414 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5415 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5416 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5417 case AUDIO_USAGE_NOTIFICATION_EVENT:
5418 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5419 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5420 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5421 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005422 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005423 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005424 break;
5425 default:
5426 return false;
5427 }
5428 return true;
5429}
5430
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005431bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005432 routing_strategy strategy, uint32_t inPastMs,
5433 nsecs_t sysTime) const
5434{
5435 if ((sysTime == 0) && (inPastMs != 0)) {
5436 sysTime = systemTime();
5437 }
Eric Laurent794fde22016-03-11 09:50:45 -08005438 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005439 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5440 (NUM_STRATEGIES == strategy)) &&
5441 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5442 return true;
5443 }
5444 }
5445 return false;
5446}
5447
François Gaffie2110e042015-03-24 08:41:51 +01005448audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5449{
5450 return mEngine->getForceUse(usage);
5451}
5452
5453bool AudioPolicyManager::isInCall()
5454{
5455 return isStateInCall(mEngine->getPhoneState());
5456}
5457
5458bool AudioPolicyManager::isStateInCall(int state)
5459{
5460 return is_state_in_call(state);
5461}
5462
Eric Laurentd60560a2015-04-10 11:31:20 -07005463void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5464{
5465 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5466 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5467 if (sourceDesc->mDevice->equals(deviceDesc)) {
5468 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5469 stopAudioSource(sourceDesc->getHandle());
5470 }
5471 }
5472
5473 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5474 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5475 bool release = false;
5476 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5477 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5478 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5479 source->ext.device.type == deviceDesc->type()) {
5480 release = true;
5481 }
5482 }
5483 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5484 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5485 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5486 sink->ext.device.type == deviceDesc->type()) {
5487 release = true;
5488 }
5489 }
5490 if (release) {
5491 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5492 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5493 }
5494 }
5495}
5496
Phil Burk09bc4612016-02-24 15:58:15 -08005497// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005498void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5499 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005500 // TODO Set this based on Config properties.
5501 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005502
5503 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5504 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005505 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005506
5507 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005508 bool supportsAC3 = false;
5509 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005510 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005511 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005512 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005513 switch (format) {
5514 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005515 supportsAC3 = true;
5516 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005517 case AUDIO_FORMAT_E_AC3:
5518 case AUDIO_FORMAT_DTS:
5519 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005520 // If ALWAYS, remove all other surround formats here since we will add them later.
5521 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5522 formats.removeAt(formatIndex);
5523 formatIndex--;
5524 }
Phil Burk07ac1142016-03-25 13:39:29 -07005525 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005526 break;
5527 case AUDIO_FORMAT_IEC61937:
5528 supportsIEC61937 = true;
5529 break;
5530 default:
5531 break;
5532 }
5533 }
Phil Burk09bc4612016-02-24 15:58:15 -08005534
5535 // Modify formats based on surround preferences.
5536 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005537 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5538 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5539 // Remove surround sound related formats.
5540 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5541 audio_format_t format = formats[formatIndex];
5542 switch(format) {
5543 case AUDIO_FORMAT_AC3:
5544 case AUDIO_FORMAT_E_AC3:
5545 case AUDIO_FORMAT_DTS:
5546 case AUDIO_FORMAT_DTS_HD:
5547 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005548 formats.removeAt(formatIndex);
5549 break;
5550 default:
5551 formatIndex++; // keep it
5552 break;
5553 }
Phil Burk09bc4612016-02-24 15:58:15 -08005554 }
Phil Burk07ac1142016-03-25 13:39:29 -07005555 supportsAC3 = false;
5556 supportsOtherSurround = false;
5557 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005558 }
Phil Burk07ac1142016-03-25 13:39:29 -07005559 } else { // AUTO or ALWAYS
5560 // Most TVs support AC3 even if they do not report it in the EDID.
5561 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5562 && !supportsAC3) {
5563 formats.add(AUDIO_FORMAT_AC3);
5564 supportsAC3 = true;
5565 }
5566
5567 // If ALWAYS, add support for raw surround formats if all are missing.
5568 // This assumes that if any of these formats are reported by the HAL
5569 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005570 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005571 formats.add(AUDIO_FORMAT_E_AC3);
5572 formats.add(AUDIO_FORMAT_DTS);
5573 formats.add(AUDIO_FORMAT_DTS_HD);
5574 supportsOtherSurround = true;
5575 }
5576
5577 // Add support for IEC61937 if any raw surround supported.
5578 // The HAL could do this but add it here, just in case.
5579 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5580 formats.add(AUDIO_FORMAT_IEC61937);
5581 supportsIEC61937 = true;
5582 }
Phil Burk09bc4612016-02-24 15:58:15 -08005583 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005584}
5585
5586// Modify the list of channel masks supported.
5587void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5588 ChannelsVector &channelMasks = *channelMasksPtr;
5589 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5590 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5591
5592 // If NEVER, then remove support for channelMasks > stereo.
5593 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5594 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5595 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5596 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5597 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5598 channelMasks.removeAt(maskIndex);
5599 } else {
5600 maskIndex++;
5601 }
5602 }
5603 // If ALWAYS, then make sure we at least support 5.1
5604 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5605 bool supports5dot1 = false;
5606 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005607 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005608 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5609 supports5dot1 = true;
5610 break;
5611 }
5612 }
5613 // If not then add 5.1 support.
5614 if (!supports5dot1) {
5615 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5616 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5617 }
Phil Burk09bc4612016-02-24 15:58:15 -08005618 }
5619}
5620
Phil Burk00eeb322016-03-31 12:41:00 -07005621void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5622 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005623 AudioProfileVector &profiles)
5624{
5625 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005626
François Gaffie112b0af2015-11-19 16:13:25 +01005627 // Format MUST be checked first to update the list of AudioProfile
5628 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005629 reply = mpClientInterface->getParameters(
5630 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005631 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005632 AudioParameter repliedParameters(reply);
5633 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005634 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005635 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5636 return;
5637 }
Phil Burk09bc4612016-02-24 15:58:15 -08005638 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005639 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005640 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005641 }
Phil Burk09bc4612016-02-24 15:58:15 -08005642 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005643 }
François Gaffie112b0af2015-11-19 16:13:25 +01005644
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005645 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005646 ChannelsVector channelMasks;
5647 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005648 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005649 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005650
5651 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005652 reply = mpClientInterface->getParameters(
5653 ioHandle,
5654 requestedParameters.toString() + ";" +
5655 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005656 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005657 AudioParameter repliedParameters(reply);
5658 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005659 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005660 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005661 }
5662 }
5663 if (profiles.hasDynamicChannelsFor(format)) {
5664 reply = mpClientInterface->getParameters(ioHandle,
5665 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005666 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005667 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005668 AudioParameter repliedParameters(reply);
5669 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005670 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005671 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005672 if (device == AUDIO_DEVICE_OUT_HDMI) {
5673 filterSurroundChannelMasks(&channelMasks);
5674 }
François Gaffie112b0af2015-11-19 16:13:25 +01005675 }
5676 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005677 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005678 }
5679}
Eric Laurentd60560a2015-04-10 11:31:20 -07005680
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005681} // namespace android