blob: a54a71f13344677d01081250bff4706dc0a032dc [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
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001269 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1270 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1271 setStrategyMute(STRATEGY_SONIFICATION, true, outputDesc);
1272 }
1273
Eric Laurente552edb2014-03-10 17:42:56 -07001274 return NO_ERROR;
1275}
1276
1277
Eric Laurente0720872014-03-11 09:30:41 -07001278status_t AudioPolicyManager::stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -07001279 audio_stream_type_t stream,
Eric Laurente83b55d2014-11-14 10:06:21 -08001280 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07001281{
1282 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
1283 ssize_t index = mOutputs.indexOfKey(output);
1284 if (index < 0) {
1285 ALOGW("stopOutput() unknown output %d", output);
1286 return BAD_VALUE;
1287 }
1288
Eric Laurentc75307b2015-03-17 15:29:32 -07001289 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001290
Eric Laurentc75307b2015-03-17 15:29:32 -07001291 if (outputDesc->mRefCount[stream] == 1) {
1292 // Automatically disable the remote submix input when output is stopped on a
1293 // re routing mix of type MIX_TYPE_RECORDERS
1294 if (audio_is_remote_submix_device(outputDesc->mDevice) &&
1295 outputDesc->mPolicyMix != NULL &&
1296 outputDesc->mPolicyMix->mMixType == MIX_TYPE_RECORDERS) {
1297 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
1298 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001299 outputDesc->mPolicyMix->mDeviceAddress,
Eric Laurentc75307b2015-03-17 15:29:32 -07001300 "remote-submix");
1301 }
1302 }
1303
1304 // Routing?
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001305 bool forceDeviceUpdate = false;
Eric Laurentc75307b2015-03-17 15:29:32 -07001306 if (outputDesc->mRefCount[stream] > 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001307 int activityCount = mOutputRoutes.decRouteActivity(session);
1308 forceDeviceUpdate = (mOutputRoutes.hasRoute(session) && (activityCount == 0));
1309
1310 if (forceDeviceUpdate) {
1311 checkStrategyRoute(getStrategy(stream), AUDIO_IO_HANDLE_NONE);
1312 }
Eric Laurentc75307b2015-03-17 15:29:32 -07001313 }
1314
Eric Laurent3974e3b2017-12-07 17:58:43 -08001315 status_t status = stopSource(outputDesc, stream, forceDeviceUpdate);
1316
Eric Laurent733ce942017-12-07 12:18:25 -08001317 if (status == NO_ERROR ) {
1318 outputDesc->stop();
Eric Laurent3974e3b2017-12-07 17:58:43 -08001319 }
1320 return status;
Eric Laurentc75307b2015-03-17 15:29:32 -07001321}
1322
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07001323status_t AudioPolicyManager::stopSource(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001324 audio_stream_type_t stream,
1325 bool forceDeviceUpdate)
Eric Laurentc75307b2015-03-17 15:29:32 -07001326{
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07001327 // always handle stream stop, check which stream type is stopping
1328 handleEventForBeacon(stream == AUDIO_STREAM_TTS ? STOPPING_BEACON : STOPPING_OUTPUT);
1329
Eric Laurente552edb2014-03-10 17:42:56 -07001330 // handle special case for sonification while in call
1331 if (isInCall()) {
1332 handleIncallSonification(stream, false, false);
1333 }
1334
1335 if (outputDesc->mRefCount[stream] > 0) {
1336 // decrement usage count of this stream on the output
1337 outputDesc->changeRefCount(stream, -1);
Paul McLeanaa981192015-03-21 09:55:15 -07001338
Eric Laurente552edb2014-03-10 17:42:56 -07001339 // store time at which the stream was stopped - see isStreamActive()
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001340 if (outputDesc->mRefCount[stream] == 0 || forceDeviceUpdate) {
Eric Laurente552edb2014-03-10 17:42:56 -07001341 outputDesc->mStopTime[stream] = systemTime();
Eric Laurentc75307b2015-03-17 15:29:32 -07001342 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
Eric Laurente552edb2014-03-10 17:42:56 -07001343 // delay the device switch by twice the latency because stopOutput() is executed when
1344 // the track stop() command is received and at that time the audio track buffer can
1345 // still contain data that needs to be drained. The latency only covers the audio HAL
1346 // and kernel buffers. Also the latency does not always include additional delay in the
1347 // audio path (audio DSP, CODEC ...)
Eric Laurentc75307b2015-03-17 15:29:32 -07001348 setOutputDevice(outputDesc, newDevice, false, outputDesc->latency()*2);
Eric Laurente552edb2014-03-10 17:42:56 -07001349
1350 // force restoring the device selection on other active outputs if it differs from the
1351 // one being selected for this output
Eric Laurent57de36c2016-09-28 16:59:11 -07001352 uint32_t delayMs = outputDesc->latency()*2;
Eric Laurente552edb2014-03-10 17:42:56 -07001353 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07001354 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07001355 if (desc != outputDesc &&
Eric Laurente552edb2014-03-10 17:42:56 -07001356 desc->isActive() &&
1357 outputDesc->sharesHwModuleWith(desc) &&
1358 (newDevice != desc->device())) {
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001359 audio_devices_t newDevice2 = getNewOutputDevice(desc, false /*fromCache*/);
1360 bool force = desc->device() != newDevice2;
Eric Laurentc75307b2015-03-17 15:29:32 -07001361 setOutputDevice(desc,
Haynes Mathew George11c499a2016-08-26 12:08:25 -07001362 newDevice2,
1363 force,
Eric Laurent57de36c2016-09-28 16:59:11 -07001364 delayMs);
1365 // re-apply device specific volume if not done by setOutputDevice()
1366 if (!force) {
1367 applyStreamVolumes(desc, newDevice2, delayMs);
1368 }
Eric Laurente552edb2014-03-10 17:42:56 -07001369 }
1370 }
1371 // update the outputs if stopping one with a stream that can affect notification routing
1372 handleNotificationRoutingForStream(stream);
1373 }
Tomoharu Kasaharab62d78b2018-01-18 20:55:02 +09001374
1375 if (stream == AUDIO_STREAM_ENFORCED_AUDIBLE &&
1376 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
1377 setStrategyMute(STRATEGY_SONIFICATION, false, outputDesc);
1378 }
1379
Eric Laurent36829f92017-04-07 19:04:42 -07001380 if (stream == AUDIO_STREAM_MUSIC) {
1381 selectOutputForMusicEffects();
1382 }
Eric Laurente552edb2014-03-10 17:42:56 -07001383 return NO_ERROR;
1384 } else {
Eric Laurentc75307b2015-03-17 15:29:32 -07001385 ALOGW("stopOutput() refcount is already 0");
Eric Laurente552edb2014-03-10 17:42:56 -07001386 return INVALID_OPERATION;
1387 }
1388}
1389
Eric Laurente83b55d2014-11-14 10:06:21 -08001390void AudioPolicyManager::releaseOutput(audio_io_handle_t output,
Eric Laurentcaf7f482014-11-25 17:50:47 -08001391 audio_stream_type_t stream __unused,
1392 audio_session_t session __unused)
Eric Laurente552edb2014-03-10 17:42:56 -07001393{
1394 ALOGV("releaseOutput() %d", output);
1395 ssize_t index = mOutputs.indexOfKey(output);
1396 if (index < 0) {
1397 ALOGW("releaseOutput() releasing unknown output %d", output);
1398 return;
1399 }
1400
Paul McLeanaa981192015-03-21 09:55:15 -07001401 // Routing
1402 mOutputRoutes.removeRoute(session);
1403
Eric Laurentc75307b2015-03-17 15:29:32 -07001404 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(index);
Eric Laurent3b73df72014-03-11 09:06:29 -07001405 if (desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) {
Eric Laurente552edb2014-03-10 17:42:56 -07001406 if (desc->mDirectOpenCount <= 0) {
1407 ALOGW("releaseOutput() invalid open count %d for output %d",
1408 desc->mDirectOpenCount, output);
1409 return;
1410 }
1411 if (--desc->mDirectOpenCount == 0) {
1412 closeOutput(output);
Eric Laurentb52c1522014-05-20 11:27:36 -07001413 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07001414 }
1415 }
1416}
1417
1418
Eric Laurentcaf7f482014-11-25 17:50:47 -08001419status_t AudioPolicyManager::getInputForAttr(const audio_attributes_t *attr,
1420 audio_io_handle_t *input,
1421 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001422 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001423 const audio_config_base_t *config,
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001424 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -07001425 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -08001426 input_type_t *inputType,
1427 audio_port_handle_t *portId)
Eric Laurente552edb2014-03-10 17:42:56 -07001428{
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001429 ALOGV("getInputForAttr() source %d, sampling rate %d, format %#x, channel mask %#x,"
Eric Laurentcaf7f482014-11-25 17:50:47 -08001430 "session %d, flags %#x",
Eric Laurent20b9ef02016-12-05 11:03:16 -08001431 attr->source, config->sample_rate, config->format, config->channel_mask, session, flags);
Eric Laurente552edb2014-03-10 17:42:56 -07001432
Eric Laurentad2e7b92017-09-14 20:06:42 -07001433 status_t status = NO_ERROR;
Eric Laurent275e8e92014-11-30 15:14:47 -08001434 // handle legacy remote submix case where the address was not always specified
1435 String8 address = String8("");
Eric Laurentc447ded2015-01-06 08:47:05 -08001436 audio_source_t halInputSource;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001437 audio_source_t inputSource = attr->source;
Eric Laurentc722f302014-12-10 11:21:49 -08001438 AudioMix *policyMix = NULL;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001439 DeviceVector inputDevices;
Eric Laurent20b9ef02016-12-05 11:03:16 -08001440
Eric Laurentfe231122017-11-17 17:48:06 -08001441 if (inputSource == AUDIO_SOURCE_DEFAULT) {
1442 inputSource = AUDIO_SOURCE_MIC;
1443 }
1444
Paul McLean466dc8e2015-04-17 13:15:36 -06001445 // Explicit routing?
1446 sp<DeviceDescriptor> deviceDesc;
Eric Laurent2ac76942017-06-22 17:17:09 -07001447 if (*selectedDeviceId != AUDIO_PORT_HANDLE_NONE) {
jiabinc0c831a2018-01-29 17:55:15 -08001448 deviceDesc = mAvailableInputDevices.getDeviceFromId(*selectedDeviceId);
Paul McLean466dc8e2015-04-17 13:15:36 -06001449 }
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001450 mInputRoutes.addRoute(session, SessionRoute::STREAM_TYPE_NA, inputSource, deviceDesc, uid);
Paul McLean466dc8e2015-04-17 13:15:36 -06001451
Eric Laurentad2e7b92017-09-14 20:06:42 -07001452 // special case for mmap capture: if an input IO handle is specified, we reuse this input if
1453 // possible
1454 if ((flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) == AUDIO_INPUT_FLAG_MMAP_NOIRQ &&
1455 *input != AUDIO_IO_HANDLE_NONE) {
1456 ssize_t index = mInputs.indexOfKey(*input);
1457 if (index < 0) {
1458 ALOGW("getInputForAttr() unknown MMAP input %d", *input);
1459 status = BAD_VALUE;
1460 goto error;
1461 }
1462 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
1463 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1464 if (audioSession == 0) {
1465 ALOGW("getInputForAttr() unknown session %d on input %d", session, *input);
1466 status = BAD_VALUE;
1467 goto error;
1468 }
1469 // For MMAP mode, the first call to getInputForAttr() is made on behalf of audioflinger.
1470 // The second call is for the first active client and sets the UID. Any further call
Eric Laurenta2f478c2018-04-10 19:09:40 -07001471 // corresponds to a new client and is only permitted from the same UID.
1472 // If the first UID is silenced, allow a new UID connection and replace with new UID
Eric Laurentad2e7b92017-09-14 20:06:42 -07001473 if (audioSession->openCount() == 1) {
1474 audioSession->setUid(uid);
1475 } else if (audioSession->uid() != uid) {
Eric Laurenta2f478c2018-04-10 19:09:40 -07001476 if (!audioSession->isSilenced()) {
1477 ALOGW("getInputForAttr() bad uid %d for session %d uid %d",
1478 uid, session, audioSession->uid());
1479 status = INVALID_OPERATION;
1480 goto error;
1481 }
1482 audioSession->setUid(uid);
1483 audioSession->setSilenced(false);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001484 }
1485 audioSession->changeOpenCount(1);
1486 *inputType = API_INPUT_LEGACY;
1487 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1488 *portId = AudioPort::getNextUniqueId();
1489 }
1490 inputDevices = mAvailableInputDevices.getDevicesFromType(inputDesc->mDevice);
1491 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1492 : AUDIO_PORT_HANDLE_NONE;
1493 ALOGI("%s reusing MMAP input %d for session %d", __FUNCTION__, *input, session);
1494
1495 return NO_ERROR;
1496 }
1497
1498 *input = AUDIO_IO_HANDLE_NONE;
1499 *inputType = API_INPUT_INVALID;
1500
Eric Laurentad2e7b92017-09-14 20:06:42 -07001501 halInputSource = inputSource;
1502
1503 // TODO: check for existing client for this port ID
1504 if (*portId == AUDIO_PORT_HANDLE_NONE) {
1505 *portId = AudioPort::getNextUniqueId();
1506 }
1507
1508 audio_devices_t device;
1509
Eric Laurentc447ded2015-01-06 08:47:05 -08001510 if (inputSource == AUDIO_SOURCE_REMOTE_SUBMIX &&
Eric Laurent275e8e92014-11-30 15:14:47 -08001511 strncmp(attr->tags, "addr=", strlen("addr=")) == 0) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001512 status = mPolicyMixes.getInputMixForAttr(*attr, &policyMix);
1513 if (status != NO_ERROR) {
1514 goto error;
François Gaffie036e1e92015-03-19 10:16:24 +01001515 }
1516 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
Eric Laurent275e8e92014-11-30 15:14:47 -08001517 device = AUDIO_DEVICE_IN_REMOTE_SUBMIX;
1518 address = String8(attr->tags + strlen("addr="));
Eric Laurent275e8e92014-11-30 15:14:47 -08001519 } else {
Eric Laurentc447ded2015-01-06 08:47:05 -08001520 device = getDeviceAndMixForInputSource(inputSource, &policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08001521 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc447ded2015-01-06 08:47:05 -08001522 ALOGW("getInputForAttr() could not find device for source %d", inputSource);
Eric Laurentad2e7b92017-09-14 20:06:42 -07001523 status = BAD_VALUE;
1524 goto error;
Eric Laurent275e8e92014-11-30 15:14:47 -08001525 }
Eric Laurentc722f302014-12-10 11:21:49 -08001526 if (policyMix != NULL) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08001527 address = policyMix->mDeviceAddress;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001528 if (policyMix->mMixType == MIX_TYPE_RECORDERS) {
1529 // there is an external policy, but this input is attached to a mix of recorders,
1530 // meaning it receives audio injected into the framework, so the recorder doesn't
1531 // know about it and is therefore considered "legacy"
1532 *inputType = API_INPUT_LEGACY;
1533 } else {
1534 // recording a mix of players defined by an external policy, we're rerouting for
1535 // an external policy
1536 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1537 }
Eric Laurentc722f302014-12-10 11:21:49 -08001538 } else if (audio_is_remote_submix_device(device)) {
1539 address = String8("0");
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001540 *inputType = API_INPUT_MIX_CAPTURE;
Eric Laurent82db2692015-08-07 13:59:42 -07001541 } else if (device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
1542 *inputType = API_INPUT_TELEPHONY_RX;
Jean-Michel Trivi97bb33f2014-12-12 16:23:43 -08001543 } else {
1544 *inputType = API_INPUT_LEGACY;
Eric Laurentc722f302014-12-10 11:21:49 -08001545 }
Ravi Kumar Alamandab367f5b2015-08-25 08:21:37 -07001546
Eric Laurent599c7582015-12-07 18:05:55 -08001547 }
1548
1549 *input = getInputForDevice(device, address, session, uid, inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001550 config, flags,
Eric Laurent599c7582015-12-07 18:05:55 -08001551 policyMix);
1552 if (*input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentad2e7b92017-09-14 20:06:42 -07001553 status = INVALID_OPERATION;
1554 goto error;
Eric Laurent599c7582015-12-07 18:05:55 -08001555 }
Eric Laurent20b9ef02016-12-05 11:03:16 -08001556
Eric Laurentad2e7b92017-09-14 20:06:42 -07001557 inputDevices = mAvailableInputDevices.getDevicesFromType(device);
Eric Laurent2ac76942017-06-22 17:17:09 -07001558 *selectedDeviceId = inputDevices.size() > 0 ? inputDevices.itemAt(0)->getId()
1559 : AUDIO_PORT_HANDLE_NONE;
1560
1561 ALOGV("getInputForAttr() returns input %d type %d selectedDeviceId %d",
1562 *input, *inputType, *selectedDeviceId);
1563
Eric Laurent599c7582015-12-07 18:05:55 -08001564 return NO_ERROR;
Eric Laurentad2e7b92017-09-14 20:06:42 -07001565
1566error:
1567 mInputRoutes.removeRoute(session);
1568 return status;
Eric Laurent599c7582015-12-07 18:05:55 -08001569}
1570
1571
1572audio_io_handle_t AudioPolicyManager::getInputForDevice(audio_devices_t device,
1573 String8 address,
1574 audio_session_t session,
1575 uid_t uid,
1576 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -08001577 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -08001578 audio_input_flags_t flags,
1579 AudioMix *policyMix)
1580{
1581 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
1582 audio_source_t halInputSource = inputSource;
1583 bool isSoundTrigger = false;
1584
1585 if (inputSource == AUDIO_SOURCE_HOTWORD) {
1586 ssize_t index = mSoundTriggerSessions.indexOfKey(session);
1587 if (index >= 0) {
1588 input = mSoundTriggerSessions.valueFor(session);
1589 isSoundTrigger = true;
1590 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_HW_HOTWORD);
1591 ALOGV("SoundTrigger capture on session %d input %d", session, input);
1592 } else {
1593 halInputSource = AUDIO_SOURCE_VOICE_RECOGNITION;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001594 }
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001595 } else if (inputSource == AUDIO_SOURCE_VOICE_COMMUNICATION &&
Eric Laurentfe231122017-11-17 17:48:06 -08001596 audio_is_linear_pcm(config->format)) {
Haynes Mathew George851d3ff2017-06-19 20:01:57 -07001597 flags = (audio_input_flags_t)(flags | AUDIO_INPUT_FLAG_VOIP_TX);
Eric Laurent5dbe4712014-09-19 19:04:57 -07001598 }
1599
Andy Hungf129b032015-04-07 13:45:50 -07001600 // find a compatible input profile (not necessarily identical in parameters)
1601 sp<IOProfile> profile;
Eric Laurentfe231122017-11-17 17:48:06 -08001602 // sampling rate and flags may be updated by getInputProfile
1603 uint32_t profileSamplingRate = (config->sample_rate == 0) ?
1604 SAMPLE_RATE_HZ_DEFAULT : config->sample_rate;
Glenn Kasten730b9262018-03-29 15:01:26 -07001605 audio_format_t profileFormat;
Eric Laurentfe231122017-11-17 17:48:06 -08001606 audio_channel_mask_t profileChannelMask = config->channel_mask;
Andy Hungf129b032015-04-07 13:45:50 -07001607 audio_input_flags_t profileFlags = flags;
1608 for (;;) {
Glenn Kasten730b9262018-03-29 15:01:26 -07001609 profileFormat = config->format; // reset each time through loop, in case it is updated
Eric Laurent275e8e92014-11-30 15:14:47 -08001610 profile = getInputProfile(device, address,
Andy Hungf129b032015-04-07 13:45:50 -07001611 profileSamplingRate, profileFormat, profileChannelMask,
1612 profileFlags);
1613 if (profile != 0) {
1614 break; // success
Eric Laurent05067782016-06-01 18:27:28 -07001615 } else if (profileFlags & AUDIO_INPUT_FLAG_RAW) {
1616 profileFlags = (audio_input_flags_t) (profileFlags & ~AUDIO_INPUT_FLAG_RAW); // retry
Andy Hungf129b032015-04-07 13:45:50 -07001617 } else if (profileFlags != AUDIO_INPUT_FLAG_NONE) {
1618 profileFlags = AUDIO_INPUT_FLAG_NONE; // retry
1619 } else { // fail
Glenn Kastenfaa10a62017-05-25 15:52:05 -07001620 ALOGW("getInputForDevice() could not find profile for device 0x%X, "
Eric Laurentfe231122017-11-17 17:48:06 -08001621 "sampling rate %u, format %#x, channel mask 0x%X, flags %#x",
1622 device, config->sample_rate, config->format, config->channel_mask, flags);
Eric Laurent599c7582015-12-07 18:05:55 -08001623 return input;
Eric Laurent5dbe4712014-09-19 19:04:57 -07001624 }
Eric Laurente552edb2014-03-10 17:42:56 -07001625 }
Glenn Kasten05ddca52016-02-11 08:17:12 -08001626 // Pick input sampling rate if not specified by client
Eric Laurentfe231122017-11-17 17:48:06 -08001627 uint32_t samplingRate = config->sample_rate;
Glenn Kasten05ddca52016-02-11 08:17:12 -08001628 if (samplingRate == 0) {
1629 samplingRate = profileSamplingRate;
1630 }
Eric Laurente552edb2014-03-10 17:42:56 -07001631
Eric Laurent322b4d22015-04-03 15:57:54 -07001632 if (profile->getModuleHandle() == 0) {
1633 ALOGE("getInputForAttr(): HW module %s not opened", profile->getModuleName());
Eric Laurent599c7582015-12-07 18:05:55 -08001634 return input;
Eric Laurentcf2c0212014-07-25 16:20:43 -07001635 }
1636
Eric Laurent599c7582015-12-07 18:05:55 -08001637 sp<AudioSession> audioSession = new AudioSession(session,
Eric Laurentfe231122017-11-17 17:48:06 -08001638 inputSource,
1639 config->format,
1640 samplingRate,
1641 config->channel_mask,
1642 flags,
1643 uid,
1644 isSoundTrigger,
1645 policyMix, mpClientInterface);
Eric Laurent599c7582015-12-07 18:05:55 -08001646
Eric Laurent74708e72017-04-07 17:13:42 -07001647// FIXME: disable concurrent capture until UI is ready
1648#if 0
Eric Laurent599c7582015-12-07 18:05:55 -08001649 // reuse an open input if possible
Eric Laurent555530a2017-02-07 18:17:24 -08001650 sp<AudioInputDescriptor> reusedInputDesc;
Eric Laurent599c7582015-12-07 18:05:55 -08001651 for (size_t i = 0; i < mInputs.size(); i++) {
1652 sp<AudioInputDescriptor> desc = mInputs.valueAt(i);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001653 // reuse input if:
1654 // - it shares the same profile
1655 // AND
1656 // - it is not a reroute submix input
1657 // AND
1658 // - it is: not used for sound trigger
1659 // OR
1660 // used for sound trigger and all clients use the same session ID
1661 //
1662 if ((profile == desc->mProfile) &&
1663 (isSoundTrigger == desc->isSoundTrigger()) &&
1664 !is_virtual_input_device(device)) {
Eric Laurent599c7582015-12-07 18:05:55 -08001665
1666 sp<AudioSession> as = desc->getAudioSession(session);
1667 if (as != 0) {
1668 // do not allow unmatching properties on same session
1669 if (as->matches(audioSession)) {
1670 as->changeOpenCount(1);
1671 } else {
1672 ALOGW("getInputForDevice() record with different attributes"
1673 " exists for session %d", session);
Eric Laurent555530a2017-02-07 18:17:24 -08001674 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001675 }
Eric Laurentfb66dd92016-01-28 18:32:03 -08001676 } else if (isSoundTrigger) {
Eric Laurent555530a2017-02-07 18:17:24 -08001677 continue;
Eric Laurentfb66dd92016-01-28 18:32:03 -08001678 }
Eric Laurentbb948092017-01-23 18:33:30 -08001679
Eric Laurent555530a2017-02-07 18:17:24 -08001680 // Reuse the already opened input stream on this profile if:
1681 // - the new capture source is background OR
1682 // - the path requested configurations match OR
1683 // - the new source priority is less than the highest source priority on this input
1684 // If the input stream cannot be reused, close it before opening a new stream
1685 // on the same profile for the new client so that the requested path configuration
1686 // can be selected.
1687 if (!isConcurrentSource(inputSource) &&
Eric Laurentbb948092017-01-23 18:33:30 -08001688 ((desc->mSamplingRate != samplingRate ||
Eric Laurentfe231122017-11-17 17:48:06 -08001689 desc->mChannelMask != config->channel_mask ||
1690 !audio_formats_match(desc->mFormat, config->format)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001691 (source_priority(desc->getHighestPrioritySource(false /*activeOnly*/)) <
Eric Laurentbb948092017-01-23 18:33:30 -08001692 source_priority(inputSource)))) {
Eric Laurent555530a2017-02-07 18:17:24 -08001693 reusedInputDesc = desc;
1694 continue;
Eric Laurent599c7582015-12-07 18:05:55 -08001695 } else {
1696 desc->addAudioSession(session, audioSession);
Eric Laurentfb66dd92016-01-28 18:32:03 -08001697 ALOGV("%s: reusing input %d", __FUNCTION__, mInputs.keyAt(i));
1698 return mInputs.keyAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08001699 }
Eric Laurent599c7582015-12-07 18:05:55 -08001700 }
1701 }
Eric Laurent599c7582015-12-07 18:05:55 -08001702
Eric Laurent555530a2017-02-07 18:17:24 -08001703 if (reusedInputDesc != 0) {
1704 AudioSessionCollection sessions = reusedInputDesc->getAudioSessions(false /*activeOnly*/);
1705 for (size_t j = 0; j < sessions.size(); j++) {
1706 audio_session_t currentSession = sessions.keyAt(j);
1707 stopInput(reusedInputDesc->mIoHandle, currentSession);
1708 releaseInput(reusedInputDesc->mIoHandle, currentSession);
1709 }
1710 }
Eric Laurent74708e72017-04-07 17:13:42 -07001711#endif
Eric Laurent555530a2017-02-07 18:17:24 -08001712
Eric Laurent3974e3b2017-12-07 17:58:43 -08001713 if (!profile->canOpenNewIo()) {
1714 return AUDIO_IO_HANDLE_NONE;
1715 }
1716
Eric Laurentfe231122017-11-17 17:48:06 -08001717 sp<AudioInputDescriptor> inputDesc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07001718
Eric Laurentfe231122017-11-17 17:48:06 -08001719 audio_config_t lConfig = AUDIO_CONFIG_INITIALIZER;
1720 lConfig.sample_rate = profileSamplingRate;
1721 lConfig.channel_mask = profileChannelMask;
1722 lConfig.format = profileFormat;
Eric Laurente3014102017-05-03 11:15:43 -07001723
Eric Laurent53b810e2017-12-10 17:25:10 -08001724 if (address == "") {
1725 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(device);
1726 // the inputs vector must be of size >= 1, but we don't want to crash here
1727 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress : String8("");
1728 }
1729
Eric Laurentfe231122017-11-17 17:48:06 -08001730 status_t status = inputDesc->open(&lConfig, device, address,
1731 halInputSource, profileFlags, &input);
Eric Laurentcf2c0212014-07-25 16:20:43 -07001732
1733 // only accept input with the exact requested set of parameters
Eric Laurent599c7582015-12-07 18:05:55 -08001734 if (status != NO_ERROR || input == AUDIO_IO_HANDLE_NONE ||
Eric Laurentfe231122017-11-17 17:48:06 -08001735 (profileSamplingRate != lConfig.sample_rate) ||
1736 !audio_formats_match(profileFormat, lConfig.format) ||
1737 (profileChannelMask != lConfig.channel_mask)) {
1738 ALOGW("getInputForAttr() failed opening input: sampling rate %d"
Glenn Kasten49f36ba2017-12-06 13:02:02 -08001739 ", format %#x, channel mask %#x",
Eric Laurentfe231122017-11-17 17:48:06 -08001740 profileSamplingRate, profileFormat, profileChannelMask);
Eric Laurent599c7582015-12-07 18:05:55 -08001741 if (input != AUDIO_IO_HANDLE_NONE) {
Eric Laurentfe231122017-11-17 17:48:06 -08001742 inputDesc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07001743 }
Eric Laurent599c7582015-12-07 18:05:55 -08001744 return AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07001745 }
1746
Eric Laurentc722f302014-12-10 11:21:49 -08001747 inputDesc->mPolicyMix = policyMix;
Eric Laurent599c7582015-12-07 18:05:55 -08001748 inputDesc->addAudioSession(session, audioSession);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07001749
Eric Laurent599c7582015-12-07 18:05:55 -08001750 addInput(input, inputDesc);
Eric Laurentb52c1522014-05-20 11:27:36 -07001751 mpClientInterface->onAudioPortListUpdate();
Paul McLean466dc8e2015-04-17 13:15:36 -06001752
Eric Laurent599c7582015-12-07 18:05:55 -08001753 return input;
Eric Laurente552edb2014-03-10 17:42:56 -07001754}
1755
Eric Laurentbb948092017-01-23 18:33:30 -08001756//static
1757bool AudioPolicyManager::isConcurrentSource(audio_source_t source)
1758{
1759 return (source == AUDIO_SOURCE_HOTWORD) ||
1760 (source == AUDIO_SOURCE_VOICE_RECOGNITION) ||
1761 (source == AUDIO_SOURCE_FM_TUNER);
1762}
1763
Eric Laurentfb66dd92016-01-28 18:32:03 -08001764bool AudioPolicyManager::isConcurentCaptureAllowed(const sp<AudioInputDescriptor>& inputDesc,
1765 const sp<AudioSession>& audioSession)
1766{
1767 // Do not allow capture if an active voice call is using a software patch and
1768 // the call TX source device is on the same HW module.
1769 // FIXME: would be better to refine to only inputs whose profile connects to the
1770 // call TX device but this information is not in the audio patch
1771 if (mCallTxPatch != 0 &&
1772 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1773 return false;
1774 }
1775
1776 // starting concurrent capture is enabled if:
1777 // 1) capturing for re-routing
1778 // 2) capturing for HOTWORD source
1779 // 3) capturing for FM TUNER source
1780 // 3) All other active captures are either for re-routing or HOTWORD
1781
1782 if (is_virtual_input_device(inputDesc->mDevice) ||
Eric Laurentbb948092017-01-23 18:33:30 -08001783 isConcurrentSource(audioSession->inputSource())) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001784 return true;
1785 }
1786
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001787 for (const auto& activeInput : mInputs.getActiveInputs()) {
Eric Laurentbb948092017-01-23 18:33:30 -08001788 if (!isConcurrentSource(activeInput->inputSource(true)) &&
Eric Laurentfb66dd92016-01-28 18:32:03 -08001789 !is_virtual_input_device(activeInput->mDevice)) {
1790 return false;
1791 }
1792 }
1793
1794 return true;
1795}
1796
Chris Thornton2b864642017-06-27 21:26:07 -07001797// FIXME: remove when concurrent capture is ready. This is a hack to work around bug b/63083537.
1798bool AudioPolicyManager::soundTriggerSupportsConcurrentCapture() {
1799 if (!mHasComputedSoundTriggerSupportsConcurrentCapture) {
1800 bool soundTriggerSupportsConcurrentCapture = false;
1801 unsigned int numModules = 0;
1802 struct sound_trigger_module_descriptor* nModules = NULL;
1803
1804 status_t status = SoundTrigger::listModules(nModules, &numModules);
1805 if (status == NO_ERROR && numModules != 0) {
1806 nModules = (struct sound_trigger_module_descriptor*) calloc(
1807 numModules, sizeof(struct sound_trigger_module_descriptor));
1808 if (nModules == NULL) {
1809 // We failed to malloc the buffer, so just say no for now, and hope that we have more
1810 // ram the next time this function is called.
1811 ALOGE("Failed to allocate buffer for module descriptors");
1812 return false;
1813 }
1814
1815 status = SoundTrigger::listModules(nModules, &numModules);
1816 if (status == NO_ERROR) {
1817 soundTriggerSupportsConcurrentCapture = true;
1818 for (size_t i = 0; i < numModules; ++i) {
1819 soundTriggerSupportsConcurrentCapture &=
1820 nModules[i].properties.concurrent_capture;
1821 }
1822 }
1823 free(nModules);
1824 }
1825 mSoundTriggerSupportsConcurrentCapture = soundTriggerSupportsConcurrentCapture;
1826 mHasComputedSoundTriggerSupportsConcurrentCapture = true;
1827 }
1828 return mSoundTriggerSupportsConcurrentCapture;
1829}
1830
Eric Laurentfb66dd92016-01-28 18:32:03 -08001831
Eric Laurent4dc68062014-07-28 17:26:49 -07001832status_t AudioPolicyManager::startInput(audio_io_handle_t input,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001833 audio_session_t session,
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001834 bool silenced,
Eric Laurentfb66dd92016-01-28 18:32:03 -08001835 concurrency_type__mask_t *concurrency)
Eric Laurente552edb2014-03-10 17:42:56 -07001836{
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001837
1838 ALOGV("AudioPolicyManager::startInput(input:%d, session:%d, silenced:%d, concurrency:%d)",
1839 input, session, silenced, *concurrency);
1840
Eric Laurentfb66dd92016-01-28 18:32:03 -08001841 *concurrency = API_INPUT_CONCURRENCY_NONE;
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001842
Eric Laurente552edb2014-03-10 17:42:56 -07001843 ssize_t index = mInputs.indexOfKey(input);
1844 if (index < 0) {
1845 ALOGW("startInput() unknown input %d", input);
1846 return BAD_VALUE;
1847 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07001848 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07001849
Eric Laurent599c7582015-12-07 18:05:55 -08001850 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
1851 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07001852 ALOGW("startInput() unknown session %d on input %d", session, input);
1853 return BAD_VALUE;
1854 }
1855
Eric Laurent74708e72017-04-07 17:13:42 -07001856// FIXME: disable concurrent capture until UI is ready
1857#if 0
Eric Laurentfb66dd92016-01-28 18:32:03 -08001858 if (!isConcurentCaptureAllowed(inputDesc, audioSession)) {
1859 ALOGW("startInput(%d) failed: other input already started", input);
1860 return INVALID_OPERATION;
1861 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07001862
Eric Laurentfb66dd92016-01-28 18:32:03 -08001863 if (isInCall()) {
1864 *concurrency |= API_INPUT_CONCURRENCY_CALL;
1865 }
Eric Laurentf7c50102016-09-30 15:19:43 -07001866 if (mInputs.activeInputsCountOnDevices() != 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08001867 *concurrency |= API_INPUT_CONCURRENCY_CAPTURE;
Eric Laurente552edb2014-03-10 17:42:56 -07001868 }
Eric Laurent74708e72017-04-07 17:13:42 -07001869#else
1870 if (!is_virtual_input_device(inputDesc->mDevice)) {
1871 if (mCallTxPatch != 0 &&
1872 inputDesc->getModuleHandle() == mCallTxPatch->mPatch.sources[0].ext.device.hw_module) {
1873 ALOGW("startInput(%d) failed: call in progress", input);
1874 return INVALID_OPERATION;
1875 }
1876
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001877 Vector<sp<AudioInputDescriptor>> activeInputs = mInputs.getActiveInputs();
Eric Laurent74708e72017-04-07 17:13:42 -07001878
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001879 // If a UID is idle and records silence and another not silenced recording starts
1880 // from another UID (idle or active) we stop the current idle UID recording in
1881 // favor of the new one - "There can be only one" TM
1882 if (!silenced) {
1883 for (const auto& activeDesc : activeInputs) {
1884 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1885 activeDesc->getId() == inputDesc->getId()) {
1886 continue;
1887 }
1888
1889 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(
1890 true /*activeOnly*/);
1891 sp<AudioSession> activeSession = activeSessions.valueAt(0);
1892 if (activeSession->isSilenced()) {
1893 audio_io_handle_t activeInput = activeDesc->mIoHandle;
1894 audio_session_t activeSessionId = activeSession->session();
1895 stopInput(activeInput, activeSessionId);
1896 releaseInput(activeInput, activeSessionId);
1897 ALOGV("startInput(%d) stopping silenced input %d", input, activeInput);
1898 activeInputs = mInputs.getActiveInputs();
1899 }
1900 }
1901 }
1902
1903 for (const auto& activeDesc : activeInputs) {
Eric Laurentcb4dae22017-07-01 19:39:32 -07001904 if ((audioSession->flags() & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0 &&
1905 activeDesc->getId() == inputDesc->getId()) {
1906 continue;
1907 }
1908
Eric Laurent74708e72017-04-07 17:13:42 -07001909 audio_source_t activeSource = activeDesc->inputSource(true);
1910 if (audioSession->inputSource() == AUDIO_SOURCE_HOTWORD) {
1911 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1912 if (activeDesc->hasPreemptedSession(session)) {
1913 ALOGW("startInput(%d) failed for HOTWORD: "
1914 "other input %d already started for HOTWORD",
1915 input, activeDesc->mIoHandle);
1916 return INVALID_OPERATION;
1917 }
1918 } else {
1919 ALOGV("startInput(%d) failed for HOTWORD: other input %d already started",
1920 input, activeDesc->mIoHandle);
1921 return INVALID_OPERATION;
1922 }
1923 } else {
1924 if (activeSource != AUDIO_SOURCE_HOTWORD) {
1925 ALOGW("startInput(%d) failed: other input %d already started",
1926 input, activeDesc->mIoHandle);
1927 return INVALID_OPERATION;
1928 }
1929 }
1930 }
1931
Chris Thornton2b864642017-06-27 21:26:07 -07001932 // We only need to check if the sound trigger session supports concurrent capture if the
1933 // input is also a sound trigger input. Otherwise, we should preempt any hotword stream
1934 // that's running.
1935 const bool allowConcurrentWithSoundTrigger =
1936 inputDesc->isSoundTrigger() ? soundTriggerSupportsConcurrentCapture() : false;
1937
Eric Laurent74708e72017-04-07 17:13:42 -07001938 // if capture is allowed, preempt currently active HOTWORD captures
Mikhail Naganovcf84e592017-12-07 11:25:11 -08001939 for (const auto& activeDesc : activeInputs) {
Chris Thornton2b864642017-06-27 21:26:07 -07001940 if (allowConcurrentWithSoundTrigger && activeDesc->isSoundTrigger()) {
1941 continue;
1942 }
1943
Eric Laurent74708e72017-04-07 17:13:42 -07001944 audio_source_t activeSource = activeDesc->inputSource(true);
1945 if (activeSource == AUDIO_SOURCE_HOTWORD) {
1946 AudioSessionCollection activeSessions =
1947 activeDesc->getAudioSessions(true /*activeOnly*/);
1948 audio_session_t activeSession = activeSessions.keyAt(0);
1949 audio_io_handle_t activeHandle = activeDesc->mIoHandle;
1950 SortedVector<audio_session_t> sessions = activeDesc->getPreemptedSessions();
1951 sessions.add(activeSession);
1952 inputDesc->setPreemptedSessions(sessions);
1953 stopInput(activeHandle, activeSession);
1954 releaseInput(activeHandle, activeSession);
1955 ALOGV("startInput(%d) for HOTWORD preempting HOTWORD input %d",
1956 input, activeDesc->mIoHandle);
1957 }
1958 }
1959 }
1960#endif
Eric Laurente552edb2014-03-10 17:42:56 -07001961
Svet Ganovf4ddfef2018-01-16 07:37:58 -08001962 // Make sure we start with the correct silence state
1963 audioSession->setSilenced(silenced);
1964
Eric Laurent313d1e72016-01-29 09:56:57 -08001965 // increment activity count before calling getNewInputDevice() below as only active sessions
1966 // are considered for device selection
1967 audioSession->changeActiveCount(1);
1968
Eric Laurent8c7e6da2015-04-21 17:37:00 -07001969 // Routing?
1970 mInputRoutes.incRouteActivity(session);
1971
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001972 if (audioSession->activeCount() == 1 || mInputRoutes.hasRouteChanged(session)) {
Eric Laurent271a93e2016-09-29 14:47:06 -07001973 // indicate active capture to sound trigger service if starting capture from a mic on
1974 // primary HW module
Eric Laurentf7c50102016-09-30 15:19:43 -07001975 audio_devices_t device = getNewInputDevice(inputDesc);
Eric Laurent271a93e2016-09-29 14:47:06 -07001976 setInputDevice(input, device, true /* force */);
Eric Laurente552edb2014-03-10 17:42:56 -07001977
Eric Laurent733ce942017-12-07 12:18:25 -08001978 status_t status = inputDesc->start();
1979 if (status != NO_ERROR) {
1980 mInputRoutes.decRouteActivity(session);
1981 audioSession->changeActiveCount(-1);
1982 return status;
1983 }
Eric Laurent3974e3b2017-12-07 17:58:43 -08001984
Eric Laurent733ce942017-12-07 12:18:25 -08001985 if (inputDesc->getAudioSessionCount(true/*activeOnly*/) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001986 // if input maps to a dynamic policy with an activity listener, notify of state change
1987 if ((inputDesc->mPolicyMix != NULL)
1988 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
1989 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
1990 MIX_STATE_MIXING);
Eric Laurentc722f302014-12-10 11:21:49 -08001991 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001992
Eric Laurentf7c50102016-09-30 15:19:43 -07001993 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
1994 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
Eric Laurent05b345e2016-11-18 12:36:27 -08001995 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 1) {
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07001996 SoundTrigger::setCaptureState(true);
1997 }
1998
1999 // automatically enable the remote submix output when input is started if not
2000 // used by a policy mix of type MIX_TYPE_RECORDERS
2001 // For remote submix (a virtual device), we open only one input per capture request.
2002 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2003 String8 address = String8("");
2004 if (inputDesc->mPolicyMix == NULL) {
2005 address = String8("0");
2006 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2007 address = inputDesc->mPolicyMix->mDeviceAddress;
2008 }
2009 if (address != "") {
2010 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2011 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2012 address, "remote-submix");
2013 }
Eric Laurentc722f302014-12-10 11:21:49 -08002014 }
Glenn Kasten74a8e252014-07-24 14:09:55 -07002015 }
Eric Laurente552edb2014-03-10 17:42:56 -07002016 }
2017
Eric Laurent599c7582015-12-07 18:05:55 -08002018 ALOGV("AudioPolicyManager::startInput() input source = %d", audioSession->inputSource());
Eric Laurente552edb2014-03-10 17:42:56 -07002019
Eric Laurente552edb2014-03-10 17:42:56 -07002020 return NO_ERROR;
2021}
2022
Eric Laurent4dc68062014-07-28 17:26:49 -07002023status_t AudioPolicyManager::stopInput(audio_io_handle_t input,
2024 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002025{
2026 ALOGV("stopInput() input %d", input);
2027 ssize_t index = mInputs.indexOfKey(input);
2028 if (index < 0) {
2029 ALOGW("stopInput() unknown input %d", input);
2030 return BAD_VALUE;
2031 }
Eric Laurent1f2f2232014-06-02 12:01:23 -07002032 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
Eric Laurente552edb2014-03-10 17:42:56 -07002033
Eric Laurent599c7582015-12-07 18:05:55 -08002034 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
Eric Laurent4dc68062014-07-28 17:26:49 -07002035 if (index < 0) {
2036 ALOGW("stopInput() unknown session %d on input %d", session, input);
2037 return BAD_VALUE;
2038 }
2039
Eric Laurent599c7582015-12-07 18:05:55 -08002040 if (audioSession->activeCount() == 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07002041 ALOGW("stopInput() input %d already stopped", input);
2042 return INVALID_OPERATION;
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002043 }
2044
Eric Laurent599c7582015-12-07 18:05:55 -08002045 audioSession->changeActiveCount(-1);
Paul McLean466dc8e2015-04-17 13:15:36 -06002046
2047 // Routing?
2048 mInputRoutes.decRouteActivity(session);
2049
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002050 if (audioSession->activeCount() == 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08002051 inputDesc->stop();
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002052 if (inputDesc->isActive()) {
2053 setInputDevice(input, getNewInputDevice(inputDesc), false /* force */);
2054 } else {
2055 // if input maps to a dynamic policy with an activity listener, notify of state change
2056 if ((inputDesc->mPolicyMix != NULL)
2057 && ((inputDesc->mPolicyMix->mCbFlags & AudioMix::kCbFlagNotifyActivity) != 0)) {
2058 mpClientInterface->onDynamicPolicyMixStateUpdate(inputDesc->mPolicyMix->mDeviceAddress,
2059 MIX_STATE_IDLE);
Eric Laurent84332aa2016-01-28 22:19:18 +00002060 }
Jean-Michel Trivieb6421d2016-03-17 12:32:52 -07002061
2062 // automatically disable the remote submix output when input is stopped if not
2063 // used by a policy mix of type MIX_TYPE_RECORDERS
2064 if (audio_is_remote_submix_device(inputDesc->mDevice)) {
2065 String8 address = String8("");
2066 if (inputDesc->mPolicyMix == NULL) {
2067 address = String8("0");
2068 } else if (inputDesc->mPolicyMix->mMixType == MIX_TYPE_PLAYERS) {
2069 address = inputDesc->mPolicyMix->mDeviceAddress;
2070 }
2071 if (address != "") {
2072 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2073 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2074 address, "remote-submix");
2075 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002076 }
Eric Laurent84332aa2016-01-28 22:19:18 +00002077
Eric Laurentf7c50102016-09-30 15:19:43 -07002078 audio_devices_t device = inputDesc->mDevice;
Eric Laurentfb66dd92016-01-28 18:32:03 -08002079 resetInputDevice(input);
Eric Laurent84332aa2016-01-28 22:19:18 +00002080
Eric Laurentf7c50102016-09-30 15:19:43 -07002081 // indicate inactive capture to sound trigger service if stopping capture from a mic on
2082 // primary HW module
2083 audio_devices_t primaryInputDevices = availablePrimaryInputDevices();
2084 if (((device & primaryInputDevices & ~AUDIO_DEVICE_BIT_IN) != 0) &&
2085 mInputs.activeInputsCountOnDevices(primaryInputDevices) == 0) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08002086 SoundTrigger::setCaptureState(false);
2087 }
2088 inputDesc->clearPreemptedSessions();
Eric Laurent84332aa2016-01-28 22:19:18 +00002089 }
Eric Laurente552edb2014-03-10 17:42:56 -07002090 }
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002091 return NO_ERROR;
Eric Laurente552edb2014-03-10 17:42:56 -07002092}
2093
Eric Laurent4dc68062014-07-28 17:26:49 -07002094void AudioPolicyManager::releaseInput(audio_io_handle_t input,
2095 audio_session_t session)
Eric Laurente552edb2014-03-10 17:42:56 -07002096{
2097 ALOGV("releaseInput() %d", input);
2098 ssize_t index = mInputs.indexOfKey(input);
2099 if (index < 0) {
2100 ALOGW("releaseInput() releasing unknown input %d", input);
2101 return;
2102 }
Paul McLean466dc8e2015-04-17 13:15:36 -06002103
2104 // Routing
2105 mInputRoutes.removeRoute(session);
2106
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002107 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(index);
2108 ALOG_ASSERT(inputDesc != 0);
Eric Laurent4dc68062014-07-28 17:26:49 -07002109
Eric Laurent599c7582015-12-07 18:05:55 -08002110 sp<AudioSession> audioSession = inputDesc->getAudioSession(session);
vivek mehta587b8df2017-01-31 14:58:44 -08002111 if (audioSession == 0) {
Eric Laurent4dc68062014-07-28 17:26:49 -07002112 ALOGW("releaseInput() unknown session %d on input %d", session, input);
2113 return;
2114 }
Eric Laurent599c7582015-12-07 18:05:55 -08002115
2116 if (audioSession->openCount() == 0) {
2117 ALOGW("releaseInput() invalid open count %d on session %d",
2118 audioSession->openCount(), session);
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002119 return;
2120 }
Eric Laurent599c7582015-12-07 18:05:55 -08002121
2122 if (audioSession->changeOpenCount(-1) == 0) {
2123 inputDesc->removeAudioSession(session);
2124 }
2125
Jean-Michel Trivi65bfe912015-12-04 15:56:47 -08002126 if (inputDesc->getOpenRefCount() > 0) {
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002127 ALOGV("releaseInput() exit > 0");
2128 return;
2129 }
2130
Eric Laurent05b90f82014-08-27 15:32:29 -07002131 closeInput(input);
Eric Laurentb52c1522014-05-20 11:27:36 -07002132 mpClientInterface->onAudioPortListUpdate();
Eric Laurente552edb2014-03-10 17:42:56 -07002133 ALOGV("releaseInput() exit");
2134}
2135
Eric Laurentd4692962014-05-05 18:13:44 -07002136void AudioPolicyManager::closeAllInputs() {
Eric Laurent05b90f82014-08-27 15:32:29 -07002137 bool patchRemoved = false;
2138
Mikhail Naganov7e22e942017-12-07 10:04:29 -08002139 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
Eric Laurent05b90f82014-08-27 15:32:29 -07002140 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(input_index);
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08002141 ssize_t patch_index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07002142 if (patch_index >= 0) {
2143 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(patch_index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07002144 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07002145 mAudioPatches.removeItemsAt(patch_index);
2146 patchRemoved = true;
2147 }
Eric Laurentfe231122017-11-17 17:48:06 -08002148 inputDesc->close();
Eric Laurentd4692962014-05-05 18:13:44 -07002149 }
jiabin829a00b2018-04-04 16:28:32 -07002150 mInputRoutes.clear();
Eric Laurentd4692962014-05-05 18:13:44 -07002151 mInputs.clear();
Chris Thornton52785f32016-02-09 17:28:49 -08002152 SoundTrigger::setCaptureState(false);
Eric Laurent6a94d692014-05-20 11:18:06 -07002153 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07002154
2155 if (patchRemoved) {
2156 mpClientInterface->onAudioPatchListUpdate();
2157 }
Eric Laurentd4692962014-05-05 18:13:44 -07002158}
2159
Eric Laurente0720872014-03-11 09:30:41 -07002160void AudioPolicyManager::initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002161 int indexMin,
2162 int indexMax)
2163{
2164 ALOGV("initStreamVolume() stream %d, min %d, max %d", stream , indexMin, indexMax);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002165 mVolumeCurves->initStreamVolume(stream, indexMin, indexMax);
Eric Laurent28d09f02016-03-08 10:43:05 -08002166
2167 // initialize other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002168 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2169 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002170 continue;
2171 }
2172 mVolumeCurves->initStreamVolume((audio_stream_type_t)curStream, indexMin, indexMax);
Eric Laurent223fd5c2014-11-11 13:43:36 -08002173 }
Eric Laurente552edb2014-03-10 17:42:56 -07002174}
2175
Eric Laurente0720872014-03-11 09:30:41 -07002176status_t AudioPolicyManager::setStreamVolumeIndex(audio_stream_type_t stream,
François Gaffie53615e22015-03-19 09:24:12 +01002177 int index,
2178 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07002179{
2180
Nadav Bar7c605f62017-12-25 00:01:52 +02002181 // VOICE_CALL stream has minVolumeIndex > 0 but can be muted directly by an
2182 // app that has MODIFY_PHONE_STATE permission.
2183 if (((index < mVolumeCurves->getVolumeIndexMin(stream)) &&
2184 !(stream == AUDIO_STREAM_VOICE_CALL && index == 0)) ||
François Gaffied1ab2bd2015-12-02 18:20:06 +01002185 (index > mVolumeCurves->getVolumeIndexMax(stream))) {
Eric Laurente552edb2014-03-10 17:42:56 -07002186 return BAD_VALUE;
2187 }
2188 if (!audio_is_output_device(device)) {
2189 return BAD_VALUE;
2190 }
2191
2192 // Force max volume if stream cannot be muted
François Gaffied1ab2bd2015-12-02 18:20:06 +01002193 if (!mVolumeCurves->canBeMuted(stream)) index = mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07002194
Eric Laurent1fd372e2016-04-06 14:23:53 -07002195 ALOGV("setStreamVolumeIndex() stream %d, device %08x, index %d",
Eric Laurente552edb2014-03-10 17:42:56 -07002196 stream, device, index);
2197
Eric Laurent28d09f02016-03-08 10:43:05 -08002198 // update other private stream volumes which follow this one
Eric Laurent794fde22016-03-11 09:50:45 -08002199 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2200 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002201 continue;
2202 }
2203 mVolumeCurves->addCurrentVolumeIndex((audio_stream_type_t)curStream, device, index);
2204 }
Eric Laurente552edb2014-03-10 17:42:56 -07002205
Eric Laurent1fd372e2016-04-06 14:23:53 -07002206 // update volume on all outputs and streams matching the following:
2207 // - The requested stream (or a stream matching for volume control) is active on the output
2208 // - The device (or devices) selected by the strategy corresponding to this stream includes
2209 // the requested device
2210 // - For non default requested device, currently selected device on the output is either the
2211 // requested device or one of the devices selected by the strategy
Eric Laurent5a2b6292016-04-14 18:05:57 -07002212 // - For default requested device (AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME), apply volume only if
2213 // no specific device volume value exists for currently selected device.
Eric Laurente552edb2014-03-10 17:42:56 -07002214 status_t status = NO_ERROR;
2215 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002216 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
2217 audio_devices_t curDevice = Volume::getDeviceForVolume(desc->device());
Eric Laurent794fde22016-03-11 09:50:45 -08002218 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
2219 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002220 continue;
Eric Laurente552edb2014-03-10 17:42:56 -07002221 }
Eric Laurentd3926fe2016-04-15 18:10:07 -07002222 if (!(desc->isStreamActive((audio_stream_type_t)curStream) ||
2223 (isInCall() && (curStream == AUDIO_STREAM_VOICE_CALL)))) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002224 continue;
2225 }
Eric Laurent794fde22016-03-11 09:50:45 -08002226 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002227 audio_devices_t curStreamDevice = Volume::getDeviceForVolume(getDeviceForStrategy(
2228 curStrategy, false /*fromCache*/));
Eric Laurente76f29c2016-09-14 17:17:53 -07002229 if ((device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) &&
2230 ((curStreamDevice & device) == 0)) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002231 continue;
2232 }
Eric Laurente76f29c2016-09-14 17:17:53 -07002233 bool applyVolume;
Eric Laurent5a2b6292016-04-14 18:05:57 -07002234 if (device != AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurent1fd372e2016-04-06 14:23:53 -07002235 curStreamDevice |= device;
Eric Laurente76f29c2016-09-14 17:17:53 -07002236 applyVolume = (curDevice & curStreamDevice) != 0;
2237 } else {
2238 applyVolume = !mVolumeCurves->hasVolumeIndexForDevice(
Jean-Michel Trivib7fdce62017-06-27 19:38:42 -07002239 stream, curStreamDevice);
Eric Laurent1fd372e2016-04-06 14:23:53 -07002240 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002241
Eric Laurente76f29c2016-09-14 17:17:53 -07002242 if (applyVolume) {
Eric Laurentdc462862016-07-19 12:29:53 -07002243 //FIXME: workaround for truncated touch sounds
2244 // delayed volume change for system stream to be removed when the problem is
2245 // handled by system UI
Eric Laurent28d09f02016-03-08 10:43:05 -08002246 status_t volStatus =
Eric Laurentdc462862016-07-19 12:29:53 -07002247 checkAndSetVolume((audio_stream_type_t)curStream, index, desc, curDevice,
2248 (stream == AUDIO_STREAM_SYSTEM) ? TOUCH_SOUND_FIXED_DELAY_MS : 0);
Eric Laurent28d09f02016-03-08 10:43:05 -08002249 if (volStatus != NO_ERROR) {
2250 status = volStatus;
2251 }
2252 }
Eric Laurent223fd5c2014-11-11 13:43:36 -08002253 }
Eric Laurente552edb2014-03-10 17:42:56 -07002254 }
2255 return status;
2256}
2257
Eric Laurente0720872014-03-11 09:30:41 -07002258status_t AudioPolicyManager::getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -07002259 int *index,
2260 audio_devices_t device)
2261{
2262 if (index == NULL) {
2263 return BAD_VALUE;
2264 }
2265 if (!audio_is_output_device(device)) {
2266 return BAD_VALUE;
2267 }
Eric Laurent5a2b6292016-04-14 18:05:57 -07002268 // if device is AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME, return volume for device corresponding to
Eric Laurente552edb2014-03-10 17:42:56 -07002269 // the strategy the stream belongs to.
Eric Laurent5a2b6292016-04-14 18:05:57 -07002270 if (device == AUDIO_DEVICE_OUT_DEFAULT_FOR_VOLUME) {
Eric Laurente552edb2014-03-10 17:42:56 -07002271 device = getDeviceForStrategy(getStrategy(stream), true /*fromCache*/);
2272 }
François Gaffiedfd74092015-03-19 12:10:59 +01002273 device = Volume::getDeviceForVolume(device);
Eric Laurente552edb2014-03-10 17:42:56 -07002274
François Gaffied1ab2bd2015-12-02 18:20:06 +01002275 *index = mVolumeCurves->getVolumeIndex(stream, device);
Eric Laurente552edb2014-03-10 17:42:56 -07002276 ALOGV("getStreamVolumeIndex() stream %d device %08x index %d", stream, device, *index);
2277 return NO_ERROR;
2278}
2279
Eric Laurent36829f92017-04-07 19:04:42 -07002280audio_io_handle_t AudioPolicyManager::selectOutputForMusicEffects()
Eric Laurente552edb2014-03-10 17:42:56 -07002281{
2282 // select one output among several suitable for global effects.
2283 // The priority is as follows:
2284 // 1: An offloaded output. If the effect ends up not being offloadable,
2285 // AudioFlinger will invalidate the track and the offloaded output
2286 // will be closed causing the effect to be moved to a PCM output.
2287 // 2: A deep buffer output
Eric Laurent36829f92017-04-07 19:04:42 -07002288 // 3: The primary output
2289 // 4: the first output in the list
Eric Laurente552edb2014-03-10 17:42:56 -07002290
Eric Laurent3b73df72014-03-11 09:06:29 -07002291 routing_strategy strategy = getStrategy(AUDIO_STREAM_MUSIC);
Eric Laurente552edb2014-03-10 17:42:56 -07002292 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
Eric Laurent36829f92017-04-07 19:04:42 -07002293 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
Eric Laurente552edb2014-03-10 17:42:56 -07002294
Eric Laurent36829f92017-04-07 19:04:42 -07002295 if (outputs.size() == 0) {
2296 return AUDIO_IO_HANDLE_NONE;
2297 }
Eric Laurente552edb2014-03-10 17:42:56 -07002298
Eric Laurent36829f92017-04-07 19:04:42 -07002299 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
2300 bool activeOnly = true;
2301
2302 while (output == AUDIO_IO_HANDLE_NONE) {
2303 audio_io_handle_t outputOffloaded = AUDIO_IO_HANDLE_NONE;
2304 audio_io_handle_t outputDeepBuffer = AUDIO_IO_HANDLE_NONE;
2305 audio_io_handle_t outputPrimary = AUDIO_IO_HANDLE_NONE;
2306
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002307 for (audio_io_handle_t output : outputs) {
2308 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(output);
Eric Laurent36829f92017-04-07 19:04:42 -07002309 if (activeOnly && !desc->isStreamActive(AUDIO_STREAM_MUSIC)) {
2310 continue;
2311 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002312 ALOGV("selectOutputForMusicEffects activeOnly %d output %d flags 0x%08x",
2313 activeOnly, output, desc->mFlags);
Eric Laurent36829f92017-04-07 19:04:42 -07002314 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002315 outputOffloaded = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002316 }
2317 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002318 outputDeepBuffer = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002319 }
2320 if ((desc->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) != 0) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002321 outputPrimary = output;
Eric Laurent36829f92017-04-07 19:04:42 -07002322 }
2323 }
2324 if (outputOffloaded != AUDIO_IO_HANDLE_NONE) {
2325 output = outputOffloaded;
2326 } else if (outputDeepBuffer != AUDIO_IO_HANDLE_NONE) {
2327 output = outputDeepBuffer;
2328 } else if (outputPrimary != AUDIO_IO_HANDLE_NONE) {
2329 output = outputPrimary;
2330 } else {
2331 output = outputs[0];
2332 }
2333 activeOnly = false;
2334 }
2335
2336 if (output != mMusicEffectOutput) {
2337 mpClientInterface->moveEffects(AUDIO_SESSION_OUTPUT_MIX, mMusicEffectOutput, output);
2338 mMusicEffectOutput = output;
2339 }
2340
2341 ALOGV("selectOutputForMusicEffects selected output %d", output);
Eric Laurente552edb2014-03-10 17:42:56 -07002342 return output;
2343}
2344
Eric Laurent36829f92017-04-07 19:04:42 -07002345audio_io_handle_t AudioPolicyManager::getOutputForEffect(const effect_descriptor_t *desc __unused)
2346{
2347 return selectOutputForMusicEffects();
2348}
2349
Eric Laurente0720872014-03-11 09:30:41 -07002350status_t AudioPolicyManager::registerEffect(const effect_descriptor_t *desc,
Eric Laurente552edb2014-03-10 17:42:56 -07002351 audio_io_handle_t io,
2352 uint32_t strategy,
2353 int session,
2354 int id)
2355{
2356 ssize_t index = mOutputs.indexOfKey(io);
2357 if (index < 0) {
2358 index = mInputs.indexOfKey(io);
2359 if (index < 0) {
2360 ALOGW("registerEffect() unknown io %d", io);
2361 return INVALID_OPERATION;
2362 }
2363 }
François Gaffie45ed3b02015-03-19 10:35:14 +01002364 return mEffects.registerEffect(desc, io, strategy, session, id);
Eric Laurente552edb2014-03-10 17:42:56 -07002365}
2366
Eric Laurentc75307b2015-03-17 15:29:32 -07002367bool AudioPolicyManager::isStreamActive(audio_stream_type_t stream, uint32_t inPastMs) const
2368{
Eric Laurent28d09f02016-03-08 10:43:05 -08002369 bool active = false;
Eric Laurent794fde22016-03-11 09:50:45 -08002370 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT && !active; curStream++) {
2371 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08002372 continue;
2373 }
2374 active = mOutputs.isStreamActive((audio_stream_type_t)curStream, inPastMs);
2375 }
Eric Laurent28d09f02016-03-08 10:43:05 -08002376 return active;
Eric Laurentc75307b2015-03-17 15:29:32 -07002377}
2378
2379bool AudioPolicyManager::isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs) const
2380{
2381 return mOutputs.isStreamActiveRemotely(stream, inPastMs);
2382}
2383
Eric Laurente0720872014-03-11 09:30:41 -07002384bool AudioPolicyManager::isSourceActive(audio_source_t source) const
Eric Laurente552edb2014-03-10 17:42:56 -07002385{
2386 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07002387 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08002388 if (inputDescriptor->isSourceActive(source)) {
Eric Laurente552edb2014-03-10 17:42:56 -07002389 return true;
2390 }
2391 }
2392 return false;
2393}
2394
Eric Laurent275e8e92014-11-30 15:14:47 -08002395// Register a list of custom mixes with their attributes and format.
2396// When a mix is registered, corresponding input and output profiles are
2397// added to the remote submix hw module. The profile contains only the
2398// parameters (sampling rate, format...) specified by the mix.
2399// The corresponding input remote submix device is also connected.
2400//
2401// When a remote submix device is connected, the address is checked to select the
2402// appropriate profile and the corresponding input or output stream is opened.
2403//
2404// When capture starts, getInputForAttr() will:
2405// - 1 look for a mix matching the address passed in attribtutes tags if any
2406// - 2 if none found, getDeviceForInputSource() will:
2407// - 2.1 look for a mix matching the attributes source
2408// - 2.2 if none found, default to device selection by policy rules
2409// At this time, the corresponding output remote submix device is also connected
2410// and active playback use cases can be transferred to this mix if needed when reconnecting
2411// after AudioTracks are invalidated
2412//
2413// When playback starts, getOutputForAttr() will:
2414// - 1 look for a mix matching the address passed in attribtutes tags if any
2415// - 2 if none found, look for a mix matching the attributes usage
2416// - 3 if none found, default to device and output selection by policy rules.
2417
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07002418status_t AudioPolicyManager::registerPolicyMixes(const Vector<AudioMix>& mixes)
Eric Laurent275e8e92014-11-30 15:14:47 -08002419{
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002420 ALOGV("registerPolicyMixes() %zu mix(es)", mixes.size());
2421 status_t res = NO_ERROR;
2422
2423 sp<HwModule> rSubmixModule;
2424 // examine each mix's route type
2425 for (size_t i = 0; i < mixes.size(); i++) {
2426 // we only support MIX_ROUTE_FLAG_LOOP_BACK or MIX_ROUTE_FLAG_RENDER, not the combination
2427 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_ALL) == MIX_ROUTE_FLAG_ALL) {
2428 res = INVALID_OPERATION;
Eric Laurent275e8e92014-11-30 15:14:47 -08002429 break;
2430 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002431 if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002432 ALOGV("registerPolicyMixes() mix %zu of %zu is LOOP_BACK", i, mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002433 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002434 rSubmixModule = mHwModules.getModuleFromName(
2435 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2436 if (rSubmixModule == 0) {
2437 ALOGE(" Unable to find audio module for submix, aborting mix %zu registration",
2438 i);
2439 res = INVALID_OPERATION;
2440 break;
2441 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002442 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002443
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002444 String8 address = mixes[i].mDeviceAddress;
François Gaffie036e1e92015-03-19 10:16:24 +01002445
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002446 if (mPolicyMixes.registerMix(address, mixes[i], 0 /*output desc*/) != NO_ERROR) {
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002447 ALOGE(" Error registering mix %zu for address %s", i, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002448 res = INVALID_OPERATION;
2449 break;
2450 }
2451 audio_config_t outputConfig = mixes[i].mFormat;
2452 audio_config_t inputConfig = mixes[i].mFormat;
2453 // NOTE: audio flinger mixer does not support mono output: configure remote submix HAL in
2454 // stereo and let audio flinger do the channel conversion if needed.
2455 outputConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2456 inputConfig.channel_mask = AUDIO_CHANNEL_IN_STEREO;
2457 rSubmixModule->addOutputProfile(address, &outputConfig,
2458 AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address);
2459 rSubmixModule->addInputProfile(address, &inputConfig,
2460 AUDIO_DEVICE_IN_REMOTE_SUBMIX, address);
François Gaffie036e1e92015-03-19 10:16:24 +01002461
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002462 if (mixes[i].mMixType == MIX_TYPE_PLAYERS) {
2463 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2464 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2465 address.string(), "remote-submix");
2466 } else {
2467 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2468 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
2469 address.string(), "remote-submix");
2470 }
2471 } else if ((mixes[i].mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002472 String8 address = mixes[i].mDeviceAddress;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002473 audio_devices_t device = mixes[i].mDeviceType;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002474 ALOGV(" registerPolicyMixes() mix %zu of %zu is RENDER, dev=0x%X addr=%s",
2475 i, mixes.size(), device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002476
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002477 bool foundOutput = false;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002478 for (size_t j = 0 ; j < mOutputs.size() ; j++) {
2479 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(j);
2480 sp<AudioPatch> patch = mAudioPatches.valueFor(desc->getPatchHandle());
2481 if ((patch != 0) && (patch->mPatch.num_sinks != 0)
2482 && (patch->mPatch.sinks[0].type == AUDIO_PORT_TYPE_DEVICE)
2483 && (patch->mPatch.sinks[0].ext.device.type == device)
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002484 && (strncmp(patch->mPatch.sinks[0].ext.device.address, address.string(),
2485 AUDIO_DEVICE_MAX_ADDRESS_LEN) == 0)) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002486 if (mPolicyMixes.registerMix(address, mixes[i], desc) != NO_ERROR) {
2487 res = INVALID_OPERATION;
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002488 } else {
2489 foundOutput = true;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002490 }
2491 break;
2492 }
2493 }
2494
2495 if (res != NO_ERROR) {
2496 ALOGE(" Error registering mix %zu for device 0x%X addr %s",
Jean-Michel Trivi5ac8cd42016-03-24 16:35:36 -07002497 i, device, address.string());
2498 res = INVALID_OPERATION;
2499 break;
2500 } else if (!foundOutput) {
2501 ALOGE(" Output not found for mix %zu for device 0x%X addr %s",
2502 i, device, address.string());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002503 res = INVALID_OPERATION;
2504 break;
2505 }
Eric Laurentc722f302014-12-10 11:21:49 -08002506 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002507 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002508 if (res != NO_ERROR) {
2509 unregisterPolicyMixes(mixes);
2510 }
2511 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002512}
2513
2514status_t AudioPolicyManager::unregisterPolicyMixes(Vector<AudioMix> mixes)
2515{
Eric Laurent7b279bb2015-12-14 10:18:23 -08002516 ALOGV("unregisterPolicyMixes() num mixes %zu", mixes.size());
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002517 status_t res = NO_ERROR;
2518 sp<HwModule> rSubmixModule;
2519 // examine each mix's route type
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002520 for (const auto& mix : mixes) {
2521 if ((mix.mRouteFlags & MIX_ROUTE_FLAG_LOOP_BACK) == MIX_ROUTE_FLAG_LOOP_BACK) {
François Gaffie036e1e92015-03-19 10:16:24 +01002522
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002523 if (rSubmixModule == 0) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08002524 rSubmixModule = mHwModules.getModuleFromName(
2525 AUDIO_HARDWARE_MODULE_ID_REMOTE_SUBMIX);
2526 if (rSubmixModule == 0) {
2527 res = INVALID_OPERATION;
2528 continue;
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002529 }
2530 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002531
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002532 String8 address = mix.mDeviceAddress;
Eric Laurent275e8e92014-11-30 15:14:47 -08002533
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002534 if (mPolicyMixes.unregisterMix(address) != NO_ERROR) {
2535 res = INVALID_OPERATION;
2536 continue;
2537 }
2538
2539 if (getDeviceConnectionState(AUDIO_DEVICE_IN_REMOTE_SUBMIX, address.string()) ==
2540 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2541 setDeviceConnectionStateInt(AUDIO_DEVICE_IN_REMOTE_SUBMIX,
2542 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2543 address.string(), "remote-submix");
2544 }
2545 if (getDeviceConnectionState(AUDIO_DEVICE_OUT_REMOTE_SUBMIX, address.string()) ==
2546 AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
2547 setDeviceConnectionStateInt(AUDIO_DEVICE_OUT_REMOTE_SUBMIX,
2548 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
2549 address.string(), "remote-submix");
2550 }
2551 rSubmixModule->removeOutputProfile(address);
2552 rSubmixModule->removeInputProfile(address);
2553
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002554 } if ((mix.mRouteFlags & MIX_ROUTE_FLAG_RENDER) == MIX_ROUTE_FLAG_RENDER) {
2555 if (mPolicyMixes.unregisterMix(mix.mDeviceAddress) != NO_ERROR) {
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002556 res = INVALID_OPERATION;
2557 continue;
2558 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002559 }
Eric Laurent275e8e92014-11-30 15:14:47 -08002560 }
Jean-Michel Trivi7638ca22016-03-04 17:42:44 -08002561 return res;
Eric Laurent275e8e92014-11-30 15:14:47 -08002562}
2563
Eric Laurente552edb2014-03-10 17:42:56 -07002564
Eric Laurente0720872014-03-11 09:30:41 -07002565status_t AudioPolicyManager::dump(int fd)
Eric Laurente552edb2014-03-10 17:42:56 -07002566{
2567 const size_t SIZE = 256;
2568 char buffer[SIZE];
2569 String8 result;
2570
2571 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
2572 result.append(buffer);
2573
Eric Laurent87ffa392015-05-22 10:32:38 -07002574 snprintf(buffer, SIZE, " Primary Output: %d\n",
2575 hasPrimaryOutput() ? mPrimaryOutput->mIoHandle : AUDIO_IO_HANDLE_NONE);
Eric Laurente552edb2014-03-10 17:42:56 -07002576 result.append(buffer);
Mikhail Naganov0d6a0332016-04-19 17:12:38 -07002577 std::string stateLiteral;
2578 AudioModeConverter::toString(mEngine->getPhoneState(), stateLiteral);
2579 snprintf(buffer, SIZE, " Phone state: %s\n", stateLiteral.c_str());
Eric Laurente552edb2014-03-10 17:42:56 -07002580 result.append(buffer);
Eric Laurent3b73df72014-03-11 09:06:29 -07002581 snprintf(buffer, SIZE, " Force use for communications %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002582 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION));
Eric Laurente552edb2014-03-10 17:42:56 -07002583 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002584 snprintf(buffer, SIZE, " Force use for media %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_MEDIA));
Eric Laurente552edb2014-03-10 17:42:56 -07002585 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002586 snprintf(buffer, SIZE, " Force use for record %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD));
Eric Laurente552edb2014-03-10 17:42:56 -07002587 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002588 snprintf(buffer, SIZE, " Force use for dock %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_DOCK));
Eric Laurente552edb2014-03-10 17:42:56 -07002589 result.append(buffer);
François Gaffie2110e042015-03-24 08:41:51 +01002590 snprintf(buffer, SIZE, " Force use for system %d\n", mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM));
Eric Laurente552edb2014-03-10 17:42:56 -07002591 result.append(buffer);
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002592 snprintf(buffer, SIZE, " Force use for hdmi system audio %d\n",
François Gaffie2110e042015-03-24 08:41:51 +01002593 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_HDMI_SYSTEM_AUDIO));
Jungshik Jang7b24ee32014-07-15 19:38:42 +09002594 result.append(buffer);
Phil Burk09bc4612016-02-24 15:58:15 -08002595 snprintf(buffer, SIZE, " Force use for encoded surround output %d\n",
2596 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND));
2597 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002598 snprintf(buffer, SIZE, " TTS output %s\n", mTtsOutputAvailable ? "available" : "not available");
2599 result.append(buffer);
Andy Hung2ddee192015-12-18 17:34:44 -08002600 snprintf(buffer, SIZE, " Master mono: %s\n", mMasterMono ? "on" : "off");
2601 result.append(buffer);
Eric Laurent9459fb02015-08-12 18:36:32 -07002602
François Gaffie2110e042015-03-24 08:41:51 +01002603 write(fd, result.string(), result.size());
Eric Laurente552edb2014-03-10 17:42:56 -07002604
François Gaffie112b0af2015-11-19 16:13:25 +01002605 mAvailableOutputDevices.dump(fd, String8("Available output"));
2606 mAvailableInputDevices.dump(fd, String8("Available input"));
Mikhail Naganovd4120142017-12-06 15:49:22 -08002607 mHwModulesAll.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002608 mOutputs.dump(fd);
2609 mInputs.dump(fd);
François Gaffied1ab2bd2015-12-02 18:20:06 +01002610 mVolumeCurves->dump(fd);
François Gaffie45ed3b02015-03-19 10:35:14 +01002611 mEffects.dump(fd);
François Gaffie53615e22015-03-19 09:24:12 +01002612 mAudioPatches.dump(fd);
Mikhail Naganov44344b02016-12-13 11:21:02 -08002613 mPolicyMixes.dump(fd);
Eric Laurente552edb2014-03-10 17:42:56 -07002614
2615 return NO_ERROR;
2616}
2617
2618// This function checks for the parameters which can be offloaded.
2619// This can be enhanced depending on the capability of the DSP and policy
2620// of the system.
Eric Laurente0720872014-03-11 09:30:41 -07002621bool AudioPolicyManager::isOffloadSupported(const audio_offload_info_t& offloadInfo)
Eric Laurente552edb2014-03-10 17:42:56 -07002622{
2623 ALOGV("isOffloadSupported: SR=%u, CM=0x%x, Format=0x%x, StreamType=%d,"
Eric Laurentd4692962014-05-05 18:13:44 -07002624 " BitRate=%u, duration=%" PRId64 " us, has_video=%d",
Eric Laurente552edb2014-03-10 17:42:56 -07002625 offloadInfo.sample_rate, offloadInfo.channel_mask,
2626 offloadInfo.format,
2627 offloadInfo.stream_type, offloadInfo.bit_rate, offloadInfo.duration_us,
2628 offloadInfo.has_video);
2629
Andy Hung2ddee192015-12-18 17:34:44 -08002630 if (mMasterMono) {
2631 return false; // no offloading if mono is set.
2632 }
2633
Eric Laurente552edb2014-03-10 17:42:56 -07002634 // Check if offload has been disabled
2635 char propValue[PROPERTY_VALUE_MAX];
2636 if (property_get("audio.offload.disable", propValue, "0")) {
2637 if (atoi(propValue) != 0) {
2638 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
2639 return false;
2640 }
2641 }
2642
2643 // Check if stream type is music, then only allow offload as of now.
2644 if (offloadInfo.stream_type != AUDIO_STREAM_MUSIC)
2645 {
2646 ALOGV("isOffloadSupported: stream_type != MUSIC, returning false");
2647 return false;
2648 }
2649
2650 //TODO: enable audio offloading with video when ready
Andy Hung08945c42015-05-31 21:36:46 -07002651 const bool allowOffloadWithVideo =
2652 property_get_bool("audio.offload.video", false /* default_value */);
2653 if (offloadInfo.has_video && !allowOffloadWithVideo) {
Eric Laurente552edb2014-03-10 17:42:56 -07002654 ALOGV("isOffloadSupported: has_video == true, returning false");
2655 return false;
2656 }
2657
2658 //If duration is less than minimum value defined in property, return false
2659 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
2660 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
2661 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
2662 return false;
2663 }
2664 } else if (offloadInfo.duration_us < OFFLOAD_DEFAULT_MIN_DURATION_SECS * 1000000) {
2665 ALOGV("Offload denied by duration < default min(=%u)", OFFLOAD_DEFAULT_MIN_DURATION_SECS);
2666 return false;
2667 }
2668
2669 // Do not allow offloading if one non offloadable effect is enabled. This prevents from
2670 // creating an offloaded track and tearing it down immediately after start when audioflinger
2671 // detects there is an active non offloadable effect.
2672 // FIXME: We should check the audio session here but we do not have it in this context.
2673 // This may prevent offloading in rare situations where effects are left active by apps
2674 // in the background.
François Gaffie45ed3b02015-03-19 10:35:14 +01002675 if (mEffects.isNonOffloadableEffectEnabled()) {
Eric Laurente552edb2014-03-10 17:42:56 -07002676 return false;
2677 }
2678
2679 // See if there is a profile to support this.
2680 // AUDIO_DEVICE_NONE
Eric Laurent1c333e22014-05-20 10:48:17 -07002681 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */,
Eric Laurente552edb2014-03-10 17:42:56 -07002682 offloadInfo.sample_rate,
2683 offloadInfo.format,
2684 offloadInfo.channel_mask,
2685 AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD);
Eric Laurent1c333e22014-05-20 10:48:17 -07002686 ALOGV("isOffloadSupported() profile %sfound", profile != 0 ? "" : "NOT ");
2687 return (profile != 0);
Eric Laurente552edb2014-03-10 17:42:56 -07002688}
2689
Eric Laurent6a94d692014-05-20 11:18:06 -07002690status_t AudioPolicyManager::listAudioPorts(audio_port_role_t role,
2691 audio_port_type_t type,
2692 unsigned int *num_ports,
2693 struct audio_port *ports,
2694 unsigned int *generation)
2695{
2696 if (num_ports == NULL || (*num_ports != 0 && ports == NULL) ||
2697 generation == NULL) {
2698 return BAD_VALUE;
2699 }
2700 ALOGV("listAudioPorts() role %d type %d num_ports %d ports %p", role, type, *num_ports, ports);
2701 if (ports == NULL) {
2702 *num_ports = 0;
2703 }
2704
2705 size_t portsWritten = 0;
2706 size_t portsMax = *num_ports;
2707 *num_ports = 0;
2708 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002709 // do not report devices with type AUDIO_DEVICE_IN_STUB or AUDIO_DEVICE_OUT_STUB
2710 // as they are used by stub HALs by convention
Eric Laurent6a94d692014-05-20 11:18:06 -07002711 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002712 for (const auto& dev : mAvailableOutputDevices) {
2713 if (dev->type() == AUDIO_DEVICE_OUT_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002714 continue;
2715 }
2716 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002717 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002718 }
2719 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002720 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002721 }
2722 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002723 for (const auto& dev : mAvailableInputDevices) {
2724 if (dev->type() == AUDIO_DEVICE_IN_STUB) {
Eric Laurent5a2b6292016-04-14 18:05:57 -07002725 continue;
2726 }
2727 if (portsWritten < portsMax) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08002728 dev->toAudioPort(&ports[portsWritten++]);
Eric Laurent5a2b6292016-04-14 18:05:57 -07002729 }
2730 (*num_ports)++;
Eric Laurent6a94d692014-05-20 11:18:06 -07002731 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002732 }
2733 }
2734 if (type == AUDIO_PORT_TYPE_NONE || type == AUDIO_PORT_TYPE_MIX) {
2735 if (role == AUDIO_PORT_ROLE_SINK || role == AUDIO_PORT_ROLE_NONE) {
2736 for (size_t i = 0; i < mInputs.size() && portsWritten < portsMax; i++) {
2737 mInputs[i]->toAudioPort(&ports[portsWritten++]);
2738 }
2739 *num_ports += mInputs.size();
2740 }
2741 if (role == AUDIO_PORT_ROLE_SOURCE || role == AUDIO_PORT_ROLE_NONE) {
Eric Laurent84c70242014-06-23 08:46:27 -07002742 size_t numOutputs = 0;
2743 for (size_t i = 0; i < mOutputs.size(); i++) {
2744 if (!mOutputs[i]->isDuplicated()) {
2745 numOutputs++;
2746 if (portsWritten < portsMax) {
2747 mOutputs[i]->toAudioPort(&ports[portsWritten++]);
2748 }
2749 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002750 }
Eric Laurent84c70242014-06-23 08:46:27 -07002751 *num_ports += numOutputs;
Eric Laurent6a94d692014-05-20 11:18:06 -07002752 }
2753 }
2754 *generation = curAudioPortGeneration();
Mark Salyzynbeb9e302014-06-18 16:33:15 -07002755 ALOGV("listAudioPorts() got %zu ports needed %d", portsWritten, *num_ports);
Eric Laurent6a94d692014-05-20 11:18:06 -07002756 return NO_ERROR;
2757}
2758
2759status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2760{
2761 return NO_ERROR;
2762}
2763
Eric Laurent6a94d692014-05-20 11:18:06 -07002764status_t AudioPolicyManager::createAudioPatch(const struct audio_patch *patch,
2765 audio_patch_handle_t *handle,
2766 uid_t uid)
2767{
2768 ALOGV("createAudioPatch()");
2769
2770 if (handle == NULL || patch == NULL) {
2771 return BAD_VALUE;
2772 }
2773 ALOGV("createAudioPatch() num sources %d num sinks %d", patch->num_sources, patch->num_sinks);
2774
Eric Laurent874c42872014-08-08 15:13:39 -07002775 if (patch->num_sources == 0 || patch->num_sources > AUDIO_PATCH_PORTS_MAX ||
2776 patch->num_sinks == 0 || patch->num_sinks > AUDIO_PATCH_PORTS_MAX) {
2777 return BAD_VALUE;
2778 }
2779 // only one source per audio patch supported for now
2780 if (patch->num_sources > 1) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002781 return INVALID_OPERATION;
2782 }
Eric Laurent874c42872014-08-08 15:13:39 -07002783
2784 if (patch->sources[0].role != AUDIO_PORT_ROLE_SOURCE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002785 return INVALID_OPERATION;
2786 }
Eric Laurent874c42872014-08-08 15:13:39 -07002787 for (size_t i = 0; i < patch->num_sinks; i++) {
2788 if (patch->sinks[i].role != AUDIO_PORT_ROLE_SINK) {
2789 return INVALID_OPERATION;
2790 }
2791 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002792
2793 sp<AudioPatch> patchDesc;
2794 ssize_t index = mAudioPatches.indexOfKey(*handle);
2795
Eric Laurent6a94d692014-05-20 11:18:06 -07002796 ALOGV("createAudioPatch source id %d role %d type %d", patch->sources[0].id,
2797 patch->sources[0].role,
2798 patch->sources[0].type);
Eric Laurent874c42872014-08-08 15:13:39 -07002799#if LOG_NDEBUG == 0
2800 for (size_t i = 0; i < patch->num_sinks; i++) {
Eric Laurent7b279bb2015-12-14 10:18:23 -08002801 ALOGV("createAudioPatch sink %zu: id %d role %d type %d", i, patch->sinks[i].id,
Eric Laurent874c42872014-08-08 15:13:39 -07002802 patch->sinks[i].role,
2803 patch->sinks[i].type);
2804 }
2805#endif
Eric Laurent6a94d692014-05-20 11:18:06 -07002806
2807 if (index >= 0) {
2808 patchDesc = mAudioPatches.valueAt(index);
2809 ALOGV("createAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
2810 mUidCached, patchDesc->mUid, uid);
2811 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
2812 return INVALID_OPERATION;
2813 }
2814 } else {
Glenn Kastena13cde92016-03-28 15:26:02 -07002815 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07002816 }
2817
2818 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07002819 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002820 if (outputDesc == NULL) {
2821 ALOGV("createAudioPatch() output not found for id %d", patch->sources[0].id);
2822 return BAD_VALUE;
2823 }
Eric Laurent84c70242014-06-23 08:46:27 -07002824 ALOG_ASSERT(!outputDesc->isDuplicated(),"duplicated output %d in source in ports",
2825 outputDesc->mIoHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002826 if (patchDesc != 0) {
2827 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
2828 ALOGV("createAudioPatch() source id differs for patch current id %d new id %d",
2829 patchDesc->mPatch.sources[0].id, patch->sources[0].id);
2830 return BAD_VALUE;
2831 }
2832 }
Eric Laurent874c42872014-08-08 15:13:39 -07002833 DeviceVector devices;
2834 for (size_t i = 0; i < patch->num_sinks; i++) {
2835 // Only support mix to devices connection
2836 // TODO add support for mix to mix connection
2837 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2838 ALOGV("createAudioPatch() source mix but sink is not a device");
2839 return INVALID_OPERATION;
2840 }
2841 sp<DeviceDescriptor> devDesc =
2842 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2843 if (devDesc == 0) {
2844 ALOGV("createAudioPatch() out device not found for id %d", patch->sinks[i].id);
2845 return BAD_VALUE;
2846 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002847
François Gaffie53615e22015-03-19 09:24:12 +01002848 if (!outputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002849 devDesc->mAddress,
Eric Laurent874c42872014-08-08 15:13:39 -07002850 patch->sources[0].sample_rate,
François Gaffie53615e22015-03-19 09:24:12 +01002851 NULL, // updatedSamplingRate
2852 patch->sources[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002853 NULL, // updatedFormat
François Gaffie53615e22015-03-19 09:24:12 +01002854 patch->sources[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002855 NULL, // updatedChannelMask
François Gaffie53615e22015-03-19 09:24:12 +01002856 AUDIO_OUTPUT_FLAG_NONE /*FIXME*/)) {
Andy Hungf129b032015-04-07 13:45:50 -07002857 ALOGV("createAudioPatch() profile not supported for device %08x",
2858 devDesc->type());
Eric Laurent874c42872014-08-08 15:13:39 -07002859 return INVALID_OPERATION;
2860 }
2861 devices.add(devDesc);
2862 }
2863 if (devices.size() == 0) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002864 return INVALID_OPERATION;
2865 }
Eric Laurent874c42872014-08-08 15:13:39 -07002866
Eric Laurent6a94d692014-05-20 11:18:06 -07002867 // TODO: reconfigure output format and channels here
2868 ALOGV("createAudioPatch() setting device %08x on output %d",
Eric Laurent874c42872014-08-08 15:13:39 -07002869 devices.types(), outputDesc->mIoHandle);
Eric Laurentc75307b2015-03-17 15:29:32 -07002870 setOutputDevice(outputDesc, devices.types(), true, 0, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002871 index = mAudioPatches.indexOfKey(*handle);
2872 if (index >= 0) {
2873 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2874 ALOGW("createAudioPatch() setOutputDevice() did not reuse the patch provided");
2875 }
2876 patchDesc = mAudioPatches.valueAt(index);
2877 patchDesc->mUid = uid;
2878 ALOGV("createAudioPatch() success");
2879 } else {
2880 ALOGW("createAudioPatch() setOutputDevice() failed to create a patch");
2881 return INVALID_OPERATION;
2882 }
2883 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
2884 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
2885 // input device to input mix connection
Eric Laurent874c42872014-08-08 15:13:39 -07002886 // only one sink supported when connecting an input device to a mix
2887 if (patch->num_sinks > 1) {
2888 return INVALID_OPERATION;
2889 }
François Gaffie53615e22015-03-19 09:24:12 +01002890 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07002891 if (inputDesc == NULL) {
2892 return BAD_VALUE;
2893 }
2894 if (patchDesc != 0) {
2895 if (patchDesc->mPatch.sinks[0].id != patch->sinks[0].id) {
2896 return BAD_VALUE;
2897 }
2898 }
2899 sp<DeviceDescriptor> devDesc =
2900 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
2901 if (devDesc == 0) {
2902 return BAD_VALUE;
2903 }
2904
François Gaffie53615e22015-03-19 09:24:12 +01002905 if (!inputDesc->mProfile->isCompatibleProfile(devDesc->type(),
Eric Laurent275e8e92014-11-30 15:14:47 -08002906 devDesc->mAddress,
2907 patch->sinks[0].sample_rate,
2908 NULL, /*updatedSampleRate*/
2909 patch->sinks[0].format,
Andy Hungf129b032015-04-07 13:45:50 -07002910 NULL, /*updatedFormat*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002911 patch->sinks[0].channel_mask,
Andy Hungf129b032015-04-07 13:45:50 -07002912 NULL, /*updatedChannelMask*/
Eric Laurent275e8e92014-11-30 15:14:47 -08002913 // FIXME for the parameter type,
2914 // and the NONE
2915 (audio_output_flags_t)
Glenn Kasten6a8ab052014-07-24 14:08:35 -07002916 AUDIO_INPUT_FLAG_NONE)) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002917 return INVALID_OPERATION;
2918 }
2919 // TODO: reconfigure output format and channels here
2920 ALOGV("createAudioPatch() setting device %08x on output %d",
François Gaffie53615e22015-03-19 09:24:12 +01002921 devDesc->type(), inputDesc->mIoHandle);
2922 setInputDevice(inputDesc->mIoHandle, devDesc->type(), true, handle);
Eric Laurent6a94d692014-05-20 11:18:06 -07002923 index = mAudioPatches.indexOfKey(*handle);
2924 if (index >= 0) {
2925 if (patchDesc != 0 && patchDesc != mAudioPatches.valueAt(index)) {
2926 ALOGW("createAudioPatch() setInputDevice() did not reuse the patch provided");
2927 }
2928 patchDesc = mAudioPatches.valueAt(index);
2929 patchDesc->mUid = uid;
2930 ALOGV("createAudioPatch() success");
2931 } else {
2932 ALOGW("createAudioPatch() setInputDevice() failed to create a patch");
2933 return INVALID_OPERATION;
2934 }
2935 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
2936 // device to device connection
2937 if (patchDesc != 0) {
Eric Laurent874c42872014-08-08 15:13:39 -07002938 if (patchDesc->mPatch.sources[0].id != patch->sources[0].id) {
Eric Laurent6a94d692014-05-20 11:18:06 -07002939 return BAD_VALUE;
2940 }
2941 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002942 sp<DeviceDescriptor> srcDeviceDesc =
2943 mAvailableInputDevices.getDeviceFromId(patch->sources[0].id);
Eric Laurent58f8eb72014-09-12 16:19:41 -07002944 if (srcDeviceDesc == 0) {
2945 return BAD_VALUE;
2946 }
Eric Laurent874c42872014-08-08 15:13:39 -07002947
Eric Laurent6a94d692014-05-20 11:18:06 -07002948 //update source and sink with our own data as the data passed in the patch may
2949 // be incomplete.
2950 struct audio_patch newPatch = *patch;
2951 srcDeviceDesc->toAudioPortConfig(&newPatch.sources[0], &patch->sources[0]);
Eric Laurent6a94d692014-05-20 11:18:06 -07002952
Eric Laurent874c42872014-08-08 15:13:39 -07002953 for (size_t i = 0; i < patch->num_sinks; i++) {
2954 if (patch->sinks[i].type != AUDIO_PORT_TYPE_DEVICE) {
2955 ALOGV("createAudioPatch() source device but one sink is not a device");
2956 return INVALID_OPERATION;
2957 }
2958
2959 sp<DeviceDescriptor> sinkDeviceDesc =
2960 mAvailableOutputDevices.getDeviceFromId(patch->sinks[i].id);
2961 if (sinkDeviceDesc == 0) {
2962 return BAD_VALUE;
2963 }
2964 sinkDeviceDesc->toAudioPortConfig(&newPatch.sinks[i], &patch->sinks[i]);
2965
Eric Laurent3bcf8592015-04-03 12:13:24 -07002966 // create a software bridge in PatchPanel if:
Scott Randolphf3172402018-01-23 17:06:53 -08002967 // - source and sink devices are on different HW modules OR
Eric Laurent3bcf8592015-04-03 12:13:24 -07002968 // - audio HAL version is < 3.0
Eric Laurentfb66dd92016-01-28 18:32:03 -08002969 if (!srcDeviceDesc->hasSameHwModuleAs(sinkDeviceDesc) ||
Mikhail Naganov9ee05402016-10-13 15:58:17 -07002970 (srcDeviceDesc->mModule->getHalVersionMajor() < 3)) {
Eric Laurent3bcf8592015-04-03 12:13:24 -07002971 // support only one sink device for now to simplify output selection logic
Eric Laurent874c42872014-08-08 15:13:39 -07002972 if (patch->num_sinks > 1) {
Eric Laurent83b88082014-06-20 18:31:16 -07002973 return INVALID_OPERATION;
2974 }
Eric Laurent874c42872014-08-08 15:13:39 -07002975 SortedVector<audio_io_handle_t> outputs =
François Gaffie53615e22015-03-19 09:24:12 +01002976 getOutputsForDevice(sinkDeviceDesc->type(), mOutputs);
Eric Laurent874c42872014-08-08 15:13:39 -07002977 // if the sink device is reachable via an opened output stream, request to go via
2978 // this output stream by adding a second source to the patch description
Eric Laurent8838a382014-09-08 16:44:28 -07002979 audio_io_handle_t output = selectOutput(outputs,
2980 AUDIO_OUTPUT_FLAG_NONE,
2981 AUDIO_FORMAT_INVALID);
Eric Laurent874c42872014-08-08 15:13:39 -07002982 if (output != AUDIO_IO_HANDLE_NONE) {
2983 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
2984 if (outputDesc->isDuplicated()) {
2985 return INVALID_OPERATION;
2986 }
2987 outputDesc->toAudioPortConfig(&newPatch.sources[1], &patch->sources[0]);
Eric Laurent3bcf8592015-04-03 12:13:24 -07002988 newPatch.sources[1].ext.mix.usecase.stream = AUDIO_STREAM_PATCH;
Eric Laurent874c42872014-08-08 15:13:39 -07002989 newPatch.num_sources = 2;
2990 }
Eric Laurent83b88082014-06-20 18:31:16 -07002991 }
Eric Laurent6a94d692014-05-20 11:18:06 -07002992 }
2993 // TODO: check from routing capabilities in config file and other conflicting patches
2994
2995 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
2996 if (index >= 0) {
2997 afPatchHandle = patchDesc->mAfPatchHandle;
2998 }
2999
3000 status_t status = mpClientInterface->createAudioPatch(&newPatch,
3001 &afPatchHandle,
3002 0);
3003 ALOGV("createAudioPatch() patch panel returned %d patchHandle %d",
3004 status, afPatchHandle);
3005 if (status == NO_ERROR) {
3006 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01003007 patchDesc = new AudioPatch(&newPatch, uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003008 addAudioPatch(patchDesc->mHandle, patchDesc);
3009 } else {
3010 patchDesc->mPatch = newPatch;
3011 }
3012 patchDesc->mAfPatchHandle = afPatchHandle;
3013 *handle = patchDesc->mHandle;
3014 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003015 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003016 } else {
3017 ALOGW("createAudioPatch() patch panel could not connect device patch, error %d",
3018 status);
3019 return INVALID_OPERATION;
3020 }
3021 } else {
3022 return BAD_VALUE;
3023 }
3024 } else {
3025 return BAD_VALUE;
3026 }
3027 return NO_ERROR;
3028}
3029
3030status_t AudioPolicyManager::releaseAudioPatch(audio_patch_handle_t handle,
3031 uid_t uid)
3032{
3033 ALOGV("releaseAudioPatch() patch %d", handle);
3034
3035 ssize_t index = mAudioPatches.indexOfKey(handle);
3036
3037 if (index < 0) {
3038 return BAD_VALUE;
3039 }
3040 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
3041 ALOGV("releaseAudioPatch() mUidCached %d patchDesc->mUid %d uid %d",
3042 mUidCached, patchDesc->mUid, uid);
3043 if (patchDesc->mUid != mUidCached && uid != patchDesc->mUid) {
3044 return INVALID_OPERATION;
3045 }
3046
3047 struct audio_patch *patch = &patchDesc->mPatch;
3048 patchDesc->mUid = mUidCached;
3049 if (patch->sources[0].type == AUDIO_PORT_TYPE_MIX) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003050 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(patch->sources[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003051 if (outputDesc == NULL) {
3052 ALOGV("releaseAudioPatch() output not found for id %d", patch->sources[0].id);
3053 return BAD_VALUE;
3054 }
3055
Eric Laurentc75307b2015-03-17 15:29:32 -07003056 setOutputDevice(outputDesc,
3057 getNewOutputDevice(outputDesc, true /*fromCache*/),
Eric Laurent6a94d692014-05-20 11:18:06 -07003058 true,
3059 0,
3060 NULL);
3061 } else if (patch->sources[0].type == AUDIO_PORT_TYPE_DEVICE) {
3062 if (patch->sinks[0].type == AUDIO_PORT_TYPE_MIX) {
François Gaffie53615e22015-03-19 09:24:12 +01003063 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(patch->sinks[0].id);
Eric Laurent6a94d692014-05-20 11:18:06 -07003064 if (inputDesc == NULL) {
3065 ALOGV("releaseAudioPatch() input not found for id %d", patch->sinks[0].id);
3066 return BAD_VALUE;
3067 }
3068 setInputDevice(inputDesc->mIoHandle,
Eric Laurentfb66dd92016-01-28 18:32:03 -08003069 getNewInputDevice(inputDesc),
Eric Laurent6a94d692014-05-20 11:18:06 -07003070 true,
3071 NULL);
3072 } else if (patch->sinks[0].type == AUDIO_PORT_TYPE_DEVICE) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003073 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3074 ALOGV("releaseAudioPatch() patch panel returned %d patchHandle %d",
3075 status, patchDesc->mAfPatchHandle);
3076 removeAudioPatch(patchDesc->mHandle);
3077 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07003078 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent6a94d692014-05-20 11:18:06 -07003079 } else {
3080 return BAD_VALUE;
3081 }
3082 } else {
3083 return BAD_VALUE;
3084 }
3085 return NO_ERROR;
3086}
3087
3088status_t AudioPolicyManager::listAudioPatches(unsigned int *num_patches,
3089 struct audio_patch *patches,
3090 unsigned int *generation)
3091{
François Gaffie53615e22015-03-19 09:24:12 +01003092 if (generation == NULL) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003093 return BAD_VALUE;
3094 }
Eric Laurent6a94d692014-05-20 11:18:06 -07003095 *generation = curAudioPortGeneration();
François Gaffie53615e22015-03-19 09:24:12 +01003096 return mAudioPatches.listAudioPatches(num_patches, patches);
Eric Laurent6a94d692014-05-20 11:18:06 -07003097}
3098
Eric Laurente1715a42014-05-20 11:30:42 -07003099status_t AudioPolicyManager::setAudioPortConfig(const struct audio_port_config *config)
Eric Laurent6a94d692014-05-20 11:18:06 -07003100{
Eric Laurente1715a42014-05-20 11:30:42 -07003101 ALOGV("setAudioPortConfig()");
3102
3103 if (config == NULL) {
3104 return BAD_VALUE;
3105 }
3106 ALOGV("setAudioPortConfig() on port handle %d", config->id);
3107 // Only support gain configuration for now
Eric Laurenta121f902014-06-03 13:32:54 -07003108 if (config->config_mask != AUDIO_PORT_CONFIG_GAIN) {
3109 return INVALID_OPERATION;
Eric Laurente1715a42014-05-20 11:30:42 -07003110 }
3111
Eric Laurenta121f902014-06-03 13:32:54 -07003112 sp<AudioPortConfig> audioPortConfig;
Eric Laurente1715a42014-05-20 11:30:42 -07003113 if (config->type == AUDIO_PORT_TYPE_MIX) {
3114 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003115 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.getOutputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003116 if (outputDesc == NULL) {
3117 return BAD_VALUE;
3118 }
Eric Laurent84c70242014-06-23 08:46:27 -07003119 ALOG_ASSERT(!outputDesc->isDuplicated(),
3120 "setAudioPortConfig() called on duplicated output %d",
3121 outputDesc->mIoHandle);
Eric Laurenta121f902014-06-03 13:32:54 -07003122 audioPortConfig = outputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003123 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
François Gaffie53615e22015-03-19 09:24:12 +01003124 sp<AudioInputDescriptor> inputDesc = mInputs.getInputFromId(config->id);
Eric Laurente1715a42014-05-20 11:30:42 -07003125 if (inputDesc == NULL) {
3126 return BAD_VALUE;
3127 }
Eric Laurenta121f902014-06-03 13:32:54 -07003128 audioPortConfig = inputDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003129 } else {
3130 return BAD_VALUE;
3131 }
3132 } else if (config->type == AUDIO_PORT_TYPE_DEVICE) {
3133 sp<DeviceDescriptor> deviceDesc;
3134 if (config->role == AUDIO_PORT_ROLE_SOURCE) {
3135 deviceDesc = mAvailableInputDevices.getDeviceFromId(config->id);
3136 } else if (config->role == AUDIO_PORT_ROLE_SINK) {
3137 deviceDesc = mAvailableOutputDevices.getDeviceFromId(config->id);
3138 } else {
3139 return BAD_VALUE;
3140 }
3141 if (deviceDesc == NULL) {
3142 return BAD_VALUE;
3143 }
Eric Laurenta121f902014-06-03 13:32:54 -07003144 audioPortConfig = deviceDesc;
Eric Laurente1715a42014-05-20 11:30:42 -07003145 } else {
3146 return BAD_VALUE;
3147 }
3148
Eric Laurenta121f902014-06-03 13:32:54 -07003149 struct audio_port_config backupConfig;
3150 status_t status = audioPortConfig->applyAudioPortConfig(config, &backupConfig);
3151 if (status == NO_ERROR) {
3152 struct audio_port_config newConfig;
3153 audioPortConfig->toAudioPortConfig(&newConfig, config);
3154 status = mpClientInterface->setAudioPortConfig(&newConfig, 0);
Eric Laurente1715a42014-05-20 11:30:42 -07003155 }
Eric Laurenta121f902014-06-03 13:32:54 -07003156 if (status != NO_ERROR) {
3157 audioPortConfig->applyAudioPortConfig(&backupConfig);
Eric Laurente1715a42014-05-20 11:30:42 -07003158 }
Eric Laurente1715a42014-05-20 11:30:42 -07003159
3160 return status;
Eric Laurent6a94d692014-05-20 11:18:06 -07003161}
3162
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003163void AudioPolicyManager::releaseResourcesForUid(uid_t uid)
3164{
Eric Laurentd60560a2015-04-10 11:31:20 -07003165 clearAudioSources(uid);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003166 clearAudioPatches(uid);
3167 clearSessionRoutes(uid);
3168}
3169
Eric Laurent6a94d692014-05-20 11:18:06 -07003170void AudioPolicyManager::clearAudioPatches(uid_t uid)
3171{
Eric Laurent0add0fd2014-12-04 18:58:14 -08003172 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
Eric Laurent6a94d692014-05-20 11:18:06 -07003173 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
3174 if (patchDesc->mUid == uid) {
Eric Laurent0add0fd2014-12-04 18:58:14 -08003175 releaseAudioPatch(mAudioPatches.keyAt(i), uid);
Eric Laurent6a94d692014-05-20 11:18:06 -07003176 }
3177 }
3178}
3179
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003180void AudioPolicyManager::checkStrategyRoute(routing_strategy strategy,
3181 audio_io_handle_t ouptutToSkip)
3182{
3183 audio_devices_t device = getDeviceForStrategy(strategy, false /*fromCache*/);
3184 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(device, mOutputs);
3185 for (size_t j = 0; j < mOutputs.size(); j++) {
3186 if (mOutputs.keyAt(j) == ouptutToSkip) {
3187 continue;
3188 }
3189 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueAt(j);
3190 if (!isStrategyActive(outputDesc, (routing_strategy)strategy)) {
3191 continue;
3192 }
3193 // If the default device for this strategy is on another output mix,
3194 // invalidate all tracks in this strategy to force re connection.
3195 // Otherwise select new device on the output mix.
3196 if (outputs.indexOf(mOutputs.keyAt(j)) < 0) {
Eric Laurent794fde22016-03-11 09:50:45 -08003197 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003198 if (getStrategy((audio_stream_type_t)stream) == strategy) {
3199 mpClientInterface->invalidateStream((audio_stream_type_t)stream);
3200 }
3201 }
3202 } else {
3203 audio_devices_t newDevice = getNewOutputDevice(outputDesc, false /*fromCache*/);
3204 setOutputDevice(outputDesc, newDevice, false);
3205 }
3206 }
3207}
3208
3209void AudioPolicyManager::clearSessionRoutes(uid_t uid)
3210{
3211 // remove output routes associated with this uid
3212 SortedVector<routing_strategy> affectedStrategies;
3213 for (ssize_t i = (ssize_t)mOutputRoutes.size() - 1; i >= 0; i--) {
3214 sp<SessionRoute> route = mOutputRoutes.valueAt(i);
3215 if (route->mUid == uid) {
3216 mOutputRoutes.removeItemsAt(i);
3217 if (route->mDeviceDescriptor != 0) {
3218 affectedStrategies.add(getStrategy(route->mStreamType));
3219 }
3220 }
3221 }
3222 // reroute outputs if necessary
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003223 for (const auto& strategy : affectedStrategies) {
3224 checkStrategyRoute(strategy, AUDIO_IO_HANDLE_NONE);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003225 }
3226
3227 // remove input routes associated with this uid
3228 SortedVector<audio_source_t> affectedSources;
3229 for (ssize_t i = (ssize_t)mInputRoutes.size() - 1; i >= 0; i--) {
3230 sp<SessionRoute> route = mInputRoutes.valueAt(i);
3231 if (route->mUid == uid) {
3232 mInputRoutes.removeItemsAt(i);
3233 if (route->mDeviceDescriptor != 0) {
3234 affectedSources.add(route->mSource);
3235 }
3236 }
3237 }
3238 // reroute inputs if necessary
3239 SortedVector<audio_io_handle_t> inputsToClose;
3240 for (size_t i = 0; i < mInputs.size(); i++) {
3241 sp<AudioInputDescriptor> inputDesc = mInputs.valueAt(i);
Eric Laurent599c7582015-12-07 18:05:55 -08003242 if (affectedSources.indexOf(inputDesc->inputSource()) >= 0) {
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003243 inputsToClose.add(inputDesc->mIoHandle);
3244 }
3245 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003246 for (const auto& input : inputsToClose) {
3247 closeInput(input);
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003248 }
3249}
3250
Eric Laurentd60560a2015-04-10 11:31:20 -07003251void AudioPolicyManager::clearAudioSources(uid_t uid)
3252{
3253 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
3254 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3255 if (sourceDesc->mUid == uid) {
3256 stopAudioSource(mAudioSources.keyAt(i));
3257 }
3258 }
3259}
Eric Laurent8c7e6da2015-04-21 17:37:00 -07003260
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003261status_t AudioPolicyManager::acquireSoundTriggerSession(audio_session_t *session,
3262 audio_io_handle_t *ioHandle,
3263 audio_devices_t *device)
3264{
Glenn Kastenf0c6d7d2016-02-26 10:44:04 -08003265 *session = (audio_session_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_SESSION);
3266 *ioHandle = (audio_io_handle_t)mpClientInterface->newAudioUniqueId(AUDIO_UNIQUE_ID_USE_INPUT);
Eric Laurentc73ca6e2014-12-12 14:34:22 -08003267 *device = getDeviceAndMixForInputSource(AUDIO_SOURCE_HOTWORD);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003268
François Gaffiedf372692015-03-19 10:43:27 +01003269 return mSoundTriggerSessions.acquireSession(*session, *ioHandle);
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07003270}
3271
Eric Laurentd60560a2015-04-10 11:31:20 -07003272status_t AudioPolicyManager::startAudioSource(const struct audio_port_config *source,
3273 const audio_attributes_t *attributes,
Glenn Kasten559d4392016-03-29 13:42:57 -07003274 audio_patch_handle_t *handle,
Eric Laurentd60560a2015-04-10 11:31:20 -07003275 uid_t uid)
Eric Laurent554a2772015-04-10 11:29:24 -07003276{
Eric Laurentd60560a2015-04-10 11:31:20 -07003277 ALOGV("%s source %p attributes %p handle %p", __FUNCTION__, source, attributes, handle);
3278 if (source == NULL || attributes == NULL || handle == NULL) {
3279 return BAD_VALUE;
3280 }
3281
Glenn Kasten559d4392016-03-29 13:42:57 -07003282 *handle = AUDIO_PATCH_HANDLE_NONE;
Eric Laurentd60560a2015-04-10 11:31:20 -07003283
3284 if (source->role != AUDIO_PORT_ROLE_SOURCE ||
3285 source->type != AUDIO_PORT_TYPE_DEVICE) {
3286 ALOGV("%s INVALID_OPERATION source->role %d source->type %d", __FUNCTION__, source->role, source->type);
3287 return INVALID_OPERATION;
3288 }
3289
3290 sp<DeviceDescriptor> srcDeviceDesc =
3291 mAvailableInputDevices.getDevice(source->ext.device.type,
3292 String8(source->ext.device.address));
3293 if (srcDeviceDesc == 0) {
3294 ALOGV("%s source->ext.device.type %08x not found", __FUNCTION__, source->ext.device.type);
3295 return BAD_VALUE;
3296 }
3297 sp<AudioSourceDescriptor> sourceDesc =
3298 new AudioSourceDescriptor(srcDeviceDesc, attributes, uid);
3299
3300 struct audio_patch dummyPatch;
3301 sp<AudioPatch> patchDesc = new AudioPatch(&dummyPatch, uid);
3302 sourceDesc->mPatchDesc = patchDesc;
3303
3304 status_t status = connectAudioSource(sourceDesc);
3305 if (status == NO_ERROR) {
3306 mAudioSources.add(sourceDesc->getHandle(), sourceDesc);
3307 *handle = sourceDesc->getHandle();
3308 }
3309 return status;
3310}
3311
3312status_t AudioPolicyManager::connectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3313{
3314 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3315
3316 // make sure we only have one patch per source.
3317 disconnectAudioSource(sourceDesc);
3318
3319 routing_strategy strategy = (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
Eric Laurent28d09f02016-03-08 10:43:05 -08003320 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003321 sp<DeviceDescriptor> srcDeviceDesc = sourceDesc->mDevice;
3322
3323 audio_devices_t sinkDevice = getDeviceForStrategy(strategy, true);
3324 sp<DeviceDescriptor> sinkDeviceDesc =
3325 mAvailableOutputDevices.getDevice(sinkDevice, String8(""));
3326
3327 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
3328 struct audio_patch *patch = &sourceDesc->mPatchDesc->mPatch;
3329
3330 if (srcDeviceDesc->getAudioPort()->mModule->getHandle() ==
3331 sinkDeviceDesc->getAudioPort()->mModule->getHandle() &&
Mikhail Naganov9ee05402016-10-13 15:58:17 -07003332 srcDeviceDesc->getAudioPort()->mModule->getHalVersionMajor() >= 3 &&
Eric Laurentd60560a2015-04-10 11:31:20 -07003333 srcDeviceDesc->getAudioPort()->mGains.size() > 0) {
3334 ALOGV("%s AUDIO_DEVICE_API_VERSION_3_0", __FUNCTION__);
3335 // create patch between src device and output device
3336 // create Hwoutput and add to mHwOutputs
3337 } else {
3338 SortedVector<audio_io_handle_t> outputs = getOutputsForDevice(sinkDevice, mOutputs);
3339 audio_io_handle_t output =
3340 selectOutput(outputs, AUDIO_OUTPUT_FLAG_NONE, AUDIO_FORMAT_INVALID);
3341 if (output == AUDIO_IO_HANDLE_NONE) {
3342 ALOGV("%s no output for device %08x", __FUNCTION__, sinkDevice);
3343 return INVALID_OPERATION;
3344 }
3345 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
3346 if (outputDesc->isDuplicated()) {
3347 ALOGV("%s output for device %08x is duplicated", __FUNCTION__, sinkDevice);
3348 return INVALID_OPERATION;
3349 }
Eric Laurent733ce942017-12-07 12:18:25 -08003350 status_t status = outputDesc->start();
3351 if (status != NO_ERROR) {
3352 return status;
3353 }
3354
Eric Laurentd60560a2015-04-10 11:31:20 -07003355 // create a special patch with no sink and two sources:
3356 // - the second source indicates to PatchPanel through which output mix this patch should
3357 // be connected as well as the stream type for volume control
3358 // - the sink is defined by whatever output device is currently selected for the output
3359 // though which this patch is routed.
3360 patch->num_sinks = 0;
3361 patch->num_sources = 2;
3362 srcDeviceDesc->toAudioPortConfig(&patch->sources[0], NULL);
3363 outputDesc->toAudioPortConfig(&patch->sources[1], NULL);
3364 patch->sources[1].ext.mix.usecase.stream = stream;
Eric Laurent733ce942017-12-07 12:18:25 -08003365 status = mpClientInterface->createAudioPatch(patch,
Eric Laurentd60560a2015-04-10 11:31:20 -07003366 &afPatchHandle,
3367 0);
3368 ALOGV("%s patch panel returned %d patchHandle %d", __FUNCTION__,
3369 status, afPatchHandle);
3370 if (status != NO_ERROR) {
3371 ALOGW("%s patch panel could not connect device patch, error %d",
3372 __FUNCTION__, status);
3373 return INVALID_OPERATION;
3374 }
3375 uint32_t delayMs = 0;
Eric Laurentc40d9692016-04-13 19:14:13 -07003376 status = startSource(outputDesc, stream, sinkDevice, NULL, &delayMs);
Eric Laurentd60560a2015-04-10 11:31:20 -07003377
3378 if (status != NO_ERROR) {
3379 mpClientInterface->releaseAudioPatch(sourceDesc->mPatchDesc->mAfPatchHandle, 0);
3380 return status;
3381 }
3382 sourceDesc->mSwOutput = outputDesc;
3383 if (delayMs != 0) {
3384 usleep(delayMs * 1000);
3385 }
3386 }
3387
3388 sourceDesc->mPatchDesc->mAfPatchHandle = afPatchHandle;
3389 addAudioPatch(sourceDesc->mPatchDesc->mHandle, sourceDesc->mPatchDesc);
3390
3391 return NO_ERROR;
Eric Laurent554a2772015-04-10 11:29:24 -07003392}
3393
Glenn Kasten559d4392016-03-29 13:42:57 -07003394status_t AudioPolicyManager::stopAudioSource(audio_patch_handle_t handle __unused)
Eric Laurent554a2772015-04-10 11:29:24 -07003395{
Eric Laurentd60560a2015-04-10 11:31:20 -07003396 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueFor(handle);
3397 ALOGV("%s handle %d", __FUNCTION__, handle);
3398 if (sourceDesc == 0) {
3399 ALOGW("%s unknown source for handle %d", __FUNCTION__, handle);
3400 return BAD_VALUE;
3401 }
3402 status_t status = disconnectAudioSource(sourceDesc);
3403
3404 mAudioSources.removeItem(handle);
3405 return status;
3406}
3407
Andy Hung2ddee192015-12-18 17:34:44 -08003408status_t AudioPolicyManager::setMasterMono(bool mono)
3409{
3410 if (mMasterMono == mono) {
3411 return NO_ERROR;
3412 }
3413 mMasterMono = mono;
3414 // if enabling mono we close all offloaded devices, which will invalidate the
3415 // corresponding AudioTrack. The AudioTrack client/MediaPlayer is responsible
3416 // for recreating the new AudioTrack as non-offloaded PCM.
3417 //
3418 // If disabling mono, we leave all tracks as is: we don't know which clients
3419 // and tracks are able to be recreated as offloaded. The next "song" should
3420 // play back offloaded.
3421 if (mMasterMono) {
3422 Vector<audio_io_handle_t> offloaded;
3423 for (size_t i = 0; i < mOutputs.size(); ++i) {
3424 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
3425 if (desc->mFlags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
3426 offloaded.push(desc->mIoHandle);
3427 }
3428 }
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003429 for (const auto& handle : offloaded) {
3430 closeOutput(handle);
Andy Hung2ddee192015-12-18 17:34:44 -08003431 }
3432 }
3433 // update master mono for all remaining outputs
3434 for (size_t i = 0; i < mOutputs.size(); ++i) {
3435 updateMono(mOutputs.keyAt(i));
3436 }
3437 return NO_ERROR;
3438}
3439
3440status_t AudioPolicyManager::getMasterMono(bool *mono)
3441{
3442 *mono = mMasterMono;
3443 return NO_ERROR;
3444}
3445
Eric Laurentac9cef52017-06-09 15:46:26 -07003446float AudioPolicyManager::getStreamVolumeDB(
3447 audio_stream_type_t stream, int index, audio_devices_t device)
3448{
3449 return computeVolume(stream, index, device);
3450}
3451
Svet Ganovf4ddfef2018-01-16 07:37:58 -08003452void AudioPolicyManager::setRecordSilenced(uid_t uid, bool silenced)
3453{
3454 ALOGV("AudioPolicyManager:setRecordSilenced(uid:%d, silenced:%d)", uid, silenced);
3455
3456 Vector<sp<AudioInputDescriptor> > activeInputs = mInputs.getActiveInputs();
3457 for (size_t i = 0; i < activeInputs.size(); i++) {
3458 sp<AudioInputDescriptor> activeDesc = activeInputs[i];
3459 AudioSessionCollection activeSessions = activeDesc->getAudioSessions(true);
3460 for (size_t j = 0; j < activeSessions.size(); j++) {
3461 sp<AudioSession> activeSession = activeSessions.valueAt(j);
3462 if (activeSession->uid() == uid) {
3463 activeSession->setSilenced(silenced);
3464 }
3465 }
3466 }
3467}
3468
Eric Laurentd60560a2015-04-10 11:31:20 -07003469status_t AudioPolicyManager::disconnectAudioSource(const sp<AudioSourceDescriptor>& sourceDesc)
3470{
3471 ALOGV("%s handle %d", __FUNCTION__, sourceDesc->getHandle());
3472
3473 sp<AudioPatch> patchDesc = mAudioPatches.valueFor(sourceDesc->mPatchDesc->mHandle);
3474 if (patchDesc == 0) {
3475 ALOGW("%s source has no patch with handle %d", __FUNCTION__,
3476 sourceDesc->mPatchDesc->mHandle);
3477 return BAD_VALUE;
3478 }
3479 removeAudioPatch(sourceDesc->mPatchDesc->mHandle);
3480
Eric Laurent28d09f02016-03-08 10:43:05 -08003481 audio_stream_type_t stream = streamTypefromAttributesInt(&sourceDesc->mAttributes);
Eric Laurentd60560a2015-04-10 11:31:20 -07003482 sp<SwAudioOutputDescriptor> swOutputDesc = sourceDesc->mSwOutput.promote();
3483 if (swOutputDesc != 0) {
Eric Laurent733ce942017-12-07 12:18:25 -08003484 status_t status = stopSource(swOutputDesc, stream, false);
3485 if (status == NO_ERROR) {
3486 swOutputDesc->stop();
3487 }
Eric Laurentd60560a2015-04-10 11:31:20 -07003488 mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
3489 } else {
3490 sp<HwAudioOutputDescriptor> hwOutputDesc = sourceDesc->mHwOutput.promote();
3491 if (hwOutputDesc != 0) {
3492 // release patch between src device and output device
3493 // close Hwoutput and remove from mHwOutputs
3494 } else {
3495 ALOGW("%s source has neither SW nor HW output", __FUNCTION__);
3496 }
3497 }
3498 return NO_ERROR;
3499}
3500
3501sp<AudioSourceDescriptor> AudioPolicyManager::getSourceForStrategyOnOutput(
3502 audio_io_handle_t output, routing_strategy strategy)
3503{
3504 sp<AudioSourceDescriptor> source;
3505 for (size_t i = 0; i < mAudioSources.size(); i++) {
3506 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
3507 routing_strategy sourceStrategy =
3508 (routing_strategy) getStrategyForAttr(&sourceDesc->mAttributes);
3509 sp<SwAudioOutputDescriptor> outputDesc = sourceDesc->mSwOutput.promote();
3510 if (sourceStrategy == strategy && outputDesc != 0 && outputDesc->mIoHandle == output) {
3511 source = sourceDesc;
3512 break;
3513 }
3514 }
3515 return source;
Eric Laurent554a2772015-04-10 11:29:24 -07003516}
3517
Eric Laurente552edb2014-03-10 17:42:56 -07003518// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -07003519// AudioPolicyManager
Eric Laurente552edb2014-03-10 17:42:56 -07003520// ----------------------------------------------------------------------------
Eric Laurent6a94d692014-05-20 11:18:06 -07003521uint32_t AudioPolicyManager::nextAudioPortGeneration()
3522{
Mikhail Naganov2773dd72017-12-08 10:12:11 -08003523 return mAudioPortGeneration++;
Eric Laurent6a94d692014-05-20 11:18:06 -07003524}
3525
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003526#ifdef USE_XML_AUDIO_POLICY_CONF
3527// Treblized audio policy xml config will be located in /odm/etc or /vendor/etc.
3528static const char *kConfigLocationList[] =
3529 {"/odm/etc", "/vendor/etc", "/system/etc"};
3530static const int kConfigLocationListSize =
3531 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
3532
3533static status_t deserializeAudioPolicyXmlConfig(AudioPolicyConfig &config) {
3534 char audioPolicyXmlConfigFile[AUDIO_POLICY_XML_CONFIG_FILE_PATH_MAX_LENGTH];
3535 status_t ret;
3536
3537 for (int i = 0; i < kConfigLocationListSize; i++) {
3538 PolicySerializer serializer;
Aniket Kumar Lata2ad79392018-01-31 20:26:59 -08003539 bool use_a2dp_offload_config =
3540 property_get_bool("persist.bluetooth.a2dp_offload.enable", false);
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003541 snprintf(audioPolicyXmlConfigFile,
3542 sizeof(audioPolicyXmlConfigFile),
3543 "%s/%s",
3544 kConfigLocationList[i],
Aniket Kumar Lata2ad79392018-01-31 20:26:59 -08003545 use_a2dp_offload_config ? AUDIO_POLICY_A2DP_OFFLOAD_XML_CONFIG_FILE_NAME :
3546 AUDIO_POLICY_XML_CONFIG_FILE_NAME);
Jaekyun Seok0d4a6af2017-02-17 17:10:17 +09003547 ret = serializer.deserialize(audioPolicyXmlConfigFile, config);
3548 if (ret == NO_ERROR) {
3549 break;
3550 }
3551 }
3552 return ret;
3553}
3554#endif
3555
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003556AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface,
3557 bool /*forTesting*/)
Eric Laurente552edb2014-03-10 17:42:56 -07003558 :
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003559 mUidCached(getuid()),
3560 mpClientInterface(clientInterface),
Eric Laurente552edb2014-03-10 17:42:56 -07003561 mLimitRingtoneVolume(false), mLastVoiceVolume(-1.0f),
Eric Laurent3a4311c2014-03-17 12:00:47 -07003562 mA2dpSuspended(false),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003563#ifdef USE_XML_AUDIO_POLICY_CONF
3564 mVolumeCurves(new VolumeCurvesCollection()),
3565 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -08003566 mDefaultOutputDevice, static_cast<VolumeCurvesCollection*>(mVolumeCurves.get())),
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003567#else
3568 mVolumeCurves(new StreamDescriptorCollection()),
3569 mConfig(mHwModulesAll, mAvailableOutputDevices, mAvailableInputDevices,
3570 mDefaultOutputDevice),
3571#endif
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07003572 mAudioPortGeneration(1),
3573 mBeaconMuteRefCount(0),
3574 mBeaconPlayingRefCount(0),
Eric Laurent9459fb02015-08-12 18:36:32 -07003575 mBeaconMuted(false),
Andy Hung2ddee192015-12-18 17:34:44 -08003576 mTtsOutputAvailable(false),
Eric Laurent36829f92017-04-07 19:04:42 -07003577 mMasterMono(false),
Chris Thornton2b864642017-06-27 21:26:07 -07003578 mMusicEffectOutput(AUDIO_IO_HANDLE_NONE),
3579 mHasComputedSoundTriggerSupportsConcurrentCapture(false)
Eric Laurente552edb2014-03-10 17:42:56 -07003580{
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003581}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003582
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003583AudioPolicyManager::AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
3584 : AudioPolicyManager(clientInterface, false /*forTesting*/)
3585{
3586 loadConfig();
3587 initialize();
3588}
François Gaffied1ab2bd2015-12-02 18:20:06 +01003589
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003590void AudioPolicyManager::loadConfig() {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003591#ifdef USE_XML_AUDIO_POLICY_CONF
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003592 if (deserializeAudioPolicyXmlConfig(getConfig()) != NO_ERROR) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003593#else
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003594 if ((ConfigParsingUtils::loadConfig(AUDIO_POLICY_VENDOR_CONFIG_FILE, getConfig()) != NO_ERROR)
3595 && (ConfigParsingUtils::loadConfig(AUDIO_POLICY_CONFIG_FILE, getConfig()) != NO_ERROR)) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01003596#endif
3597 ALOGE("could not load audio policy configuration file, setting defaults");
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003598 getConfig().setDefault();
François Gaffied1ab2bd2015-12-02 18:20:06 +01003599 }
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003600}
3601
3602status_t AudioPolicyManager::initialize() {
3603 mVolumeCurves->initializeVolumeCurves(getConfig().isSpeakerDrcEnabled());
François Gaffied1ab2bd2015-12-02 18:20:06 +01003604
3605 // Once policy config has been parsed, retrieve an instance of the engine and initialize it.
François Gaffie2110e042015-03-24 08:41:51 +01003606 audio_policy::EngineInstance *engineInstance = audio_policy::EngineInstance::getInstance();
3607 if (!engineInstance) {
3608 ALOGE("%s: Could not get an instance of policy engine", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003609 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003610 }
3611 // Retrieve the Policy Manager Interface
3612 mEngine = engineInstance->queryInterface<AudioPolicyManagerInterface>();
3613 if (mEngine == NULL) {
3614 ALOGE("%s: Failed to get Policy Engine Interface", __FUNCTION__);
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003615 return NO_INIT;
François Gaffie2110e042015-03-24 08:41:51 +01003616 }
3617 mEngine->setObserver(this);
3618 status_t status = mEngine->initCheck();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003619 if (status != NO_ERROR) {
3620 LOG_FATAL("Policy engine not initialized(err=%d)", status);
3621 return status;
3622 }
François Gaffie2110e042015-03-24 08:41:51 +01003623
Eric Laurent3a4311c2014-03-17 12:00:47 -07003624 // mAvailableOutputDevices and mAvailableInputDevices now contain all attached devices
Eric Laurente552edb2014-03-10 17:42:56 -07003625 // open all output streams needed to access attached devices
Eric Laurent3a4311c2014-03-17 12:00:47 -07003626 audio_devices_t outputDeviceTypes = mAvailableOutputDevices.types();
3627 audio_devices_t inputDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
Mikhail Naganovd4120142017-12-06 15:49:22 -08003628 for (const auto& hwModule : mHwModulesAll) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003629 hwModule->setHandle(mpClientInterface->loadHwModule(hwModule->getName()));
Mikhail Naganovd4120142017-12-06 15:49:22 -08003630 if (hwModule->getHandle() == AUDIO_MODULE_HANDLE_NONE) {
3631 ALOGW("could not open HW module %s", hwModule->getName());
Eric Laurente552edb2014-03-10 17:42:56 -07003632 continue;
3633 }
Mikhail Naganovd4120142017-12-06 15:49:22 -08003634 mHwModules.push_back(hwModule);
Eric Laurente552edb2014-03-10 17:42:56 -07003635 // open all output streams needed to access attached devices
3636 // except for direct output streams that are only opened when they are actually
3637 // required by an app.
Eric Laurent3a4311c2014-03-17 12:00:47 -07003638 // This also validates mAvailableOutputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003639 for (const auto& outProfile : hwModule->getOutputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003640 if (!outProfile->canOpenNewIo()) {
3641 ALOGE("Invalid Output profile max open count %u for profile %s",
3642 outProfile->maxOpenCount, outProfile->getTagName().c_str());
3643 continue;
3644 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003645 if (!outProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003646 ALOGW("Output profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003647 continue;
3648 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003649 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_TTS) != 0) {
Eric Laurent9459fb02015-08-12 18:36:32 -07003650 mTtsOutputAvailable = true;
3651 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003652
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003653 if ((outProfile->getFlags() & AUDIO_OUTPUT_FLAG_DIRECT) != 0) {
Eric Laurentd78f1532014-09-16 16:38:20 -07003654 continue;
3655 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003656 audio_devices_t profileType = outProfile->getSupportedDevicesType();
François Gaffie53615e22015-03-19 09:24:12 +01003657 if ((profileType & mDefaultOutputDevice->type()) != AUDIO_DEVICE_NONE) {
3658 profileType = mDefaultOutputDevice->type();
Eric Laurent83b88082014-06-20 18:31:16 -07003659 } else {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003660 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003661 // outputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003662 profileType = outProfile->getSupportedDeviceForType(outputDeviceTypes);
Eric Laurente552edb2014-03-10 17:42:56 -07003663 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003664 if ((profileType & outputDeviceTypes) == 0) {
3665 continue;
3666 }
Eric Laurentc75307b2015-03-17 15:29:32 -07003667 sp<SwAudioOutputDescriptor> outputDesc = new SwAudioOutputDescriptor(outProfile,
3668 mpClientInterface);
Eric Laurentc40d9692016-04-13 19:14:13 -07003669 const DeviceVector &supportedDevices = outProfile->getSupportedDevices();
3670 const DeviceVector &devicesForType = supportedDevices.getDevicesFromType(profileType);
3671 String8 address = devicesForType.size() > 0 ? devicesForType.itemAt(0)->mAddress
3672 : String8("");
Eric Laurentd78f1532014-09-16 16:38:20 -07003673 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003674 status_t status = outputDesc->open(nullptr, profileType, address,
3675 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurentd78f1532014-09-16 16:38:20 -07003676
3677 if (status != NO_ERROR) {
3678 ALOGW("Cannot open output stream for device %08x on hw module %s",
3679 outputDesc->mDevice,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003680 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003681 } else {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003682 for (const auto& dev : supportedDevices) {
3683 ssize_t index = mAvailableOutputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003684 // give a valid ID to an attached device once confirmed it is reachable
Paul McLeane743a472015-01-28 11:07:31 -08003685 if (index >= 0 && !mAvailableOutputDevices[index]->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003686 mAvailableOutputDevices[index]->attach(hwModule);
Eric Laurentd78f1532014-09-16 16:38:20 -07003687 }
3688 }
3689 if (mPrimaryOutput == 0 &&
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003690 outProfile->getFlags() & AUDIO_OUTPUT_FLAG_PRIMARY) {
Eric Laurentc75307b2015-03-17 15:29:32 -07003691 mPrimaryOutput = outputDesc;
Eric Laurentd78f1532014-09-16 16:38:20 -07003692 }
3693 addOutput(output, outputDesc);
Eric Laurentc75307b2015-03-17 15:29:32 -07003694 setOutputDevice(outputDesc,
Eric Laurentfe231122017-11-17 17:48:06 -08003695 profileType,
Eric Laurentc40d9692016-04-13 19:14:13 -07003696 true,
3697 0,
3698 NULL,
Eric Laurentfe231122017-11-17 17:48:06 -08003699 address);
Eric Laurentd78f1532014-09-16 16:38:20 -07003700 }
Eric Laurente552edb2014-03-10 17:42:56 -07003701 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003702 // open input streams needed to access attached devices to validate
3703 // mAvailableInputDevices list
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003704 for (const auto& inProfile : hwModule->getInputProfiles()) {
Eric Laurent3974e3b2017-12-07 17:58:43 -08003705 if (!inProfile->canOpenNewIo()) {
3706 ALOGE("Invalid Input profile max open count %u for profile %s",
3707 inProfile->maxOpenCount, inProfile->getTagName().c_str());
3708 continue;
3709 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003710 if (!inProfile->hasSupportedDevices()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003711 ALOGW("Input profile contains no device on module %s", hwModule->getName());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003712 continue;
3713 }
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003714 // chose first device present in profile's SupportedDevices also part of
Eric Laurentd78f1532014-09-16 16:38:20 -07003715 // inputDeviceTypes
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003716 audio_devices_t profileType = inProfile->getSupportedDeviceForType(inputDeviceTypes);
3717
Eric Laurentd78f1532014-09-16 16:38:20 -07003718 if ((profileType & inputDeviceTypes) == 0) {
3719 continue;
3720 }
Jean-Michel Trivi2f4fe9f2015-12-04 16:20:59 -08003721 sp<AudioInputDescriptor> inputDesc =
Eric Laurentfe231122017-11-17 17:48:06 -08003722 new AudioInputDescriptor(inProfile, mpClientInterface);
Eric Laurentd78f1532014-09-16 16:38:20 -07003723
Eric Laurent53b810e2017-12-10 17:25:10 -08003724 DeviceVector inputDevices = mAvailableInputDevices.getDevicesFromType(profileType);
3725 // the inputs vector must be of size >= 1, but we don't want to crash here
3726 String8 address = inputDevices.size() > 0 ? inputDevices.itemAt(0)->mAddress
3727 : String8("");
3728 ALOGV(" for input device 0x%x using address %s", profileType, address.string());
3729 ALOGE_IF(inputDevices.size() == 0, "Input device list is empty!");
3730
Eric Laurentd78f1532014-09-16 16:38:20 -07003731 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003732 status_t status = inputDesc->open(nullptr,
3733 profileType,
Eric Laurent53b810e2017-12-10 17:25:10 -08003734 address,
Eric Laurentfe231122017-11-17 17:48:06 -08003735 AUDIO_SOURCE_MIC,
3736 AUDIO_INPUT_FLAG_NONE,
3737 &input);
Eric Laurentd78f1532014-09-16 16:38:20 -07003738
3739 if (status == NO_ERROR) {
Mikhail Naganovcf84e592017-12-07 11:25:11 -08003740 for (const auto& dev : inProfile->getSupportedDevices()) {
3741 ssize_t index = mAvailableInputDevices.indexOf(dev);
Eric Laurentd78f1532014-09-16 16:38:20 -07003742 // give a valid ID to an attached device once confirmed it is reachable
Eric Laurent45aabc32015-08-06 09:11:13 -07003743 if (index >= 0) {
3744 sp<DeviceDescriptor> devDesc = mAvailableInputDevices[index];
3745 if (!devDesc->isAttached()) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08003746 devDesc->attach(hwModule);
Eric Laurent83efe1c2017-07-09 16:51:08 -07003747 devDesc->importAudioPort(inProfile, true);
Eric Laurent45aabc32015-08-06 09:11:13 -07003748 }
Eric Laurentd78f1532014-09-16 16:38:20 -07003749 }
3750 }
Eric Laurentfe231122017-11-17 17:48:06 -08003751 inputDesc->close();
Eric Laurentd78f1532014-09-16 16:38:20 -07003752 } else {
3753 ALOGW("Cannot open input stream for device %08x on hw module %s",
Eric Laurentfe231122017-11-17 17:48:06 -08003754 profileType,
Mikhail Naganovd4120142017-12-06 15:49:22 -08003755 hwModule->getName());
Eric Laurentd78f1532014-09-16 16:38:20 -07003756 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003757 }
3758 }
3759 // make sure all attached devices have been allocated a unique ID
3760 for (size_t i = 0; i < mAvailableOutputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003761 if (!mAvailableOutputDevices[i]->isAttached()) {
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003762 ALOGW("Output device %08x unreachable", mAvailableOutputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003763 mAvailableOutputDevices.remove(mAvailableOutputDevices[i]);
3764 continue;
3765 }
François Gaffie2110e042015-03-24 08:41:51 +01003766 // The device is now validated and can be appended to the available devices of the engine
3767 mEngine->setDeviceConnectionState(mAvailableOutputDevices[i],
3768 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003769 i++;
3770 }
3771 for (size_t i = 0; i < mAvailableInputDevices.size();) {
Paul McLeane743a472015-01-28 11:07:31 -08003772 if (!mAvailableInputDevices[i]->isAttached()) {
François Gaffie53615e22015-03-19 09:24:12 +01003773 ALOGW("Input device %08x unreachable", mAvailableInputDevices[i]->type());
Eric Laurent3a4311c2014-03-17 12:00:47 -07003774 mAvailableInputDevices.remove(mAvailableInputDevices[i]);
3775 continue;
3776 }
François Gaffie2110e042015-03-24 08:41:51 +01003777 // The device is now validated and can be appended to the available devices of the engine
3778 mEngine->setDeviceConnectionState(mAvailableInputDevices[i],
3779 AUDIO_POLICY_DEVICE_STATE_AVAILABLE);
Eric Laurent3a4311c2014-03-17 12:00:47 -07003780 i++;
3781 }
3782 // make sure default device is reachable
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003783 if (mDefaultOutputDevice == 0 || mAvailableOutputDevices.indexOf(mDefaultOutputDevice) < 0) {
François Gaffie53615e22015-03-19 09:24:12 +01003784 ALOGE("Default device %08x is unreachable", mDefaultOutputDevice->type());
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003785 status = NO_INIT;
Eric Laurent3a4311c2014-03-17 12:00:47 -07003786 }
jiabin9ff780e2018-03-19 18:19:52 -07003787 // If microphones address is empty, set it according to device type
3788 for (size_t i = 0; i < mAvailableInputDevices.size(); i++) {
3789 if (mAvailableInputDevices[i]->mAddress.isEmpty()) {
3790 if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BUILTIN_MIC) {
3791 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BOTTOM_MICROPHONE_ADDRESS);
3792 } else if (mAvailableInputDevices[i]->type() == AUDIO_DEVICE_IN_BACK_MIC) {
3793 mAvailableInputDevices[i]->mAddress = String8(AUDIO_BACK_MICROPHONE_ADDRESS);
3794 }
3795 }
3796 }
Eric Laurente552edb2014-03-10 17:42:56 -07003797
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003798 if (mPrimaryOutput == 0) {
3799 ALOGE("Failed to open primary output");
3800 status = NO_INIT;
3801 }
Eric Laurente552edb2014-03-10 17:42:56 -07003802
3803 updateDevicesAndOutputs();
Mikhail Naganovad3f8a12017-12-12 13:24:23 -08003804 return status;
Eric Laurente552edb2014-03-10 17:42:56 -07003805}
3806
Eric Laurente0720872014-03-11 09:30:41 -07003807AudioPolicyManager::~AudioPolicyManager()
Eric Laurente552edb2014-03-10 17:42:56 -07003808{
Eric Laurente552edb2014-03-10 17:42:56 -07003809 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003810 mOutputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003811 }
3812 for (size_t i = 0; i < mInputs.size(); i++) {
Eric Laurentfe231122017-11-17 17:48:06 -08003813 mInputs.valueAt(i)->close();
Eric Laurente552edb2014-03-10 17:42:56 -07003814 }
Eric Laurent3a4311c2014-03-17 12:00:47 -07003815 mAvailableOutputDevices.clear();
3816 mAvailableInputDevices.clear();
Eric Laurent1f2f2232014-06-02 12:01:23 -07003817 mOutputs.clear();
3818 mInputs.clear();
3819 mHwModules.clear();
Mikhail Naganovd4120142017-12-06 15:49:22 -08003820 mHwModulesAll.clear();
Eric Laurente552edb2014-03-10 17:42:56 -07003821}
3822
Eric Laurente0720872014-03-11 09:30:41 -07003823status_t AudioPolicyManager::initCheck()
Eric Laurente552edb2014-03-10 17:42:56 -07003824{
Eric Laurent87ffa392015-05-22 10:32:38 -07003825 return hasPrimaryOutput() ? NO_ERROR : NO_INIT;
Eric Laurente552edb2014-03-10 17:42:56 -07003826}
3827
Eric Laurente552edb2014-03-10 17:42:56 -07003828// ---
3829
Eric Laurent98e38192018-02-15 18:31:53 -08003830void AudioPolicyManager::addOutput(audio_io_handle_t output,
3831 const sp<SwAudioOutputDescriptor>& outputDesc)
Eric Laurente552edb2014-03-10 17:42:56 -07003832{
Eric Laurent1c333e22014-05-20 10:48:17 -07003833 mOutputs.add(output, outputDesc);
Eric Laurent98e38192018-02-15 18:31:53 -08003834 applyStreamVolumes(outputDesc, AUDIO_DEVICE_NONE, 0 /* delayMs */, true /* force */);
Andy Hung2ddee192015-12-18 17:34:44 -08003835 updateMono(output); // update mono status when adding to output list
Eric Laurent36829f92017-04-07 19:04:42 -07003836 selectOutputForMusicEffects();
Eric Laurent6a94d692014-05-20 11:18:06 -07003837 nextAudioPortGeneration();
Eric Laurente552edb2014-03-10 17:42:56 -07003838}
3839
François Gaffie53615e22015-03-19 09:24:12 +01003840void AudioPolicyManager::removeOutput(audio_io_handle_t output)
3841{
3842 mOutputs.removeItem(output);
Eric Laurent36829f92017-04-07 19:04:42 -07003843 selectOutputForMusicEffects();
François Gaffie53615e22015-03-19 09:24:12 +01003844}
3845
Eric Laurent98e38192018-02-15 18:31:53 -08003846void AudioPolicyManager::addInput(audio_io_handle_t input,
3847 const sp<AudioInputDescriptor>& inputDesc)
Eric Laurentd4692962014-05-05 18:13:44 -07003848{
Eric Laurent1c333e22014-05-20 10:48:17 -07003849 mInputs.add(input, inputDesc);
Eric Laurent6a94d692014-05-20 11:18:06 -07003850 nextAudioPortGeneration();
Eric Laurentd4692962014-05-05 18:13:44 -07003851}
Eric Laurente552edb2014-03-10 17:42:56 -07003852
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003853void AudioPolicyManager::findIoHandlesByAddress(const sp<SwAudioOutputDescriptor>& desc /*in*/,
keunyoung3190e672014-12-30 13:00:52 -08003854 const audio_devices_t device /*in*/,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003855 const String8& address /*in*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003856 SortedVector<audio_io_handle_t>& outputs /*out*/) {
keunyoung3190e672014-12-30 13:00:52 -08003857 sp<DeviceDescriptor> devDesc =
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003858 desc->mProfile->getSupportedDeviceByAddress(device, address);
keunyoung3190e672014-12-30 13:00:52 -08003859 if (devDesc != 0) {
3860 ALOGV("findIoHandlesByAddress(): adding opened output %d on same address %s",
3861 desc->mIoHandle, address.string());
3862 outputs.add(desc->mIoHandle);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003863 }
3864}
3865
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003866status_t AudioPolicyManager::checkOutputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01003867 audio_policy_dev_state_t state,
3868 SortedVector<audio_io_handle_t>& outputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07003869 const String8& address)
Eric Laurente552edb2014-03-10 17:42:56 -07003870{
François Gaffie53615e22015-03-19 09:24:12 +01003871 audio_devices_t device = devDesc->type();
Eric Laurentc75307b2015-03-17 15:29:32 -07003872 sp<SwAudioOutputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07003873
3874 if (audio_device_is_digital(device)) {
3875 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08003876 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07003877 }
Eric Laurente552edb2014-03-10 17:42:56 -07003878
Eric Laurent3b73df72014-03-11 09:06:29 -07003879 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003880 // first list already open outputs that can be routed to this device
3881 for (size_t i = 0; i < mOutputs.size(); i++) {
3882 desc = mOutputs.valueAt(i);
Eric Laurentc75307b2015-03-17 15:29:32 -07003883 if (!desc->isDuplicated() && (desc->supportedDevices() & device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003884 if (!device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003885 ALOGV("checkOutputsForDevice(): adding opened output %d", mOutputs.keyAt(i));
3886 outputs.add(mOutputs.keyAt(i));
3887 } else {
3888 ALOGV(" checking address match due to device 0x%x", device);
keunyoung3190e672014-12-30 13:00:52 -08003889 findIoHandlesByAddress(desc, device, address, outputs);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003890 }
Eric Laurente552edb2014-03-10 17:42:56 -07003891 }
3892 }
3893 // then look for output profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07003894 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08003895 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08003896 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
3897 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003898 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01003899 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01003900 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003901 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08003902 ALOGV("checkOutputsForDevice(): adding profile %zu from module %s",
3903 j, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08003904 }
Eric Laurente552edb2014-03-10 17:42:56 -07003905 }
3906 }
3907 }
3908
Eric Laurent7b279bb2015-12-14 10:18:23 -08003909 ALOGV(" found %zu profiles, %zu outputs", profiles.size(), outputs.size());
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003910
Eric Laurente552edb2014-03-10 17:42:56 -07003911 if (profiles.isEmpty() && outputs.isEmpty()) {
3912 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
3913 return BAD_VALUE;
3914 }
3915
3916 // open outputs for matching profiles if needed. Direct outputs are also opened to
3917 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
3918 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
Eric Laurent1c333e22014-05-20 10:48:17 -07003919 sp<IOProfile> profile = profiles[profile_index];
Eric Laurente552edb2014-03-10 17:42:56 -07003920
3921 // nothing to do if one output is already opened for this profile
3922 size_t j;
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003923 for (j = 0; j < outputs.size(); j++) {
3924 desc = mOutputs.valueFor(outputs.itemAt(j));
Eric Laurente552edb2014-03-10 17:42:56 -07003925 if (!desc->isDuplicated() && desc->mProfile == profile) {
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07003926 // matching profile: save the sample rates, format and channel masks supported
3927 // by the profile in our device descriptor
Paul McLean9080a4c2015-06-18 08:24:02 -07003928 if (audio_device_is_digital(device)) {
3929 devDesc->importAudioPort(profile);
3930 }
Eric Laurente552edb2014-03-10 17:42:56 -07003931 break;
3932 }
3933 }
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003934 if (j != outputs.size()) {
Eric Laurente552edb2014-03-10 17:42:56 -07003935 continue;
3936 }
3937
Eric Laurent3974e3b2017-12-07 17:58:43 -08003938 if (!profile->canOpenNewIo()) {
3939 ALOGW("Max Output number %u already opened for this profile %s",
3940 profile->maxOpenCount, profile->getTagName().c_str());
3941 continue;
3942 }
3943
Eric Laurent83efe1c2017-07-09 16:51:08 -07003944 ALOGV("opening output for device %08x with params %s profile %p name %s",
3945 device, address.string(), profile.get(), profile->getName().string());
Eric Laurentc75307b2015-03-17 15:29:32 -07003946 desc = new SwAudioOutputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003947 audio_io_handle_t output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003948 status_t status = desc->open(nullptr, device, address,
3949 AUDIO_STREAM_DEFAULT, AUDIO_OUTPUT_FLAG_NONE, &output);
Eric Laurente552edb2014-03-10 17:42:56 -07003950
Eric Laurentfe231122017-11-17 17:48:06 -08003951 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07003952 // Here is where the out_set_parameters() for card & device gets called
Eric Laurent3a4311c2014-03-17 12:00:47 -07003953 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003954 char *param = audio_device_address_to_parameter(device, address);
3955 mpClientInterface->setParameters(output, String8(param));
3956 free(param);
Eric Laurente552edb2014-03-10 17:42:56 -07003957 }
Phil Burk00eeb322016-03-31 12:41:00 -07003958 updateAudioProfiles(device, output, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01003959 if (!profile->hasValidAudioProfile()) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07003960 ALOGW("checkOutputsForDevice() missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08003961 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07003962 output = AUDIO_IO_HANDLE_NONE;
François Gaffie112b0af2015-11-19 16:13:25 +01003963 } else if (profile->hasDynamicAudioProfile()) {
Eric Laurentfe231122017-11-17 17:48:06 -08003964 desc->close();
Phil Burk702b1052016-03-02 16:38:26 -08003965 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08003966 audio_config_t config = AUDIO_CONFIG_INITIALIZER;
3967 profile->pickAudioProfile(
3968 config.sample_rate, config.channel_mask, config.format);
Eric Laurentcf2c0212014-07-25 16:20:43 -07003969 config.offload_info.sample_rate = config.sample_rate;
3970 config.offload_info.channel_mask = config.channel_mask;
3971 config.offload_info.format = config.format;
Eric Laurentfe231122017-11-17 17:48:06 -08003972
3973 status_t status = desc->open(&config, device, address, AUDIO_STREAM_DEFAULT,
3974 AUDIO_OUTPUT_FLAG_NONE, &output);
3975 if (status != NO_ERROR) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07003976 output = AUDIO_IO_HANDLE_NONE;
3977 }
Eric Laurentd4692962014-05-05 18:13:44 -07003978 }
3979
Eric Laurentcf2c0212014-07-25 16:20:43 -07003980 if (output != AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07003981 addOutput(output, desc);
François Gaffie53615e22015-03-19 09:24:12 +01003982 if (device_distinguishes_on_address(device) && address != "0") {
François Gaffie036e1e92015-03-19 10:16:24 +01003983 sp<AudioPolicyMix> policyMix;
3984 if (mPolicyMixes.getAudioPolicyMix(address, policyMix) != NO_ERROR) {
Eric Laurent275e8e92014-11-30 15:14:47 -08003985 ALOGE("checkOutputsForDevice() cannot find policy for address %s",
3986 address.string());
3987 }
François Gaffie036e1e92015-03-19 10:16:24 +01003988 policyMix->setOutput(desc);
Jean-Michel Trividacc06f2015-04-08 18:16:39 -07003989 desc->mPolicyMix = policyMix->getMix();
François Gaffie036e1e92015-03-19 10:16:24 +01003990
Eric Laurent87ffa392015-05-22 10:32:38 -07003991 } else if (((desc->mFlags & AUDIO_OUTPUT_FLAG_DIRECT) == 0) &&
3992 hasPrimaryOutput()) {
Eric Laurentc722f302014-12-10 11:21:49 -08003993 // no duplicated output for direct outputs and
3994 // outputs used by dynamic policy mixes
Eric Laurentcf2c0212014-07-25 16:20:43 -07003995 audio_io_handle_t duplicatedOutput = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07003996
Eric Laurentd4692962014-05-05 18:13:44 -07003997 //TODO: configure audio effect output stage here
3998
3999 // open a duplicating output thread for the new output and the primary output
Eric Laurent5babc4f2018-02-15 12:33:44 -08004000 sp<SwAudioOutputDescriptor> dupOutputDesc =
4001 new SwAudioOutputDescriptor(NULL, mpClientInterface);
4002 status_t status = dupOutputDesc->openDuplicating(mPrimaryOutput, desc,
4003 &duplicatedOutput);
4004 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004005 // add duplicated output descriptor
Eric Laurentd4692962014-05-05 18:13:44 -07004006 addOutput(duplicatedOutput, dupOutputDesc);
Eric Laurentd4692962014-05-05 18:13:44 -07004007 } else {
4008 ALOGW("checkOutputsForDevice() could not open dup output for %d and %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07004009 mPrimaryOutput->mIoHandle, output);
Eric Laurentfe231122017-11-17 17:48:06 -08004010 desc->close();
François Gaffie53615e22015-03-19 09:24:12 +01004011 removeOutput(output);
Eric Laurent6a94d692014-05-20 11:18:06 -07004012 nextAudioPortGeneration();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004013 output = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004014 }
Eric Laurente552edb2014-03-10 17:42:56 -07004015 }
4016 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004017 } else {
4018 output = AUDIO_IO_HANDLE_NONE;
Eric Laurente552edb2014-03-10 17:42:56 -07004019 }
Eric Laurentcf2c0212014-07-25 16:20:43 -07004020 if (output == AUDIO_IO_HANDLE_NONE) {
Eric Laurente552edb2014-03-10 17:42:56 -07004021 ALOGW("checkOutputsForDevice() could not open output for device %x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004022 profiles.removeAt(profile_index);
4023 profile_index--;
4024 } else {
4025 outputs.add(output);
Paul McLean9080a4c2015-06-18 08:24:02 -07004026 // Load digital format info only for digital devices
4027 if (audio_device_is_digital(device)) {
4028 devDesc->importAudioPort(profile);
4029 }
Jean-Michel Trivif17026d2014-08-10 14:30:48 -07004030
François Gaffie53615e22015-03-19 09:24:12 +01004031 if (device_distinguishes_on_address(device)) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004032 ALOGV("checkOutputsForDevice(): setOutputDevice(dev=0x%x, addr=%s)",
4033 device, address.string());
Eric Laurentc75307b2015-03-17 15:29:32 -07004034 setOutputDevice(desc, device, true/*force*/, 0/*delay*/,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004035 NULL/*patch handle*/, address.string());
4036 }
Eric Laurente552edb2014-03-10 17:42:56 -07004037 ALOGV("checkOutputsForDevice(): adding output %d", output);
4038 }
4039 }
4040
4041 if (profiles.isEmpty()) {
4042 ALOGW("checkOutputsForDevice(): No output available for device %04x", device);
4043 return BAD_VALUE;
4044 }
Eric Laurentd4692962014-05-05 18:13:44 -07004045 } else { // Disconnect
Eric Laurente552edb2014-03-10 17:42:56 -07004046 // check if one opened output is not needed any more after disconnecting one device
4047 for (size_t i = 0; i < mOutputs.size(); i++) {
4048 desc = mOutputs.valueAt(i);
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004049 if (!desc->isDuplicated()) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004050 // exact match on device
François Gaffie53615e22015-03-19 09:24:12 +01004051 if (device_distinguishes_on_address(device) &&
Eric Laurentc75307b2015-03-17 15:29:32 -07004052 (desc->supportedDevices() == device)) {
keunyoung3190e672014-12-30 13:00:52 -08004053 findIoHandlesByAddress(desc, device, address, outputs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004054 } else if (!(desc->supportedDevices() & mAvailableOutputDevices.types())) {
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004055 ALOGV("checkOutputsForDevice(): disconnecting adding output %d",
4056 mOutputs.keyAt(i));
4057 outputs.add(mOutputs.keyAt(i));
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004058 }
Eric Laurente552edb2014-03-10 17:42:56 -07004059 }
4060 }
Eric Laurentd4692962014-05-05 18:13:44 -07004061 // Clear any profiles associated with the disconnected device.
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004062 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004063 for (size_t j = 0; j < hwModule->getOutputProfiles().size(); j++) {
4064 sp<IOProfile> profile = hwModule->getOutputProfiles()[j];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004065 if (profile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004066 ALOGV("checkOutputsForDevice(): "
Mikhail Naganovd4120142017-12-06 15:49:22 -08004067 "clearing direct output profile %zu on module %s",
4068 j, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004069 profile->clearAudioProfiles();
Eric Laurente552edb2014-03-10 17:42:56 -07004070 }
4071 }
4072 }
4073 }
4074 return NO_ERROR;
4075}
4076
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004077status_t AudioPolicyManager::checkInputsForDevice(const sp<DeviceDescriptor>& devDesc,
François Gaffie53615e22015-03-19 09:24:12 +01004078 audio_policy_dev_state_t state,
4079 SortedVector<audio_io_handle_t>& inputs,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004080 const String8& address)
Eric Laurentd4692962014-05-05 18:13:44 -07004081{
Paul McLean9080a4c2015-06-18 08:24:02 -07004082 audio_devices_t device = devDesc->type();
Eric Laurent1f2f2232014-06-02 12:01:23 -07004083 sp<AudioInputDescriptor> desc;
Eric Laurentcc750d32015-06-25 11:48:20 -07004084
4085 if (audio_device_is_digital(device)) {
4086 // erase all current sample rates, formats and channel masks
Eric Laurent20eb3a42016-01-26 18:39:17 -08004087 devDesc->clearAudioProfiles();
Eric Laurentcc750d32015-06-25 11:48:20 -07004088 }
4089
Eric Laurentd4692962014-05-05 18:13:44 -07004090 if (state == AUDIO_POLICY_DEVICE_STATE_AVAILABLE) {
4091 // first list already open inputs that can be routed to this device
4092 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4093 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004094 if (desc->mProfile->supportDevice(device)) {
Eric Laurentd4692962014-05-05 18:13:44 -07004095 ALOGV("checkInputsForDevice(): adding opened input %d", mInputs.keyAt(input_index));
4096 inputs.add(mInputs.keyAt(input_index));
4097 }
4098 }
4099
4100 // then look for input profiles that can be routed to this device
Eric Laurent1c333e22014-05-20 10:48:17 -07004101 SortedVector< sp<IOProfile> > profiles;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004102 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004103 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004104 profile_index < hwModule->getInputProfiles().size();
Mikhail Naganov7e22e942017-12-07 10:04:29 -08004105 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004106 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
Eric Laurent275e8e92014-11-30 15:14:47 -08004107
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004108 if (profile->supportDevice(device)) {
François Gaffie53615e22015-03-19 09:24:12 +01004109 if (!device_distinguishes_on_address(device) ||
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004110 profile->supportDeviceAddress(address)) {
Eric Laurent275e8e92014-11-30 15:14:47 -08004111 profiles.add(profile);
Mikhail Naganovd4120142017-12-06 15:49:22 -08004112 ALOGV("checkInputsForDevice(): adding profile %zu from module %s",
4113 profile_index, hwModule->getName());
Eric Laurent275e8e92014-11-30 15:14:47 -08004114 }
Eric Laurentd4692962014-05-05 18:13:44 -07004115 }
4116 }
4117 }
4118
4119 if (profiles.isEmpty() && inputs.isEmpty()) {
4120 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4121 return BAD_VALUE;
4122 }
4123
4124 // open inputs for matching profiles if needed. Direct inputs are also opened to
4125 // query for dynamic parameters and will be closed later by setDeviceConnectionState()
4126 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) {
4127
Eric Laurent1c333e22014-05-20 10:48:17 -07004128 sp<IOProfile> profile = profiles[profile_index];
Eric Laurent3974e3b2017-12-07 17:58:43 -08004129
Eric Laurentd4692962014-05-05 18:13:44 -07004130 // nothing to do if one input is already opened for this profile
4131 size_t input_index;
4132 for (input_index = 0; input_index < mInputs.size(); input_index++) {
4133 desc = mInputs.valueAt(input_index);
4134 if (desc->mProfile == profile) {
Paul McLean9080a4c2015-06-18 08:24:02 -07004135 if (audio_device_is_digital(device)) {
4136 devDesc->importAudioPort(profile);
4137 }
Eric Laurentd4692962014-05-05 18:13:44 -07004138 break;
4139 }
4140 }
4141 if (input_index != mInputs.size()) {
4142 continue;
4143 }
4144
Eric Laurent3974e3b2017-12-07 17:58:43 -08004145 if (!profile->canOpenNewIo()) {
4146 ALOGW("Max Input number %u already opened for this profile %s",
4147 profile->maxOpenCount, profile->getTagName().c_str());
4148 continue;
4149 }
4150
Eric Laurentfe231122017-11-17 17:48:06 -08004151 desc = new AudioInputDescriptor(profile, mpClientInterface);
Eric Laurentcf2c0212014-07-25 16:20:43 -07004152 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE;
Eric Laurentfe231122017-11-17 17:48:06 -08004153 status_t status = desc->open(nullptr,
4154 device,
4155 address,
4156 AUDIO_SOURCE_MIC,
4157 AUDIO_INPUT_FLAG_NONE,
4158 &input);
Eric Laurentd4692962014-05-05 18:13:44 -07004159
Eric Laurentcf2c0212014-07-25 16:20:43 -07004160 if (status == NO_ERROR) {
Eric Laurentd4692962014-05-05 18:13:44 -07004161 if (!address.isEmpty()) {
Eric Laurentcf2c0212014-07-25 16:20:43 -07004162 char *param = audio_device_address_to_parameter(device, address);
4163 mpClientInterface->setParameters(input, String8(param));
4164 free(param);
Eric Laurentd4692962014-05-05 18:13:44 -07004165 }
Phil Burk00eeb322016-03-31 12:41:00 -07004166 updateAudioProfiles(device, input, profile->getAudioProfiles());
François Gaffie112b0af2015-11-19 16:13:25 +01004167 if (!profile->hasValidAudioProfile()) {
Eric Laurentd4692962014-05-05 18:13:44 -07004168 ALOGW("checkInputsForDevice() direct input missing param");
Eric Laurentfe231122017-11-17 17:48:06 -08004169 desc->close();
Eric Laurentcf2c0212014-07-25 16:20:43 -07004170 input = AUDIO_IO_HANDLE_NONE;
Eric Laurentd4692962014-05-05 18:13:44 -07004171 }
4172
4173 if (input != 0) {
4174 addInput(input, desc);
4175 }
4176 } // endif input != 0
4177
Eric Laurentcf2c0212014-07-25 16:20:43 -07004178 if (input == AUDIO_IO_HANDLE_NONE) {
Eric Laurentd4692962014-05-05 18:13:44 -07004179 ALOGW("checkInputsForDevice() could not open input for device 0x%X", device);
Eric Laurentd4692962014-05-05 18:13:44 -07004180 profiles.removeAt(profile_index);
4181 profile_index--;
4182 } else {
4183 inputs.add(input);
Paul McLean9080a4c2015-06-18 08:24:02 -07004184 if (audio_device_is_digital(device)) {
4185 devDesc->importAudioPort(profile);
4186 }
Eric Laurentd4692962014-05-05 18:13:44 -07004187 ALOGV("checkInputsForDevice(): adding input %d", input);
4188 }
4189 } // end scan profiles
4190
4191 if (profiles.isEmpty()) {
4192 ALOGW("checkInputsForDevice(): No input available for device 0x%X", device);
4193 return BAD_VALUE;
4194 }
4195 } else {
4196 // Disconnect
4197 // check if one opened input is not needed any more after disconnecting one device
4198 for (size_t input_index = 0; input_index < mInputs.size(); input_index++) {
4199 desc = mInputs.valueAt(input_index);
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004200 if (!(desc->mProfile->supportDevice(mAvailableInputDevices.types()))) {
Eric Laurentd4692962014-05-05 18:13:44 -07004201 ALOGV("checkInputsForDevice(): disconnecting adding input %d",
4202 mInputs.keyAt(input_index));
4203 inputs.add(mInputs.keyAt(input_index));
4204 }
4205 }
4206 // Clear any profiles associated with the disconnected device.
Mikhail Naganovd4120142017-12-06 15:49:22 -08004207 for (const auto& hwModule : mHwModules) {
Eric Laurentd4692962014-05-05 18:13:44 -07004208 for (size_t profile_index = 0;
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004209 profile_index < hwModule->getInputProfiles().size();
Eric Laurentd4692962014-05-05 18:13:44 -07004210 profile_index++) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08004211 sp<IOProfile> profile = hwModule->getInputProfiles()[profile_index];
François Gaffiea8ecc2c2015-11-09 16:10:40 +01004212 if (profile->supportDevice(device)) {
Mikhail Naganovd4120142017-12-06 15:49:22 -08004213 ALOGV("checkInputsForDevice(): clearing direct input profile %zu on module %s",
4214 profile_index, hwModule->getName());
François Gaffie112b0af2015-11-19 16:13:25 +01004215 profile->clearAudioProfiles();
Eric Laurentd4692962014-05-05 18:13:44 -07004216 }
4217 }
4218 }
4219 } // end disconnect
4220
4221 return NO_ERROR;
4222}
4223
4224
Eric Laurente0720872014-03-11 09:30:41 -07004225void AudioPolicyManager::closeOutput(audio_io_handle_t output)
Eric Laurente552edb2014-03-10 17:42:56 -07004226{
4227 ALOGV("closeOutput(%d)", output);
4228
Eric Laurentc75307b2015-03-17 15:29:32 -07004229 sp<SwAudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004230 if (outputDesc == NULL) {
4231 ALOGW("closeOutput() unknown output %d", output);
4232 return;
4233 }
François Gaffie036e1e92015-03-19 10:16:24 +01004234 mPolicyMixes.closeOutput(outputDesc);
Eric Laurent275e8e92014-11-30 15:14:47 -08004235
Eric Laurente552edb2014-03-10 17:42:56 -07004236 // look for duplicated outputs connected to the output being removed.
4237 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004238 sp<SwAudioOutputDescriptor> dupOutputDesc = mOutputs.valueAt(i);
Eric Laurente552edb2014-03-10 17:42:56 -07004239 if (dupOutputDesc->isDuplicated() &&
4240 (dupOutputDesc->mOutput1 == outputDesc ||
4241 dupOutputDesc->mOutput2 == outputDesc)) {
Eric Laurent733ce942017-12-07 12:18:25 -08004242 sp<SwAudioOutputDescriptor> outputDesc2;
Eric Laurente552edb2014-03-10 17:42:56 -07004243 if (dupOutputDesc->mOutput1 == outputDesc) {
4244 outputDesc2 = dupOutputDesc->mOutput2;
4245 } else {
4246 outputDesc2 = dupOutputDesc->mOutput1;
4247 }
4248 // As all active tracks on duplicated output will be deleted,
4249 // and as they were also referenced on the other output, the reference
4250 // count for their stream type must be adjusted accordingly on
4251 // the other output.
Eric Laurent733ce942017-12-07 12:18:25 -08004252 bool wasActive = outputDesc2->isActive();
Eric Laurent3b73df72014-03-11 09:06:29 -07004253 for (int j = 0; j < AUDIO_STREAM_CNT; j++) {
Eric Laurente552edb2014-03-10 17:42:56 -07004254 int refCount = dupOutputDesc->mRefCount[j];
Eric Laurent3b73df72014-03-11 09:06:29 -07004255 outputDesc2->changeRefCount((audio_stream_type_t)j,-refCount);
Eric Laurente552edb2014-03-10 17:42:56 -07004256 }
Eric Laurent733ce942017-12-07 12:18:25 -08004257 // stop() will be a no op if the output is still active but is needed in case all
4258 // active streams refcounts where cleared above
4259 if (wasActive) {
4260 outputDesc2->stop();
4261 }
Eric Laurente552edb2014-03-10 17:42:56 -07004262 audio_io_handle_t duplicatedOutput = mOutputs.keyAt(i);
4263 ALOGV("closeOutput() closing also duplicated output %d", duplicatedOutput);
4264
4265 mpClientInterface->closeOutput(duplicatedOutput);
François Gaffie53615e22015-03-19 09:24:12 +01004266 removeOutput(duplicatedOutput);
Eric Laurente552edb2014-03-10 17:42:56 -07004267 }
4268 }
4269
Eric Laurent05b90f82014-08-27 15:32:29 -07004270 nextAudioPortGeneration();
4271
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004272 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004273 if (index >= 0) {
4274 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004275 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004276 mAudioPatches.removeItemsAt(index);
4277 mpClientInterface->onAudioPatchListUpdate();
4278 }
4279
Eric Laurentfe231122017-11-17 17:48:06 -08004280 outputDesc->close();
Eric Laurente552edb2014-03-10 17:42:56 -07004281
François Gaffie53615e22015-03-19 09:24:12 +01004282 removeOutput(output);
Eric Laurente552edb2014-03-10 17:42:56 -07004283 mPreviousOutputs = mOutputs;
Eric Laurent05b90f82014-08-27 15:32:29 -07004284}
4285
4286void AudioPolicyManager::closeInput(audio_io_handle_t input)
4287{
4288 ALOGV("closeInput(%d)", input);
4289
4290 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
4291 if (inputDesc == NULL) {
4292 ALOGW("closeInput() unknown input %d", input);
4293 return;
4294 }
4295
Eric Laurent6a94d692014-05-20 11:18:06 -07004296 nextAudioPortGeneration();
Eric Laurent05b90f82014-08-27 15:32:29 -07004297
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004298 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent05b90f82014-08-27 15:32:29 -07004299 if (index >= 0) {
4300 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
Glenn Kastenfcddb0b2016-07-08 17:19:25 -07004301 (void) /*status_t status*/ mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent05b90f82014-08-27 15:32:29 -07004302 mAudioPatches.removeItemsAt(index);
4303 mpClientInterface->onAudioPatchListUpdate();
4304 }
4305
Eric Laurentfe231122017-11-17 17:48:06 -08004306 inputDesc->close();
Eric Laurent05b90f82014-08-27 15:32:29 -07004307 mInputs.removeItem(input);
Eric Laurente552edb2014-03-10 17:42:56 -07004308}
4309
Eric Laurentc75307b2015-03-17 15:29:32 -07004310SortedVector<audio_io_handle_t> AudioPolicyManager::getOutputsForDevice(
4311 audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004312 const SwAudioOutputCollection& openOutputs)
Eric Laurente552edb2014-03-10 17:42:56 -07004313{
4314 SortedVector<audio_io_handle_t> outputs;
4315
4316 ALOGVV("getOutputsForDevice() device %04x", device);
4317 for (size_t i = 0; i < openOutputs.size(); i++) {
Eric Laurent37ddbb42016-08-10 16:19:14 -07004318 ALOGVV("output %zu isDuplicated=%d device=%04x",
Eric Laurent8c7e6da2015-04-21 17:37:00 -07004319 i, openOutputs.valueAt(i)->isDuplicated(),
4320 openOutputs.valueAt(i)->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004321 if ((device & openOutputs.valueAt(i)->supportedDevices()) == device) {
4322 ALOGVV("getOutputsForDevice() found output %d", openOutputs.keyAt(i));
4323 outputs.add(openOutputs.keyAt(i));
4324 }
4325 }
4326 return outputs;
4327}
4328
Eric Laurente0720872014-03-11 09:30:41 -07004329bool AudioPolicyManager::vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
François Gaffie53615e22015-03-19 09:24:12 +01004330 SortedVector<audio_io_handle_t>& outputs2)
Eric Laurente552edb2014-03-10 17:42:56 -07004331{
4332 if (outputs1.size() != outputs2.size()) {
4333 return false;
4334 }
4335 for (size_t i = 0; i < outputs1.size(); i++) {
4336 if (outputs1[i] != outputs2[i]) {
4337 return false;
4338 }
4339 }
4340 return true;
4341}
4342
Eric Laurente0720872014-03-11 09:30:41 -07004343void AudioPolicyManager::checkOutputForStrategy(routing_strategy strategy)
Eric Laurente552edb2014-03-10 17:42:56 -07004344{
4345 audio_devices_t oldDevice = getDeviceForStrategy(strategy, true /*fromCache*/);
4346 audio_devices_t newDevice = getDeviceForStrategy(strategy, false /*fromCache*/);
4347 SortedVector<audio_io_handle_t> srcOutputs = getOutputsForDevice(oldDevice, mPreviousOutputs);
4348 SortedVector<audio_io_handle_t> dstOutputs = getOutputsForDevice(newDevice, mOutputs);
4349
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004350 // also take into account external policy-related changes: add all outputs which are
4351 // associated with policies in the "before" and "after" output vectors
4352 ALOGVV("checkOutputForStrategy(): policy related outputs");
4353 for (size_t i = 0 ; i < mPreviousOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004354 const sp<SwAudioOutputDescriptor> desc = mPreviousOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004355 if (desc != 0 && desc->mPolicyMix != NULL) {
4356 srcOutputs.add(desc->mIoHandle);
4357 ALOGVV(" previous outputs: adding %d", desc->mIoHandle);
4358 }
4359 }
4360 for (size_t i = 0 ; i < mOutputs.size() ; i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004361 const sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivife472e22014-12-16 14:23:13 -08004362 if (desc != 0 && desc->mPolicyMix != NULL) {
4363 dstOutputs.add(desc->mIoHandle);
4364 ALOGVV(" new outputs: adding %d", desc->mIoHandle);
4365 }
4366 }
4367
Eric Laurente552edb2014-03-10 17:42:56 -07004368 if (!vectorsEqual(srcOutputs,dstOutputs)) {
4369 ALOGV("checkOutputForStrategy() strategy %d, moving from output %d to output %d",
4370 strategy, srcOutputs[0], dstOutputs[0]);
4371 // mute strategy while moving tracks from one output to another
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004372 for (audio_io_handle_t srcOut : srcOutputs) {
4373 sp<SwAudioOutputDescriptor> desc = mOutputs.valueFor(srcOut);
François Gaffiead3183e2015-03-18 16:55:35 +01004374 if (isStrategyActive(desc, strategy)) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004375 setStrategyMute(strategy, true, desc);
4376 setStrategyMute(strategy, false, desc, MUTE_TIME_MS, newDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004377 }
Eric Laurentd60560a2015-04-10 11:31:20 -07004378 sp<AudioSourceDescriptor> source =
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004379 getSourceForStrategyOnOutput(srcOut, strategy);
Eric Laurentd60560a2015-04-10 11:31:20 -07004380 if (source != 0){
4381 connectAudioSource(source);
4382 }
Eric Laurente552edb2014-03-10 17:42:56 -07004383 }
4384
4385 // Move effects associated to this strategy from previous output to new output
4386 if (strategy == STRATEGY_MEDIA) {
Eric Laurent36829f92017-04-07 19:04:42 -07004387 selectOutputForMusicEffects();
Eric Laurente552edb2014-03-10 17:42:56 -07004388 }
4389 // Move tracks associated to this strategy from previous output to new output
Eric Laurent794fde22016-03-11 09:50:45 -08004390 for (int i = 0; i < AUDIO_STREAM_FOR_POLICY_CNT; i++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004391 if (getStrategy((audio_stream_type_t)i) == strategy) {
4392 mpClientInterface->invalidateStream((audio_stream_type_t)i);
Eric Laurente552edb2014-03-10 17:42:56 -07004393 }
4394 }
4395 }
4396}
4397
Eric Laurente0720872014-03-11 09:30:41 -07004398void AudioPolicyManager::checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -07004399{
François Gaffie2110e042015-03-24 08:41:51 +01004400 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004401 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004402 checkOutputForStrategy(STRATEGY_PHONE);
François Gaffie2110e042015-03-24 08:41:51 +01004403 if (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) != AUDIO_POLICY_FORCE_SYSTEM_ENFORCED)
Jon Eklund966095e2014-09-09 15:39:49 -05004404 checkOutputForStrategy(STRATEGY_ENFORCED_AUDIBLE);
Eric Laurente552edb2014-03-10 17:42:56 -07004405 checkOutputForStrategy(STRATEGY_SONIFICATION);
4406 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004407 checkOutputForStrategy(STRATEGY_ACCESSIBILITY);
Eric Laurente552edb2014-03-10 17:42:56 -07004408 checkOutputForStrategy(STRATEGY_MEDIA);
4409 checkOutputForStrategy(STRATEGY_DTMF);
Eric Laurent223fd5c2014-11-11 13:43:36 -08004410 checkOutputForStrategy(STRATEGY_REROUTING);
Eric Laurente552edb2014-03-10 17:42:56 -07004411}
4412
Eric Laurente0720872014-03-11 09:30:41 -07004413void AudioPolicyManager::checkA2dpSuspend()
Eric Laurente552edb2014-03-10 17:42:56 -07004414{
François Gaffie53615e22015-03-19 09:24:12 +01004415 audio_io_handle_t a2dpOutput = mOutputs.getA2dpOutput();
Aniket Kumar Lataa8ee9962018-01-31 20:24:23 -08004416 if (a2dpOutput == 0 || mOutputs.isA2dpOffloadedOnPrimary()) {
Eric Laurent3a4311c2014-03-17 12:00:47 -07004417 mA2dpSuspended = false;
Eric Laurente552edb2014-03-10 17:42:56 -07004418 return;
4419 }
4420
Eric Laurent3a4311c2014-03-17 12:00:47 -07004421 bool isScoConnected =
Eric Laurentddbc6652014-11-13 15:13:44 -08004422 ((mAvailableInputDevices.types() & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET &
4423 ~AUDIO_DEVICE_BIT_IN) != 0) ||
4424 ((mAvailableOutputDevices.types() & AUDIO_DEVICE_OUT_ALL_SCO) != 0);
Eric Laurentf732e072016-08-03 19:30:28 -07004425
4426 // if suspended, restore A2DP output if:
4427 // ((SCO device is NOT connected) ||
4428 // ((forced usage communication is NOT SCO) && (forced usage for record is NOT SCO) &&
4429 // (phone state is NOT in call) && (phone state is NOT ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004430 //
Eric Laurentf732e072016-08-03 19:30:28 -07004431 // if not suspended, suspend A2DP output if:
4432 // (SCO device is connected) &&
4433 // ((forced usage for communication is SCO) || (forced usage for record is SCO) ||
4434 // ((phone state is in call) || (phone state is ringing)))
Eric Laurente552edb2014-03-10 17:42:56 -07004435 //
4436 if (mA2dpSuspended) {
Eric Laurentf732e072016-08-03 19:30:28 -07004437 if (!isScoConnected ||
4438 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) !=
4439 AUDIO_POLICY_FORCE_BT_SCO) &&
4440 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) !=
4441 AUDIO_POLICY_FORCE_BT_SCO) &&
4442 (mEngine->getPhoneState() != AUDIO_MODE_IN_CALL) &&
François Gaffie2110e042015-03-24 08:41:51 +01004443 (mEngine->getPhoneState() != AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004444
4445 mpClientInterface->restoreOutput(a2dpOutput);
4446 mA2dpSuspended = false;
4447 }
4448 } else {
Eric Laurentf732e072016-08-03 19:30:28 -07004449 if (isScoConnected &&
4450 ((mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION) ==
4451 AUDIO_POLICY_FORCE_BT_SCO) ||
4452 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_RECORD) ==
4453 AUDIO_POLICY_FORCE_BT_SCO) ||
4454 (mEngine->getPhoneState() == AUDIO_MODE_IN_CALL) ||
François Gaffie2110e042015-03-24 08:41:51 +01004455 (mEngine->getPhoneState() == AUDIO_MODE_RINGTONE))) {
Eric Laurente552edb2014-03-10 17:42:56 -07004456
4457 mpClientInterface->suspendOutput(a2dpOutput);
4458 mA2dpSuspended = true;
4459 }
4460 }
4461}
4462
Eric Laurentc75307b2015-03-17 15:29:32 -07004463audio_devices_t AudioPolicyManager::getNewOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
4464 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004465{
4466 audio_devices_t device = AUDIO_DEVICE_NONE;
4467
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004468 ssize_t index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004469 if (index >= 0) {
4470 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4471 if (patchDesc->mUid != mUidCached) {
4472 ALOGV("getNewOutputDevice() device %08x forced by patch %d",
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004473 outputDesc->device(), outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004474 return outputDesc->device();
4475 }
4476 }
4477
Eric Laurente552edb2014-03-10 17:42:56 -07004478 // check the following by order of priority to request a routing change if necessary:
Jon Eklund966095e2014-09-09 15:39:49 -05004479 // 1: the strategy enforced audible is active and enforced on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004480 // use device for strategy enforced audible
4481 // 2: we are in call or the strategy phone is active on the output:
4482 // use device for strategy phone
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004483 // 3: the strategy sonification is active on the output:
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004484 // use device for strategy sonification
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004485 // 4: the strategy for enforced audible is active but not enforced on the output:
4486 // use the device for strategy enforced audible
Eric Laurent28d09f02016-03-08 10:43:05 -08004487 // 5: the strategy accessibility is active on the output:
4488 // use device for strategy accessibility
Jean-Michel Trivi5de234b2015-07-21 11:42:02 -07004489 // 6: the strategy "respectful" sonification is active on the output:
4490 // use device for strategy "respectful" sonification
Eric Laurent223fd5c2014-11-11 13:43:36 -08004491 // 7: the strategy media is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004492 // use device for strategy media
Eric Laurent223fd5c2014-11-11 13:43:36 -08004493 // 8: the strategy DTMF is active on the output:
Eric Laurente552edb2014-03-10 17:42:56 -07004494 // use device for strategy DTMF
Eric Laurent223fd5c2014-11-11 13:43:36 -08004495 // 9: the strategy for beacon, a.k.a. "transmitted through speaker" is active on the output:
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004496 // use device for strategy t-t-s
François Gaffiead3183e2015-03-18 16:55:35 +01004497 if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01004498 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_SYSTEM_ENFORCED) {
Eric Laurente552edb2014-03-10 17:42:56 -07004499 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
4500 } else if (isInCall() ||
François Gaffiead3183e2015-03-18 16:55:35 +01004501 isStrategyActive(outputDesc, STRATEGY_PHONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004502 device = getDeviceForStrategy(STRATEGY_PHONE, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004503 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004504 device = getDeviceForStrategy(STRATEGY_SONIFICATION, fromCache);
Jean-Michel Trivi178683b2017-08-30 18:07:06 -07004505 } else if (isStrategyActive(outputDesc, STRATEGY_ENFORCED_AUDIBLE)) {
4506 device = getDeviceForStrategy(STRATEGY_ENFORCED_AUDIBLE, fromCache);
Eric Laurent28d09f02016-03-08 10:43:05 -08004507 } else if (isStrategyActive(outputDesc, STRATEGY_ACCESSIBILITY)) {
4508 device = getDeviceForStrategy(STRATEGY_ACCESSIBILITY, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004509 } else if (isStrategyActive(outputDesc, STRATEGY_SONIFICATION_RESPECTFUL)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004510 device = getDeviceForStrategy(STRATEGY_SONIFICATION_RESPECTFUL, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004511 } else if (isStrategyActive(outputDesc, STRATEGY_MEDIA)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004512 device = getDeviceForStrategy(STRATEGY_MEDIA, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004513 } else if (isStrategyActive(outputDesc, STRATEGY_DTMF)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004514 device = getDeviceForStrategy(STRATEGY_DTMF, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004515 } else if (isStrategyActive(outputDesc, STRATEGY_TRANSMITTED_THROUGH_SPEAKER)) {
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004516 device = getDeviceForStrategy(STRATEGY_TRANSMITTED_THROUGH_SPEAKER, fromCache);
François Gaffiead3183e2015-03-18 16:55:35 +01004517 } else if (isStrategyActive(outputDesc, STRATEGY_REROUTING)) {
Eric Laurent223fd5c2014-11-11 13:43:36 -08004518 device = getDeviceForStrategy(STRATEGY_REROUTING, fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -07004519 }
4520
Eric Laurent1c333e22014-05-20 10:48:17 -07004521 ALOGV("getNewOutputDevice() selected device %x", device);
4522 return device;
4523}
4524
Eric Laurentfb66dd92016-01-28 18:32:03 -08004525audio_devices_t AudioPolicyManager::getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc)
Eric Laurent1c333e22014-05-20 10:48:17 -07004526{
Eric Laurentfb66dd92016-01-28 18:32:03 -08004527 audio_devices_t device = AUDIO_DEVICE_NONE;
Eric Laurent6a94d692014-05-20 11:18:06 -07004528
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004529 ssize_t index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004530 if (index >= 0) {
4531 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4532 if (patchDesc->mUid != mUidCached) {
4533 ALOGV("getNewInputDevice() device %08x forced by patch %d",
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004534 inputDesc->mDevice, inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004535 return inputDesc->mDevice;
4536 }
4537 }
4538
Eric Laurentdc95a252018-04-12 12:46:56 -07004539 // If we are not in call and no client is active on this input, this methods returns
4540 // AUDIO_DEVICE_NONE, causing the patch on the input stream to be released.
Eric Laurentfb66dd92016-01-28 18:32:03 -08004541 audio_source_t source = inputDesc->getHighestPrioritySource(true /*activeOnly*/);
Eric Laurentdc95a252018-04-12 12:46:56 -07004542 if (source == AUDIO_SOURCE_DEFAULT && isInCall()) {
4543 source = AUDIO_SOURCE_VOICE_COMMUNICATION;
4544 }
4545 if (source != AUDIO_SOURCE_DEFAULT) {
Eric Laurentfb66dd92016-01-28 18:32:03 -08004546 device = getDeviceAndMixForInputSource(source);
4547 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004548
Eric Laurente552edb2014-03-10 17:42:56 -07004549 return device;
4550}
4551
Eric Laurent794fde22016-03-11 09:50:45 -08004552bool AudioPolicyManager::streamsMatchForvolume(audio_stream_type_t stream1,
4553 audio_stream_type_t stream2) {
Jean-Michel Trivi99bb2f92016-11-23 15:52:07 -08004554 return (stream1 == stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -08004555}
4556
Eric Laurente0720872014-03-11 09:30:41 -07004557uint32_t AudioPolicyManager::getStrategyForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004558 return (uint32_t)getStrategy(stream);
4559}
4560
Eric Laurente0720872014-03-11 09:30:41 -07004561audio_devices_t AudioPolicyManager::getDevicesForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004562 // By checking the range of stream before calling getStrategy, we avoid
4563 // getStrategy's behavior for invalid streams. getStrategy would do a ALOGE
4564 // and then return STRATEGY_MEDIA, but we want to return the empty set.
Eric Laurent223fd5c2014-11-11 13:43:36 -08004565 if (stream < (audio_stream_type_t) 0 || stream >= AUDIO_STREAM_PUBLIC_CNT) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004566 return AUDIO_DEVICE_NONE;
4567 }
Eric Laurent28d09f02016-03-08 10:43:05 -08004568 audio_devices_t devices = AUDIO_DEVICE_NONE;
Eric Laurent794fde22016-03-11 09:50:45 -08004569 for (int curStream = 0; curStream < AUDIO_STREAM_FOR_POLICY_CNT; curStream++) {
4570 if (!streamsMatchForvolume(stream, (audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004571 continue;
Eric Laurent6a94d692014-05-20 11:18:06 -07004572 }
Eric Laurent794fde22016-03-11 09:50:45 -08004573 routing_strategy curStrategy = getStrategy((audio_stream_type_t)curStream);
Eric Laurent28d09f02016-03-08 10:43:05 -08004574 audio_devices_t curDevices =
Eric Laurent447a87b2016-07-07 17:32:10 -07004575 getDeviceForStrategy((routing_strategy)curStrategy, false /*fromCache*/);
Mikhail Naganovcf84e592017-12-07 11:25:11 -08004576 for (audio_io_handle_t output : getOutputsForDevice(curDevices, mOutputs)) {
4577 sp<AudioOutputDescriptor> outputDesc = mOutputs.valueFor(output);
Eric Laurent794fde22016-03-11 09:50:45 -08004578 if (outputDesc->isStreamActive((audio_stream_type_t)curStream)) {
Eric Laurent28d09f02016-03-08 10:43:05 -08004579 curDevices |= outputDesc->device();
4580 }
4581 }
4582 devices |= curDevices;
Eric Laurente552edb2014-03-10 17:42:56 -07004583 }
Jon Eklund11c9fb12014-06-23 14:47:03 -05004584
4585 /*Filter SPEAKER_SAFE out of results, as AudioService doesn't know about it
4586 and doesn't really need to.*/
4587 if (devices & AUDIO_DEVICE_OUT_SPEAKER_SAFE) {
4588 devices |= AUDIO_DEVICE_OUT_SPEAKER;
4589 devices &= ~AUDIO_DEVICE_OUT_SPEAKER_SAFE;
4590 }
Eric Laurente552edb2014-03-10 17:42:56 -07004591 return devices;
4592}
4593
François Gaffie2110e042015-03-24 08:41:51 +01004594routing_strategy AudioPolicyManager::getStrategy(audio_stream_type_t stream) const
4595{
Eric Laurent223fd5c2014-11-11 13:43:36 -08004596 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH,"getStrategy() called for AUDIO_STREAM_PATCH");
François Gaffie2110e042015-03-24 08:41:51 +01004597 return mEngine->getStrategyForStream(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07004598}
4599
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004600uint32_t AudioPolicyManager::getStrategyForAttr(const audio_attributes_t *attr) {
4601 // flags to strategy mapping
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004602 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
4603 return (uint32_t) STRATEGY_TRANSMITTED_THROUGH_SPEAKER;
4604 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004605 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
4606 return (uint32_t) STRATEGY_ENFORCED_AUDIBLE;
4607 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004608 // usage to strategy mapping
François Gaffie2110e042015-03-24 08:41:51 +01004609 return static_cast<uint32_t>(mEngine->getStrategyForUsage(attr->usage));
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07004610}
4611
Eric Laurente0720872014-03-11 09:30:41 -07004612void AudioPolicyManager::handleNotificationRoutingForStream(audio_stream_type_t stream) {
Eric Laurente552edb2014-03-10 17:42:56 -07004613 switch(stream) {
Eric Laurent3b73df72014-03-11 09:06:29 -07004614 case AUDIO_STREAM_MUSIC:
Eric Laurente552edb2014-03-10 17:42:56 -07004615 checkOutputForStrategy(STRATEGY_SONIFICATION_RESPECTFUL);
4616 updateDevicesAndOutputs();
4617 break;
4618 default:
4619 break;
4620 }
4621}
4622
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004623uint32_t AudioPolicyManager::handleEventForBeacon(int event) {
Eric Laurent9459fb02015-08-12 18:36:32 -07004624
4625 // skip beacon mute management if a dedicated TTS output is available
4626 if (mTtsOutputAvailable) {
4627 return 0;
4628 }
4629
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004630 switch(event) {
4631 case STARTING_OUTPUT:
4632 mBeaconMuteRefCount++;
4633 break;
4634 case STOPPING_OUTPUT:
4635 if (mBeaconMuteRefCount > 0) {
4636 mBeaconMuteRefCount--;
4637 }
4638 break;
4639 case STARTING_BEACON:
4640 mBeaconPlayingRefCount++;
4641 break;
4642 case STOPPING_BEACON:
4643 if (mBeaconPlayingRefCount > 0) {
4644 mBeaconPlayingRefCount--;
4645 }
4646 break;
4647 }
4648
4649 if (mBeaconMuteRefCount > 0) {
4650 // any playback causes beacon to be muted
4651 return setBeaconMute(true);
4652 } else {
4653 // no other playback: unmute when beacon starts playing, mute when it stops
4654 return setBeaconMute(mBeaconPlayingRefCount == 0);
4655 }
4656}
4657
4658uint32_t AudioPolicyManager::setBeaconMute(bool mute) {
4659 ALOGV("setBeaconMute(%d) mBeaconMuteRefCount=%d mBeaconPlayingRefCount=%d",
4660 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4661 // keep track of muted state to avoid repeating mute/unmute operations
4662 if (mBeaconMuted != mute) {
4663 // mute/unmute AUDIO_STREAM_TTS on all outputs
4664 ALOGV("\t muting %d", mute);
4665 uint32_t maxLatency = 0;
4666 for (size_t i = 0; i < mOutputs.size(); i++) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004667 sp<SwAudioOutputDescriptor> desc = mOutputs.valueAt(i);
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004668 setStreamMute(AUDIO_STREAM_TTS, mute/*on*/,
Eric Laurentc75307b2015-03-17 15:29:32 -07004669 desc,
Jean-Michel Trivid9cfeb42014-09-22 16:51:34 -07004670 0 /*delay*/, AUDIO_DEVICE_NONE);
4671 const uint32_t latency = desc->latency() * 2;
4672 if (latency > maxLatency) {
4673 maxLatency = latency;
4674 }
4675 }
4676 mBeaconMuted = mute;
4677 return maxLatency;
4678 }
4679 return 0;
4680}
4681
Eric Laurente0720872014-03-11 09:30:41 -07004682audio_devices_t AudioPolicyManager::getDeviceForStrategy(routing_strategy strategy,
François Gaffie53615e22015-03-19 09:24:12 +01004683 bool fromCache)
Eric Laurente552edb2014-03-10 17:42:56 -07004684{
Paul McLeanaa981192015-03-21 09:55:15 -07004685 // Routing
4686 // see if we have an explicit route
4687 // scan the whole RouteMap, for each entry, convert the stream type to a strategy
4688 // (getStrategy(stream)).
4689 // if the strategy from the stream type in the RouteMap is the same as the argument above,
Eric Laurentad2e7b92017-09-14 20:06:42 -07004690 // and activity count is non-zero and the device in the route descriptor is available
4691 // then select this device.
Paul McLeanaa981192015-03-21 09:55:15 -07004692 for (size_t routeIndex = 0; routeIndex < mOutputRoutes.size(); routeIndex++) {
4693 sp<SessionRoute> route = mOutputRoutes.valueAt(routeIndex);
Eric Laurent28d09f02016-03-08 10:43:05 -08004694 routing_strategy routeStrategy = getStrategy(route->mStreamType);
Eric Laurentad2e7b92017-09-14 20:06:42 -07004695 if ((routeStrategy == strategy) && route->isActive() &&
4696 (mAvailableOutputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLeanaa981192015-03-21 09:55:15 -07004697 return route->mDeviceDescriptor->type();
4698 }
4699 }
4700
Eric Laurente552edb2014-03-10 17:42:56 -07004701 if (fromCache) {
4702 ALOGVV("getDeviceForStrategy() from cache strategy %d, device %x",
4703 strategy, mDeviceForStrategy[strategy]);
4704 return mDeviceForStrategy[strategy];
4705 }
François Gaffie2110e042015-03-24 08:41:51 +01004706 return mEngine->getDeviceForStrategy(strategy);
Eric Laurente552edb2014-03-10 17:42:56 -07004707}
4708
Eric Laurente0720872014-03-11 09:30:41 -07004709void AudioPolicyManager::updateDevicesAndOutputs()
Eric Laurente552edb2014-03-10 17:42:56 -07004710{
4711 for (int i = 0; i < NUM_STRATEGIES; i++) {
4712 mDeviceForStrategy[i] = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
4713 }
4714 mPreviousOutputs = mOutputs;
4715}
4716
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07004717uint32_t AudioPolicyManager::checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004718 audio_devices_t prevDevice,
4719 uint32_t delayMs)
4720{
4721 // mute/unmute strategies using an incompatible device combination
4722 // if muting, wait for the audio in pcm buffer to be drained before proceeding
4723 // if unmuting, unmute only after the specified delay
4724 if (outputDesc->isDuplicated()) {
4725 return 0;
4726 }
4727
4728 uint32_t muteWaitMs = 0;
4729 audio_devices_t device = outputDesc->device();
Eric Laurent3b73df72014-03-11 09:06:29 -07004730 bool shouldMute = outputDesc->isActive() && (popcount(device) >= 2);
Eric Laurente552edb2014-03-10 17:42:56 -07004731
4732 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
4733 audio_devices_t curDevice = getDeviceForStrategy((routing_strategy)i, false /*fromCache*/);
Eric Laurentc75307b2015-03-17 15:29:32 -07004734 curDevice = curDevice & outputDesc->supportedDevices();
Eric Laurente552edb2014-03-10 17:42:56 -07004735 bool mute = shouldMute && (curDevice & device) && (curDevice != device);
4736 bool doMute = false;
4737
4738 if (mute && !outputDesc->mStrategyMutedByDevice[i]) {
4739 doMute = true;
4740 outputDesc->mStrategyMutedByDevice[i] = true;
4741 } else if (!mute && outputDesc->mStrategyMutedByDevice[i]){
4742 doMute = true;
4743 outputDesc->mStrategyMutedByDevice[i] = false;
4744 }
Eric Laurent99401132014-05-07 19:48:15 -07004745 if (doMute) {
Eric Laurente552edb2014-03-10 17:42:56 -07004746 for (size_t j = 0; j < mOutputs.size(); j++) {
Eric Laurent1f2f2232014-06-02 12:01:23 -07004747 sp<AudioOutputDescriptor> desc = mOutputs.valueAt(j);
Eric Laurente552edb2014-03-10 17:42:56 -07004748 // skip output if it does not share any device with current output
4749 if ((desc->supportedDevices() & outputDesc->supportedDevices())
4750 == AUDIO_DEVICE_NONE) {
4751 continue;
4752 }
Eric Laurent37ddbb42016-08-10 16:19:14 -07004753 ALOGVV("checkDeviceMuteStrategies() %s strategy %zu (curDevice %04x)",
Eric Laurentc75307b2015-03-17 15:29:32 -07004754 mute ? "muting" : "unmuting", i, curDevice);
4755 setStrategyMute((routing_strategy)i, mute, desc, mute ? 0 : delayMs);
François Gaffiead3183e2015-03-18 16:55:35 +01004756 if (isStrategyActive(desc, (routing_strategy)i)) {
Eric Laurent99401132014-05-07 19:48:15 -07004757 if (mute) {
4758 // FIXME: should not need to double latency if volume could be applied
4759 // immediately by the audioflinger mixer. We must account for the delay
4760 // between now and the next time the audioflinger thread for this output
4761 // will process a buffer (which corresponds to one buffer size,
4762 // usually 1/2 or 1/4 of the latency).
4763 if (muteWaitMs < desc->latency() * 2) {
4764 muteWaitMs = desc->latency() * 2;
Eric Laurente552edb2014-03-10 17:42:56 -07004765 }
4766 }
4767 }
4768 }
4769 }
4770 }
4771
Eric Laurent99401132014-05-07 19:48:15 -07004772 // temporary mute output if device selection changes to avoid volume bursts due to
4773 // different per device volumes
4774 if (outputDesc->isActive() && (device != prevDevice)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004775 uint32_t tempMuteWaitMs = outputDesc->latency() * 2;
4776 // temporary mute duration is conservatively set to 4 times the reported latency
4777 uint32_t tempMuteDurationMs = outputDesc->latency() * 4;
4778 if (muteWaitMs < tempMuteWaitMs) {
4779 muteWaitMs = tempMuteWaitMs;
Eric Laurent99401132014-05-07 19:48:15 -07004780 }
Eric Laurentdc462862016-07-19 12:29:53 -07004781
Eric Laurent99401132014-05-07 19:48:15 -07004782 for (size_t i = 0; i < NUM_STRATEGIES; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01004783 if (isStrategyActive(outputDesc, (routing_strategy)i)) {
Eric Laurentdc462862016-07-19 12:29:53 -07004784 // make sure that we do not start the temporary mute period too early in case of
4785 // delayed device change
4786 setStrategyMute((routing_strategy)i, true, outputDesc, delayMs);
Eric Laurentc75307b2015-03-17 15:29:32 -07004787 setStrategyMute((routing_strategy)i, false, outputDesc,
Eric Laurentdc462862016-07-19 12:29:53 -07004788 delayMs + tempMuteDurationMs, device);
Eric Laurent99401132014-05-07 19:48:15 -07004789 }
4790 }
4791 }
4792
Eric Laurente552edb2014-03-10 17:42:56 -07004793 // wait for the PCM output buffers to empty before proceeding with the rest of the command
4794 if (muteWaitMs > delayMs) {
4795 muteWaitMs -= delayMs;
4796 usleep(muteWaitMs * 1000);
4797 return muteWaitMs;
4798 }
4799 return 0;
4800}
4801
Eric Laurentc75307b2015-03-17 15:29:32 -07004802uint32_t AudioPolicyManager::setOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07004803 audio_devices_t device,
4804 bool force,
Eric Laurent6a94d692014-05-20 11:18:06 -07004805 int delayMs,
Jean-Michel Trivi0fb47752014-07-22 16:19:14 -07004806 audio_patch_handle_t *patchHandle,
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004807 const char *address,
4808 bool requiresMuteCheck)
Eric Laurente552edb2014-03-10 17:42:56 -07004809{
Eric Laurentc75307b2015-03-17 15:29:32 -07004810 ALOGV("setOutputDevice() device %04x delayMs %d", device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004811 AudioParameter param;
4812 uint32_t muteWaitMs;
4813
4814 if (outputDesc->isDuplicated()) {
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004815 muteWaitMs = setOutputDevice(outputDesc->subOutput1(), device, force, delayMs,
4816 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
4817 muteWaitMs += setOutputDevice(outputDesc->subOutput2(), device, force, delayMs,
4818 nullptr /* patchHandle */, nullptr /* address */, requiresMuteCheck);
Eric Laurente552edb2014-03-10 17:42:56 -07004819 return muteWaitMs;
4820 }
4821 // no need to proceed if new device is not AUDIO_DEVICE_NONE and not supported by current
4822 // output profile
Eric Laurentc75307b2015-03-17 15:29:32 -07004823 if ((device != AUDIO_DEVICE_NONE) &&
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004824 ((device & outputDesc->supportedDevices()) == AUDIO_DEVICE_NONE)) {
Eric Laurente552edb2014-03-10 17:42:56 -07004825 return 0;
4826 }
4827
4828 // filter devices according to output selected
Eric Laurentc75307b2015-03-17 15:29:32 -07004829 device = (audio_devices_t)(device & outputDesc->supportedDevices());
Eric Laurente552edb2014-03-10 17:42:56 -07004830
4831 audio_devices_t prevDevice = outputDesc->mDevice;
4832
Paul McLeanaa981192015-03-21 09:55:15 -07004833 ALOGV("setOutputDevice() prevDevice 0x%04x", prevDevice);
Eric Laurente552edb2014-03-10 17:42:56 -07004834
4835 if (device != AUDIO_DEVICE_NONE) {
4836 outputDesc->mDevice = device;
4837 }
Jean-Michel Trivib3733cf2018-02-15 19:17:50 +00004838
4839 // if the outputs are not materially active, there is no need to mute.
4840 if (requiresMuteCheck) {
4841 muteWaitMs = checkDeviceMuteStrategies(outputDesc, prevDevice, delayMs);
4842 } else {
4843 ALOGV("%s: suppressing checkDeviceMuteStrategies", __func__);
4844 muteWaitMs = 0;
4845 }
Eric Laurente552edb2014-03-10 17:42:56 -07004846
4847 // Do not change the routing if:
Eric Laurentb80a2a82014-10-27 16:07:59 -07004848 // the requested device is AUDIO_DEVICE_NONE
4849 // OR the requested device is the same as current device
4850 // AND force is not specified
4851 // AND the output is connected by a valid audio patch.
Eric Laurente552edb2014-03-10 17:42:56 -07004852 // Doing this check here allows the caller to call setOutputDevice() without conditions
Paul McLeanaa981192015-03-21 09:55:15 -07004853 if ((device == AUDIO_DEVICE_NONE || device == prevDevice) &&
4854 !force &&
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004855 outputDesc->getPatchHandle() != 0) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004856 ALOGV("setOutputDevice() setting same device 0x%04x or null device", device);
Eric Laurente552edb2014-03-10 17:42:56 -07004857 return muteWaitMs;
4858 }
4859
4860 ALOGV("setOutputDevice() changing device");
Eric Laurent1c333e22014-05-20 10:48:17 -07004861
Eric Laurente552edb2014-03-10 17:42:56 -07004862 // do the routing
Eric Laurent1c333e22014-05-20 10:48:17 -07004863 if (device == AUDIO_DEVICE_NONE) {
Eric Laurentc75307b2015-03-17 15:29:32 -07004864 resetOutputDevice(outputDesc, delayMs, NULL);
Eric Laurent1c333e22014-05-20 10:48:17 -07004865 } else {
Eric Laurentc40d9692016-04-13 19:14:13 -07004866 DeviceVector deviceList;
4867 if ((address == NULL) || (strlen(address) == 0)) {
4868 deviceList = mAvailableOutputDevices.getDevicesFromType(device);
4869 } else {
4870 deviceList = mAvailableOutputDevices.getDevicesFromTypeAddr(device, String8(address));
4871 }
4872
Eric Laurent1c333e22014-05-20 10:48:17 -07004873 if (!deviceList.isEmpty()) {
4874 struct audio_patch patch;
4875 outputDesc->toAudioPortConfig(&patch.sources[0]);
4876 patch.num_sources = 1;
4877 patch.num_sinks = 0;
4878 for (size_t i = 0; i < deviceList.size() && i < AUDIO_PATCH_PORTS_MAX; i++) {
4879 deviceList.itemAt(i)->toAudioPortConfig(&patch.sinks[i]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004880 patch.num_sinks++;
4881 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004882 ssize_t index;
4883 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4884 index = mAudioPatches.indexOfKey(*patchHandle);
4885 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004886 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004887 }
4888 sp< AudioPatch> patchDesc;
4889 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4890 if (index >= 0) {
4891 patchDesc = mAudioPatches.valueAt(index);
4892 afPatchHandle = patchDesc->mAfPatchHandle;
4893 }
4894
Eric Laurent1c333e22014-05-20 10:48:17 -07004895 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07004896 &afPatchHandle,
4897 delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004898 ALOGV("setOutputDevice() createAudioPatch returned %d patchHandle %d"
4899 "num_sources %d num_sinks %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07004900 status, afPatchHandle, patch.num_sources, patch.num_sinks);
Eric Laurent1c333e22014-05-20 10:48:17 -07004901 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07004902 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01004903 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07004904 addAudioPatch(patchDesc->mHandle, patchDesc);
4905 } else {
4906 patchDesc->mPatch = patch;
4907 }
4908 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07004909 if (patchHandle) {
4910 *patchHandle = patchDesc->mHandle;
4911 }
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004912 outputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07004913 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004914 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004915 }
4916 }
bryant_liuf5e7e792014-08-19 20:07:05 +08004917
4918 // inform all input as well
4919 for (size_t i = 0; i < mInputs.size(); i++) {
4920 const sp<AudioInputDescriptor> inputDescriptor = mInputs.valueAt(i);
François Gaffie53615e22015-03-19 09:24:12 +01004921 if (!is_virtual_input_device(inputDescriptor->mDevice)) {
bryant_liuf5e7e792014-08-19 20:07:05 +08004922 AudioParameter inputCmd = AudioParameter();
4923 ALOGV("%s: inform input %d of device:%d", __func__,
4924 inputDescriptor->mIoHandle, device);
4925 inputCmd.addInt(String8(AudioParameter::keyRouting),device);
4926 mpClientInterface->setParameters(inputDescriptor->mIoHandle,
4927 inputCmd.toString(),
4928 delayMs);
4929 }
4930 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004931 }
Eric Laurente552edb2014-03-10 17:42:56 -07004932
4933 // update stream volumes according to new device
Eric Laurentc75307b2015-03-17 15:29:32 -07004934 applyStreamVolumes(outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07004935
4936 return muteWaitMs;
4937}
4938
Eric Laurentc75307b2015-03-17 15:29:32 -07004939status_t AudioPolicyManager::resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Eric Laurent6a94d692014-05-20 11:18:06 -07004940 int delayMs,
4941 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004942{
Eric Laurent6a94d692014-05-20 11:18:06 -07004943 ssize_t index;
4944 if (patchHandle) {
4945 index = mAudioPatches.indexOfKey(*patchHandle);
4946 } else {
Jean-Michel Triviff155c62016-02-26 12:07:16 -08004947 index = mAudioPatches.indexOfKey(outputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004948 }
4949 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07004950 return INVALID_OPERATION;
4951 }
Eric Laurent6a94d692014-05-20 11:18:06 -07004952 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
4953 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, delayMs);
Eric Laurent1c333e22014-05-20 10:48:17 -07004954 ALOGV("resetOutputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07004955 outputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07004956 removeAudioPatch(patchDesc->mHandle);
4957 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07004958 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07004959 return status;
4960}
4961
4962status_t AudioPolicyManager::setInputDevice(audio_io_handle_t input,
4963 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -07004964 bool force,
4965 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07004966{
4967 status_t status = NO_ERROR;
4968
Eric Laurent1f2f2232014-06-02 12:01:23 -07004969 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent1c333e22014-05-20 10:48:17 -07004970 if ((device != AUDIO_DEVICE_NONE) && ((device != inputDesc->mDevice) || force)) {
4971 inputDesc->mDevice = device;
4972
4973 DeviceVector deviceList = mAvailableInputDevices.getDevicesFromType(device);
4974 if (!deviceList.isEmpty()) {
4975 struct audio_patch patch;
4976 inputDesc->toAudioPortConfig(&patch.sinks[0]);
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004977 // AUDIO_SOURCE_HOTWORD is for internal use only:
4978 // handled as AUDIO_SOURCE_VOICE_RECOGNITION by the audio HAL
Eric Laurentdf3dc7e2014-07-27 18:39:40 -07004979 if (patch.sinks[0].ext.mix.usecase.source == AUDIO_SOURCE_HOTWORD &&
Eric Laurent599c7582015-12-07 18:05:55 -08004980 !inputDesc->isSoundTrigger()) {
Eric Laurentdaf92cc2014-07-22 15:36:10 -07004981 patch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_VOICE_RECOGNITION;
4982 }
Eric Laurent1c333e22014-05-20 10:48:17 -07004983 patch.num_sinks = 1;
4984 //only one input device for now
4985 deviceList.itemAt(0)->toAudioPortConfig(&patch.sources[0]);
Eric Laurent1c333e22014-05-20 10:48:17 -07004986 patch.num_sources = 1;
Eric Laurent6a94d692014-05-20 11:18:06 -07004987 ssize_t index;
4988 if (patchHandle && *patchHandle != AUDIO_PATCH_HANDLE_NONE) {
4989 index = mAudioPatches.indexOfKey(*patchHandle);
4990 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08004991 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07004992 }
4993 sp< AudioPatch> patchDesc;
4994 audio_patch_handle_t afPatchHandle = AUDIO_PATCH_HANDLE_NONE;
4995 if (index >= 0) {
4996 patchDesc = mAudioPatches.valueAt(index);
4997 afPatchHandle = patchDesc->mAfPatchHandle;
4998 }
4999
Eric Laurent1c333e22014-05-20 10:48:17 -07005000 status_t status = mpClientInterface->createAudioPatch(&patch,
Eric Laurent6a94d692014-05-20 11:18:06 -07005001 &afPatchHandle,
Eric Laurent1c333e22014-05-20 10:48:17 -07005002 0);
5003 ALOGV("setInputDevice() createAudioPatch returned %d patchHandle %d",
Eric Laurent6a94d692014-05-20 11:18:06 -07005004 status, afPatchHandle);
Eric Laurent1c333e22014-05-20 10:48:17 -07005005 if (status == NO_ERROR) {
Eric Laurent6a94d692014-05-20 11:18:06 -07005006 if (index < 0) {
François Gaffie98cc1912015-03-18 17:52:40 +01005007 patchDesc = new AudioPatch(&patch, mUidCached);
Eric Laurent6a94d692014-05-20 11:18:06 -07005008 addAudioPatch(patchDesc->mHandle, patchDesc);
5009 } else {
5010 patchDesc->mPatch = patch;
5011 }
5012 patchDesc->mAfPatchHandle = afPatchHandle;
Eric Laurent6a94d692014-05-20 11:18:06 -07005013 if (patchHandle) {
5014 *patchHandle = patchDesc->mHandle;
5015 }
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005016 inputDesc->setPatchHandle(patchDesc->mHandle);
Eric Laurent6a94d692014-05-20 11:18:06 -07005017 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005018 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005019 }
5020 }
5021 }
5022 return status;
5023}
5024
Eric Laurent6a94d692014-05-20 11:18:06 -07005025status_t AudioPolicyManager::resetInputDevice(audio_io_handle_t input,
5026 audio_patch_handle_t *patchHandle)
Eric Laurent1c333e22014-05-20 10:48:17 -07005027{
Eric Laurent1f2f2232014-06-02 12:01:23 -07005028 sp<AudioInputDescriptor> inputDesc = mInputs.valueFor(input);
Eric Laurent6a94d692014-05-20 11:18:06 -07005029 ssize_t index;
5030 if (patchHandle) {
5031 index = mAudioPatches.indexOfKey(*patchHandle);
5032 } else {
Jean-Michel Trivi8c7cf3b2016-02-25 17:08:24 -08005033 index = mAudioPatches.indexOfKey(inputDesc->getPatchHandle());
Eric Laurent6a94d692014-05-20 11:18:06 -07005034 }
5035 if (index < 0) {
Eric Laurent1c333e22014-05-20 10:48:17 -07005036 return INVALID_OPERATION;
5037 }
Eric Laurent6a94d692014-05-20 11:18:06 -07005038 sp< AudioPatch> patchDesc = mAudioPatches.valueAt(index);
5039 status_t status = mpClientInterface->releaseAudioPatch(patchDesc->mAfPatchHandle, 0);
Eric Laurent1c333e22014-05-20 10:48:17 -07005040 ALOGV("resetInputDevice() releaseAudioPatch returned %d", status);
Glenn Kastena13cde92016-03-28 15:26:02 -07005041 inputDesc->setPatchHandle(AUDIO_PATCH_HANDLE_NONE);
Eric Laurent6a94d692014-05-20 11:18:06 -07005042 removeAudioPatch(patchDesc->mHandle);
5043 nextAudioPortGeneration();
Eric Laurentb52c1522014-05-20 11:27:36 -07005044 mpClientInterface->onAudioPatchListUpdate();
Eric Laurent1c333e22014-05-20 10:48:17 -07005045 return status;
5046}
5047
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08005048sp<IOProfile> AudioPolicyManager::getInputProfile(audio_devices_t device,
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005049 const String8& address,
François Gaffie53615e22015-03-19 09:24:12 +01005050 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -07005051 audio_format_t& format,
5052 audio_channel_mask_t& channelMask,
François Gaffie53615e22015-03-19 09:24:12 +01005053 audio_input_flags_t flags)
Eric Laurente552edb2014-03-10 17:42:56 -07005054{
5055 // Choose an input profile based on the requested capture parameters: select the first available
5056 // profile supporting all requested parameters.
Andy Hungf129b032015-04-07 13:45:50 -07005057 //
5058 // TODO: perhaps isCompatibleProfile should return a "matching" score so we can return
5059 // the best matching profile, not the first one.
Eric Laurente552edb2014-03-10 17:42:56 -07005060
Glenn Kasten730b9262018-03-29 15:01:26 -07005061 sp<IOProfile> firstInexact;
5062 uint32_t updatedSamplingRate = 0;
5063 audio_format_t updatedFormat = AUDIO_FORMAT_INVALID;
5064 audio_channel_mask_t updatedChannelMask = AUDIO_CHANNEL_INVALID;
Mikhail Naganov7e22e942017-12-07 10:04:29 -08005065 for (const auto& hwModule : mHwModules) {
Mikhail Naganova5e165d2017-12-07 17:08:02 -08005066 for (const auto& profile : hwModule->getInputProfiles()) {
Eric Laurentd4692962014-05-05 18:13:44 -07005067 // profile->log();
Glenn Kasten730b9262018-03-29 15:01:26 -07005068 //updatedFormat = format;
Eric Laurent275e8e92014-11-30 15:14:47 -08005069 if (profile->isCompatibleProfile(device, address, samplingRate,
Glenn Kasten730b9262018-03-29 15:01:26 -07005070 &samplingRate /*updatedSamplingRate*/,
Andy Hungf129b032015-04-07 13:45:50 -07005071 format,
Glenn Kasten730b9262018-03-29 15:01:26 -07005072 &format, /*updatedFormat*/
Andy Hungf129b032015-04-07 13:45:50 -07005073 channelMask,
Glenn Kasten730b9262018-03-29 15:01:26 -07005074 &channelMask /*updatedChannelMask*/,
5075 // FIXME ugly cast
5076 (audio_output_flags_t) flags,
5077 true /*exactMatchRequiredForInputFlags*/)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005078 return profile;
5079 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005080 if (firstInexact == nullptr && profile->isCompatibleProfile(device, address,
5081 samplingRate,
5082 &updatedSamplingRate,
5083 format,
5084 &updatedFormat,
5085 channelMask,
5086 &updatedChannelMask,
5087 // FIXME ugly cast
5088 (audio_output_flags_t) flags,
5089 false /*exactMatchRequiredForInputFlags*/)) {
5090 firstInexact = profile;
5091 }
5092
Eric Laurente552edb2014-03-10 17:42:56 -07005093 }
5094 }
Glenn Kasten730b9262018-03-29 15:01:26 -07005095 if (firstInexact != nullptr) {
5096 samplingRate = updatedSamplingRate;
5097 format = updatedFormat;
5098 channelMask = updatedChannelMask;
5099 return firstInexact;
5100 }
Eric Laurente552edb2014-03-10 17:42:56 -07005101 return NULL;
5102}
5103
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005104
5105audio_devices_t AudioPolicyManager::getDeviceAndMixForInputSource(audio_source_t inputSource,
François Gaffie53615e22015-03-19 09:24:12 +01005106 AudioMix **policyMix)
Eric Laurente552edb2014-03-10 17:42:56 -07005107{
François Gaffie036e1e92015-03-19 10:16:24 +01005108 audio_devices_t availableDeviceTypes = mAvailableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN;
5109 audio_devices_t selectedDeviceFromMix =
5110 mPolicyMixes.getDeviceAndMixForInputSource(inputSource, availableDeviceTypes, policyMix);
Eric Laurent275e8e92014-11-30 15:14:47 -08005111
François Gaffie036e1e92015-03-19 10:16:24 +01005112 if (selectedDeviceFromMix != AUDIO_DEVICE_NONE) {
5113 return selectedDeviceFromMix;
Eric Laurent275e8e92014-11-30 15:14:47 -08005114 }
Eric Laurentc73ca6e2014-12-12 14:34:22 -08005115 return getDeviceForInputSource(inputSource);
5116}
5117
5118audio_devices_t AudioPolicyManager::getDeviceForInputSource(audio_source_t inputSource)
5119{
Eric Laurentad2e7b92017-09-14 20:06:42 -07005120 // Routing
5121 // Scan the whole RouteMap to see if we have an explicit route:
5122 // if the input source in the RouteMap is the same as the argument above,
5123 // and activity count is non-zero and the device in the route descriptor is available
5124 // then select this device.
Paul McLean466dc8e2015-04-17 13:15:36 -06005125 for (size_t routeIndex = 0; routeIndex < mInputRoutes.size(); routeIndex++) {
5126 sp<SessionRoute> route = mInputRoutes.valueAt(routeIndex);
Eric Laurentad2e7b92017-09-14 20:06:42 -07005127 if ((inputSource == route->mSource) && route->isActive() &&
5128 (mAvailableInputDevices.indexOf(route->mDeviceDescriptor) >= 0)) {
Paul McLean466dc8e2015-04-17 13:15:36 -06005129 return route->mDeviceDescriptor->type();
5130 }
5131 }
5132
5133 return mEngine->getDeviceForInputSource(inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -07005134}
5135
Eric Laurente0720872014-03-11 09:30:41 -07005136float AudioPolicyManager::computeVolume(audio_stream_type_t stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005137 int index,
5138 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005139{
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005140 float volumeDB = mVolumeCurves->volIndexToDb(stream, Volume::getDeviceCategory(device), index);
Jean-Michel Trivi3d8b4a42016-09-14 18:37:46 -07005141
5142 // handle the case of accessibility active while a ringtone is playing: if the ringtone is much
5143 // louder than the accessibility prompt, the prompt cannot be heard, thus masking the touch
5144 // exploration of the dialer UI. In this situation, bring the accessibility volume closer to
5145 // the ringtone volume
5146 if ((stream == AUDIO_STREAM_ACCESSIBILITY)
5147 && (AUDIO_MODE_RINGTONE == mEngine->getPhoneState())
5148 && isStreamActive(AUDIO_STREAM_RING, 0)) {
5149 const float ringVolumeDB = computeVolume(AUDIO_STREAM_RING, index, device);
5150 return ringVolumeDB - 4 > volumeDB ? ringVolumeDB - 4 : volumeDB;
5151 }
5152
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005153 // in-call: always cap earpiece volume by voice volume + some low headroom
Eric Laurent7731b5a2018-04-06 15:47:22 -07005154 if ((stream != AUDIO_STREAM_VOICE_CALL) && (device & AUDIO_DEVICE_OUT_EARPIECE) &&
5155 (isInCall() || mOutputs.isStreamActiveLocally(AUDIO_STREAM_VOICE_CALL))) {
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005156 switch (stream) {
5157 case AUDIO_STREAM_SYSTEM:
5158 case AUDIO_STREAM_RING:
5159 case AUDIO_STREAM_MUSIC:
5160 case AUDIO_STREAM_ALARM:
5161 case AUDIO_STREAM_NOTIFICATION:
5162 case AUDIO_STREAM_ENFORCED_AUDIBLE:
5163 case AUDIO_STREAM_DTMF:
5164 case AUDIO_STREAM_ACCESSIBILITY: {
Eric Laurent7731b5a2018-04-06 15:47:22 -07005165 int voiceVolumeIndex =
5166 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_VOICE_CALL, AUDIO_DEVICE_OUT_EARPIECE);
5167 const float maxVoiceVolDb =
5168 computeVolume(AUDIO_STREAM_VOICE_CALL, voiceVolumeIndex, AUDIO_DEVICE_OUT_EARPIECE)
5169 + IN_CALL_EARPIECE_HEADROOM_DB;
Jean-Michel Trivi719a9872017-08-05 13:51:35 -07005170 if (volumeDB > maxVoiceVolDb) {
5171 ALOGV("computeVolume() stream %d at vol=%f overriden by stream %d at vol=%f",
5172 stream, volumeDB, AUDIO_STREAM_VOICE_CALL, maxVoiceVolDb);
5173 volumeDB = maxVoiceVolDb;
5174 }
5175 } break;
5176 default:
5177 break;
5178 }
5179 }
5180
Eric Laurente552edb2014-03-10 17:42:56 -07005181 // if a headset is connected, apply the following rules to ring tones and notifications
5182 // to avoid sound level bursts in user's ears:
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005183 // - always attenuate notifications volume by 6dB
5184 // - attenuate ring tones volume by 6dB unless music is not playing and
5185 // speaker is part of the select devices
Eric Laurente552edb2014-03-10 17:42:56 -07005186 // - if music is playing, always limit the volume to current music volume,
5187 // with a minimum threshold at -36dB so that notification is always perceived.
Eric Laurent3b73df72014-03-11 09:06:29 -07005188 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005189 if ((device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5190 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
5191 AUDIO_DEVICE_OUT_WIRED_HEADSET |
Eric Laurent904d6322017-03-17 17:20:47 -07005192 AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
Jakub Pawlowski00f928c2018-03-22 13:20:03 -07005193 AUDIO_DEVICE_OUT_USB_HEADSET |
5194 AUDIO_DEVICE_OUT_HEARING_AID)) &&
Eric Laurente552edb2014-03-10 17:42:56 -07005195 ((stream_strategy == STRATEGY_SONIFICATION)
5196 || (stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL)
Eric Laurent3b73df72014-03-11 09:06:29 -07005197 || (stream == AUDIO_STREAM_SYSTEM)
Eric Laurente552edb2014-03-10 17:42:56 -07005198 || ((stream_strategy == STRATEGY_ENFORCED_AUDIBLE) &&
François Gaffie2110e042015-03-24 08:41:51 +01005199 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) &&
François Gaffied1ab2bd2015-12-02 18:20:06 +01005200 mVolumeCurves->canBeMuted(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005201 // when the phone is ringing we must consider that music could have been paused just before
5202 // by the music application and behave as if music was active if the last music track was
5203 // just stopped
Eric Laurent3b73df72014-03-11 09:06:29 -07005204 if (isStreamActive(AUDIO_STREAM_MUSIC, SONIFICATION_HEADSET_MUSIC_DELAY) ||
Eric Laurente552edb2014-03-10 17:42:56 -07005205 mLimitRingtoneVolume) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005206 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005207 audio_devices_t musicDevice = getDeviceForStrategy(STRATEGY_MEDIA, true /*fromCache*/);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005208 float musicVolDB = computeVolume(AUDIO_STREAM_MUSIC,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005209 mVolumeCurves->getVolumeIndex(AUDIO_STREAM_MUSIC,
5210 musicDevice),
5211 musicDevice);
Eric Laurentffbc80f2015-03-18 18:30:19 -07005212 float minVolDB = (musicVolDB > SONIFICATION_HEADSET_VOLUME_MIN_DB) ?
5213 musicVolDB : SONIFICATION_HEADSET_VOLUME_MIN_DB;
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005214 if (volumeDB > minVolDB) {
5215 volumeDB = minVolDB;
Eric Laurentffbc80f2015-03-18 18:30:19 -07005216 ALOGV("computeVolume limiting volume to %f musicVol %f", minVolDB, musicVolDB);
Eric Laurente552edb2014-03-10 17:42:56 -07005217 }
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005218 if (device & (AUDIO_DEVICE_OUT_BLUETOOTH_A2DP |
5219 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES)) {
5220 // on A2DP, also ensure notification volume is not too low compared to media when
5221 // intended to be played
5222 if ((volumeDB > -96.0f) &&
5223 (musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB > volumeDB)) {
5224 ALOGV("computeVolume increasing volume for stream=%d device=0x%X from %f to %f",
5225 stream, device,
5226 volumeDB, musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB);
5227 volumeDB = musicVolDB - SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB;
5228 }
5229 }
Eric Laurent6af1c1d2016-04-14 11:20:44 -07005230 } else if ((Volume::getDeviceForVolume(device) != AUDIO_DEVICE_OUT_SPEAKER) ||
5231 stream_strategy != STRATEGY_SONIFICATION) {
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005232 volumeDB += SONIFICATION_HEADSET_VOLUME_FACTOR_DB;
Eric Laurente552edb2014-03-10 17:42:56 -07005233 }
5234 }
5235
Jean-Michel Trivi00a20962016-05-25 19:11:01 -07005236 return volumeDB;
Eric Laurente552edb2014-03-10 17:42:56 -07005237}
5238
Eric Laurente0720872014-03-11 09:30:41 -07005239status_t AudioPolicyManager::checkAndSetVolume(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005240 int index,
5241 const sp<AudioOutputDescriptor>& outputDesc,
5242 audio_devices_t device,
5243 int delayMs,
5244 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005245{
Eric Laurente552edb2014-03-10 17:42:56 -07005246 // do not change actual stream volume if the stream is muted
Eric Laurentc75307b2015-03-17 15:29:32 -07005247 if (outputDesc->mMuteCount[stream] != 0) {
Eric Laurente552edb2014-03-10 17:42:56 -07005248 ALOGVV("checkAndSetVolume() stream %d muted count %d",
Eric Laurentc75307b2015-03-17 15:29:32 -07005249 stream, outputDesc->mMuteCount[stream]);
Eric Laurente552edb2014-03-10 17:42:56 -07005250 return NO_ERROR;
5251 }
François Gaffie2110e042015-03-24 08:41:51 +01005252 audio_policy_forced_cfg_t forceUseForComm =
5253 mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_COMMUNICATION);
Eric Laurente552edb2014-03-10 17:42:56 -07005254 // do not change in call volume if bluetooth is connected and vice versa
François Gaffie2110e042015-03-24 08:41:51 +01005255 if ((stream == AUDIO_STREAM_VOICE_CALL && forceUseForComm == AUDIO_POLICY_FORCE_BT_SCO) ||
5256 (stream == AUDIO_STREAM_BLUETOOTH_SCO && forceUseForComm != AUDIO_POLICY_FORCE_BT_SCO)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005257 ALOGV("checkAndSetVolume() cannot set stream %d volume with force use = %d for comm",
François Gaffie2110e042015-03-24 08:41:51 +01005258 stream, forceUseForComm);
Eric Laurente552edb2014-03-10 17:42:56 -07005259 return INVALID_OPERATION;
5260 }
5261
Eric Laurentc75307b2015-03-17 15:29:32 -07005262 if (device == AUDIO_DEVICE_NONE) {
5263 device = outputDesc->device();
5264 }
Eric Laurent275e8e92014-11-30 15:14:47 -08005265
Eric Laurentffbc80f2015-03-18 18:30:19 -07005266 float volumeDb = computeVolume(stream, index, device);
Eric Laurentc75307b2015-03-17 15:29:32 -07005267 if (outputDesc->isFixedVolume(device)) {
Eric Laurentffbc80f2015-03-18 18:30:19 -07005268 volumeDb = 0.0f;
Eric Laurent275e8e92014-11-30 15:14:47 -08005269 }
Eric Laurentc75307b2015-03-17 15:29:32 -07005270
Eric Laurentffbc80f2015-03-18 18:30:19 -07005271 outputDesc->setVolume(volumeDb, stream, device, delayMs, force);
Eric Laurente552edb2014-03-10 17:42:56 -07005272
Eric Laurent3b73df72014-03-11 09:06:29 -07005273 if (stream == AUDIO_STREAM_VOICE_CALL ||
5274 stream == AUDIO_STREAM_BLUETOOTH_SCO) {
Eric Laurente552edb2014-03-10 17:42:56 -07005275 float voiceVolume;
5276 // Force voice volume to max for bluetooth SCO as volume is managed by the headset
Eric Laurent3b73df72014-03-11 09:06:29 -07005277 if (stream == AUDIO_STREAM_VOICE_CALL) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005278 voiceVolume = (float)index/(float)mVolumeCurves->getVolumeIndexMax(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005279 } else {
5280 voiceVolume = 1.0;
5281 }
5282
Eric Laurent18fba842016-03-31 14:41:26 -07005283 if (voiceVolume != mLastVoiceVolume) {
Eric Laurente552edb2014-03-10 17:42:56 -07005284 mpClientInterface->setVoiceVolume(voiceVolume, delayMs);
5285 mLastVoiceVolume = voiceVolume;
5286 }
5287 }
5288
5289 return NO_ERROR;
5290}
5291
Eric Laurentc75307b2015-03-17 15:29:32 -07005292void AudioPolicyManager::applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
5293 audio_devices_t device,
5294 int delayMs,
5295 bool force)
Eric Laurente552edb2014-03-10 17:42:56 -07005296{
Eric Laurentc75307b2015-03-17 15:29:32 -07005297 ALOGVV("applyStreamVolumes() for device %08x", device);
Eric Laurente552edb2014-03-10 17:42:56 -07005298
Eric Laurent794fde22016-03-11 09:50:45 -08005299 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005300 checkAndSetVolume((audio_stream_type_t)stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005301 mVolumeCurves->getVolumeIndex((audio_stream_type_t)stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005302 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005303 device,
5304 delayMs,
5305 force);
5306 }
5307}
5308
Eric Laurente0720872014-03-11 09:30:41 -07005309void AudioPolicyManager::setStrategyMute(routing_strategy strategy,
Eric Laurentc75307b2015-03-17 15:29:32 -07005310 bool on,
5311 const sp<AudioOutputDescriptor>& outputDesc,
5312 int delayMs,
5313 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005314{
Eric Laurent72249d52015-06-08 11:12:15 -07005315 ALOGVV("setStrategyMute() strategy %d, mute %d, output ID %d",
5316 strategy, on, outputDesc->getId());
Eric Laurent794fde22016-03-11 09:50:45 -08005317 for (int stream = 0; stream < AUDIO_STREAM_FOR_POLICY_CNT; stream++) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005318 if (getStrategy((audio_stream_type_t)stream) == strategy) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005319 setStreamMute((audio_stream_type_t)stream, on, outputDesc, delayMs, device);
Eric Laurente552edb2014-03-10 17:42:56 -07005320 }
5321 }
5322}
5323
Eric Laurente0720872014-03-11 09:30:41 -07005324void AudioPolicyManager::setStreamMute(audio_stream_type_t stream,
Eric Laurentc75307b2015-03-17 15:29:32 -07005325 bool on,
5326 const sp<AudioOutputDescriptor>& outputDesc,
5327 int delayMs,
5328 audio_devices_t device)
Eric Laurente552edb2014-03-10 17:42:56 -07005329{
Eric Laurente552edb2014-03-10 17:42:56 -07005330 if (device == AUDIO_DEVICE_NONE) {
5331 device = outputDesc->device();
5332 }
5333
Eric Laurentc75307b2015-03-17 15:29:32 -07005334 ALOGVV("setStreamMute() stream %d, mute %d, mMuteCount %d device %04x",
5335 stream, on, outputDesc->mMuteCount[stream], device);
Eric Laurente552edb2014-03-10 17:42:56 -07005336
5337 if (on) {
5338 if (outputDesc->mMuteCount[stream] == 0) {
François Gaffied1ab2bd2015-12-02 18:20:06 +01005339 if (mVolumeCurves->canBeMuted(stream) &&
Eric Laurent3b73df72014-03-11 09:06:29 -07005340 ((stream != AUDIO_STREAM_ENFORCED_AUDIBLE) ||
François Gaffie2110e042015-03-24 08:41:51 +01005341 (mEngine->getForceUse(AUDIO_POLICY_FORCE_FOR_SYSTEM) == AUDIO_POLICY_FORCE_NONE))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005342 checkAndSetVolume(stream, 0, outputDesc, device, delayMs);
Eric Laurente552edb2014-03-10 17:42:56 -07005343 }
5344 }
5345 // increment mMuteCount after calling checkAndSetVolume() so that volume change is not ignored
5346 outputDesc->mMuteCount[stream]++;
5347 } else {
5348 if (outputDesc->mMuteCount[stream] == 0) {
5349 ALOGV("setStreamMute() unmuting non muted stream!");
5350 return;
5351 }
5352 if (--outputDesc->mMuteCount[stream] == 0) {
5353 checkAndSetVolume(stream,
François Gaffied1ab2bd2015-12-02 18:20:06 +01005354 mVolumeCurves->getVolumeIndex(stream, device),
Eric Laurentc75307b2015-03-17 15:29:32 -07005355 outputDesc,
Eric Laurente552edb2014-03-10 17:42:56 -07005356 device,
5357 delayMs);
5358 }
5359 }
5360}
5361
Eric Laurente0720872014-03-11 09:30:41 -07005362void AudioPolicyManager::handleIncallSonification(audio_stream_type_t stream,
Eric Laurent3b73df72014-03-11 09:06:29 -07005363 bool starting, bool stateChange)
Eric Laurente552edb2014-03-10 17:42:56 -07005364{
Eric Laurent87ffa392015-05-22 10:32:38 -07005365 if(!hasPrimaryOutput()) {
5366 return;
5367 }
5368
Eric Laurente552edb2014-03-10 17:42:56 -07005369 // if the stream pertains to sonification strategy and we are in call we must
5370 // mute the stream if it is low visibility. If it is high visibility, we must play a tone
5371 // in the device used for phone strategy and play the tone if the selected device does not
5372 // interfere with the device used for phone strategy
5373 // if stateChange is true, we are called from setPhoneState() and we must mute or unmute as
5374 // many times as there are active tracks on the output
Eric Laurent3b73df72014-03-11 09:06:29 -07005375 const routing_strategy stream_strategy = getStrategy(stream);
Eric Laurente552edb2014-03-10 17:42:56 -07005376 if ((stream_strategy == STRATEGY_SONIFICATION) ||
5377 ((stream_strategy == STRATEGY_SONIFICATION_RESPECTFUL))) {
Eric Laurentc75307b2015-03-17 15:29:32 -07005378 sp<SwAudioOutputDescriptor> outputDesc = mPrimaryOutput;
Eric Laurente552edb2014-03-10 17:42:56 -07005379 ALOGV("handleIncallSonification() stream %d starting %d device %x stateChange %d",
5380 stream, starting, outputDesc->mDevice, stateChange);
5381 if (outputDesc->mRefCount[stream]) {
5382 int muteCount = 1;
5383 if (stateChange) {
5384 muteCount = outputDesc->mRefCount[stream];
5385 }
Eric Laurent3b73df72014-03-11 09:06:29 -07005386 if (audio_is_low_visibility(stream)) {
Eric Laurente552edb2014-03-10 17:42:56 -07005387 ALOGV("handleIncallSonification() low visibility, muteCount %d", muteCount);
5388 for (int i = 0; i < muteCount; i++) {
5389 setStreamMute(stream, starting, mPrimaryOutput);
5390 }
5391 } else {
5392 ALOGV("handleIncallSonification() high visibility");
5393 if (outputDesc->device() &
5394 getDeviceForStrategy(STRATEGY_PHONE, true /*fromCache*/)) {
5395 ALOGV("handleIncallSonification() high visibility muted, muteCount %d", muteCount);
5396 for (int i = 0; i < muteCount; i++) {
5397 setStreamMute(stream, starting, mPrimaryOutput);
5398 }
5399 }
5400 if (starting) {
Eric Laurent3b73df72014-03-11 09:06:29 -07005401 mpClientInterface->startTone(AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION,
5402 AUDIO_STREAM_VOICE_CALL);
Eric Laurente552edb2014-03-10 17:42:56 -07005403 } else {
5404 mpClientInterface->stopTone();
5405 }
5406 }
5407 }
5408 }
5409}
5410
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005411audio_stream_type_t AudioPolicyManager::streamTypefromAttributesInt(const audio_attributes_t *attr)
5412{
5413 // flags to stream type mapping
5414 if ((attr->flags & AUDIO_FLAG_AUDIBILITY_ENFORCED) == AUDIO_FLAG_AUDIBILITY_ENFORCED) {
5415 return AUDIO_STREAM_ENFORCED_AUDIBLE;
5416 }
5417 if ((attr->flags & AUDIO_FLAG_SCO) == AUDIO_FLAG_SCO) {
5418 return AUDIO_STREAM_BLUETOOTH_SCO;
5419 }
Jean-Michel Trivi79ad4382015-01-29 10:49:39 -08005420 if ((attr->flags & AUDIO_FLAG_BEACON) == AUDIO_FLAG_BEACON) {
5421 return AUDIO_STREAM_TTS;
5422 }
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005423
5424 // usage to stream type mapping
5425 switch (attr->usage) {
5426 case AUDIO_USAGE_MEDIA:
5427 case AUDIO_USAGE_GAME:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005428 case AUDIO_USAGE_ASSISTANT:
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005429 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5430 return AUDIO_STREAM_MUSIC;
Eric Laurent223fd5c2014-11-11 13:43:36 -08005431 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5432 return AUDIO_STREAM_ACCESSIBILITY;
Jean-Michel Trivi5bd3f382014-06-13 16:06:54 -07005433 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5434 return AUDIO_STREAM_SYSTEM;
5435 case AUDIO_USAGE_VOICE_COMMUNICATION:
5436 return AUDIO_STREAM_VOICE_CALL;
5437
5438 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5439 return AUDIO_STREAM_DTMF;
5440
5441 case AUDIO_USAGE_ALARM:
5442 return AUDIO_STREAM_ALARM;
5443 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5444 return AUDIO_STREAM_RING;
5445
5446 case AUDIO_USAGE_NOTIFICATION:
5447 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5448 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5449 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5450 case AUDIO_USAGE_NOTIFICATION_EVENT:
5451 return AUDIO_STREAM_NOTIFICATION;
5452
5453 case AUDIO_USAGE_UNKNOWN:
5454 default:
5455 return AUDIO_STREAM_MUSIC;
5456 }
5457}
Eric Laurente83b55d2014-11-14 10:06:21 -08005458
François Gaffie53615e22015-03-19 09:24:12 +01005459bool AudioPolicyManager::isValidAttributes(const audio_attributes_t *paa)
5460{
Eric Laurente83b55d2014-11-14 10:06:21 -08005461 // has flags that map to a strategy?
5462 if ((paa->flags & (AUDIO_FLAG_AUDIBILITY_ENFORCED | AUDIO_FLAG_SCO | AUDIO_FLAG_BEACON)) != 0) {
5463 return true;
5464 }
5465
5466 // has known usage?
5467 switch (paa->usage) {
5468 case AUDIO_USAGE_UNKNOWN:
5469 case AUDIO_USAGE_MEDIA:
5470 case AUDIO_USAGE_VOICE_COMMUNICATION:
5471 case AUDIO_USAGE_VOICE_COMMUNICATION_SIGNALLING:
5472 case AUDIO_USAGE_ALARM:
5473 case AUDIO_USAGE_NOTIFICATION:
5474 case AUDIO_USAGE_NOTIFICATION_TELEPHONY_RINGTONE:
5475 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_REQUEST:
5476 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_INSTANT:
5477 case AUDIO_USAGE_NOTIFICATION_COMMUNICATION_DELAYED:
5478 case AUDIO_USAGE_NOTIFICATION_EVENT:
5479 case AUDIO_USAGE_ASSISTANCE_ACCESSIBILITY:
5480 case AUDIO_USAGE_ASSISTANCE_NAVIGATION_GUIDANCE:
5481 case AUDIO_USAGE_ASSISTANCE_SONIFICATION:
5482 case AUDIO_USAGE_GAME:
Eric Laurent275e8e92014-11-30 15:14:47 -08005483 case AUDIO_USAGE_VIRTUAL_SOURCE:
Jean-Michel Trivi36867762016-12-29 12:03:28 -08005484 case AUDIO_USAGE_ASSISTANT:
Eric Laurente83b55d2014-11-14 10:06:21 -08005485 break;
5486 default:
5487 return false;
5488 }
5489 return true;
5490}
5491
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -07005492bool AudioPolicyManager::isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffiead3183e2015-03-18 16:55:35 +01005493 routing_strategy strategy, uint32_t inPastMs,
5494 nsecs_t sysTime) const
5495{
5496 if ((sysTime == 0) && (inPastMs != 0)) {
5497 sysTime = systemTime();
5498 }
Eric Laurent794fde22016-03-11 09:50:45 -08005499 for (int i = 0; i < (int)AUDIO_STREAM_FOR_POLICY_CNT; i++) {
François Gaffiead3183e2015-03-18 16:55:35 +01005500 if (((getStrategy((audio_stream_type_t)i) == strategy) ||
5501 (NUM_STRATEGIES == strategy)) &&
5502 outputDesc->isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) {
5503 return true;
5504 }
5505 }
5506 return false;
5507}
5508
François Gaffie2110e042015-03-24 08:41:51 +01005509audio_policy_forced_cfg_t AudioPolicyManager::getForceUse(audio_policy_force_use_t usage)
5510{
5511 return mEngine->getForceUse(usage);
5512}
5513
5514bool AudioPolicyManager::isInCall()
5515{
5516 return isStateInCall(mEngine->getPhoneState());
5517}
5518
5519bool AudioPolicyManager::isStateInCall(int state)
5520{
5521 return is_state_in_call(state);
5522}
5523
Eric Laurentd60560a2015-04-10 11:31:20 -07005524void AudioPolicyManager::cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc)
5525{
5526 for (ssize_t i = (ssize_t)mAudioSources.size() - 1; i >= 0; i--) {
5527 sp<AudioSourceDescriptor> sourceDesc = mAudioSources.valueAt(i);
5528 if (sourceDesc->mDevice->equals(deviceDesc)) {
5529 ALOGV("%s releasing audio source %d", __FUNCTION__, sourceDesc->getHandle());
5530 stopAudioSource(sourceDesc->getHandle());
5531 }
5532 }
5533
5534 for (ssize_t i = (ssize_t)mAudioPatches.size() - 1; i >= 0; i--) {
5535 sp<AudioPatch> patchDesc = mAudioPatches.valueAt(i);
5536 bool release = false;
5537 for (size_t j = 0; j < patchDesc->mPatch.num_sources && !release; j++) {
5538 const struct audio_port_config *source = &patchDesc->mPatch.sources[j];
5539 if (source->type == AUDIO_PORT_TYPE_DEVICE &&
5540 source->ext.device.type == deviceDesc->type()) {
5541 release = true;
5542 }
5543 }
5544 for (size_t j = 0; j < patchDesc->mPatch.num_sinks && !release; j++) {
5545 const struct audio_port_config *sink = &patchDesc->mPatch.sinks[j];
5546 if (sink->type == AUDIO_PORT_TYPE_DEVICE &&
5547 sink->ext.device.type == deviceDesc->type()) {
5548 release = true;
5549 }
5550 }
5551 if (release) {
5552 ALOGV("%s releasing patch %u", __FUNCTION__, patchDesc->mHandle);
5553 releaseAudioPatch(patchDesc->mHandle, patchDesc->mUid);
5554 }
5555 }
5556}
5557
Phil Burk09bc4612016-02-24 15:58:15 -08005558// Modify the list of surround sound formats supported.
Phil Burk0709b0a2016-03-31 12:54:57 -07005559void AudioPolicyManager::filterSurroundFormats(FormatVector *formatsPtr) {
5560 FormatVector &formats = *formatsPtr;
Phil Burk07ac1142016-03-25 13:39:29 -07005561 // TODO Set this based on Config properties.
5562 const bool alwaysForceAC3 = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005563
5564 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5565 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
Phil Burk0709b0a2016-03-31 12:54:57 -07005566 ALOGD("%s: forced use = %d", __FUNCTION__, forceUse);
Phil Burk09bc4612016-02-24 15:58:15 -08005567
5568 // Analyze original support for various formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005569 bool supportsAC3 = false;
5570 bool supportsOtherSurround = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005571 bool supportsIEC61937 = false;
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005572 for (ssize_t formatIndex = 0; formatIndex < (ssize_t)formats.size(); formatIndex++) {
Phil Burk09bc4612016-02-24 15:58:15 -08005573 audio_format_t format = formats[formatIndex];
Phil Burk09bc4612016-02-24 15:58:15 -08005574 switch (format) {
5575 case AUDIO_FORMAT_AC3:
Phil Burk07ac1142016-03-25 13:39:29 -07005576 supportsAC3 = true;
5577 break;
Phil Burk09bc4612016-02-24 15:58:15 -08005578 case AUDIO_FORMAT_E_AC3:
5579 case AUDIO_FORMAT_DTS:
5580 case AUDIO_FORMAT_DTS_HD:
jiabindd601152017-11-27 14:53:37 -08005581 // If ALWAYS, remove all other surround formats here since we will add them later.
5582 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5583 formats.removeAt(formatIndex);
5584 formatIndex--;
5585 }
Phil Burk07ac1142016-03-25 13:39:29 -07005586 supportsOtherSurround = true;
Phil Burk09bc4612016-02-24 15:58:15 -08005587 break;
5588 case AUDIO_FORMAT_IEC61937:
5589 supportsIEC61937 = true;
5590 break;
5591 default:
5592 break;
5593 }
5594 }
Phil Burk09bc4612016-02-24 15:58:15 -08005595
5596 // Modify formats based on surround preferences.
5597 // If NEVER, remove support for surround formats.
Phil Burk07ac1142016-03-25 13:39:29 -07005598 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5599 if (supportsAC3 || supportsOtherSurround || supportsIEC61937) {
5600 // Remove surround sound related formats.
5601 for (size_t formatIndex = 0; formatIndex < formats.size(); ) {
5602 audio_format_t format = formats[formatIndex];
5603 switch(format) {
5604 case AUDIO_FORMAT_AC3:
5605 case AUDIO_FORMAT_E_AC3:
5606 case AUDIO_FORMAT_DTS:
5607 case AUDIO_FORMAT_DTS_HD:
5608 case AUDIO_FORMAT_IEC61937:
Phil Burk07ac1142016-03-25 13:39:29 -07005609 formats.removeAt(formatIndex);
5610 break;
5611 default:
5612 formatIndex++; // keep it
5613 break;
5614 }
Phil Burk09bc4612016-02-24 15:58:15 -08005615 }
Phil Burk07ac1142016-03-25 13:39:29 -07005616 supportsAC3 = false;
5617 supportsOtherSurround = false;
5618 supportsIEC61937 = false;
Phil Burk09bc4612016-02-24 15:58:15 -08005619 }
Phil Burk07ac1142016-03-25 13:39:29 -07005620 } else { // AUTO or ALWAYS
5621 // Most TVs support AC3 even if they do not report it in the EDID.
5622 if ((alwaysForceAC3 || (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS))
5623 && !supportsAC3) {
5624 formats.add(AUDIO_FORMAT_AC3);
5625 supportsAC3 = true;
5626 }
5627
5628 // If ALWAYS, add support for raw surround formats if all are missing.
5629 // This assumes that if any of these formats are reported by the HAL
5630 // then the report is valid and should not be modified.
jiabindd601152017-11-27 14:53:37 -08005631 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
Phil Burk07ac1142016-03-25 13:39:29 -07005632 formats.add(AUDIO_FORMAT_E_AC3);
5633 formats.add(AUDIO_FORMAT_DTS);
5634 formats.add(AUDIO_FORMAT_DTS_HD);
5635 supportsOtherSurround = true;
5636 }
5637
5638 // Add support for IEC61937 if any raw surround supported.
5639 // The HAL could do this but add it here, just in case.
5640 if ((supportsAC3 || supportsOtherSurround) && !supportsIEC61937) {
5641 formats.add(AUDIO_FORMAT_IEC61937);
5642 supportsIEC61937 = true;
5643 }
Phil Burk09bc4612016-02-24 15:58:15 -08005644 }
Phil Burk0709b0a2016-03-31 12:54:57 -07005645}
5646
5647// Modify the list of channel masks supported.
5648void AudioPolicyManager::filterSurroundChannelMasks(ChannelsVector *channelMasksPtr) {
5649 ChannelsVector &channelMasks = *channelMasksPtr;
5650 audio_policy_forced_cfg_t forceUse = mEngine->getForceUse(
5651 AUDIO_POLICY_FORCE_FOR_ENCODED_SURROUND);
5652
5653 // If NEVER, then remove support for channelMasks > stereo.
5654 if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_NEVER) {
5655 for (size_t maskIndex = 0; maskIndex < channelMasks.size(); ) {
5656 audio_channel_mask_t channelMask = channelMasks[maskIndex];
5657 if (channelMask & ~AUDIO_CHANNEL_OUT_STEREO) {
5658 ALOGI("%s: force NEVER, so remove channelMask 0x%08x", __FUNCTION__, channelMask);
5659 channelMasks.removeAt(maskIndex);
5660 } else {
5661 maskIndex++;
5662 }
5663 }
5664 // If ALWAYS, then make sure we at least support 5.1
5665 } else if (forceUse == AUDIO_POLICY_FORCE_ENCODED_SURROUND_ALWAYS) {
5666 bool supports5dot1 = false;
5667 // Are there any channel masks that can be considered "surround"?
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005668 for (audio_channel_mask_t channelMask : channelMasks) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005669 if ((channelMask & AUDIO_CHANNEL_OUT_5POINT1) == AUDIO_CHANNEL_OUT_5POINT1) {
5670 supports5dot1 = true;
5671 break;
5672 }
5673 }
5674 // If not then add 5.1 support.
5675 if (!supports5dot1) {
5676 channelMasks.add(AUDIO_CHANNEL_OUT_5POINT1);
5677 ALOGI("%s: force ALWAYS, so adding channelMask for 5.1 surround", __FUNCTION__);
5678 }
Phil Burk09bc4612016-02-24 15:58:15 -08005679 }
5680}
5681
Phil Burk00eeb322016-03-31 12:41:00 -07005682void AudioPolicyManager::updateAudioProfiles(audio_devices_t device,
5683 audio_io_handle_t ioHandle,
François Gaffie112b0af2015-11-19 16:13:25 +01005684 AudioProfileVector &profiles)
5685{
5686 String8 reply;
Phil Burk0709b0a2016-03-31 12:54:57 -07005687
François Gaffie112b0af2015-11-19 16:13:25 +01005688 // Format MUST be checked first to update the list of AudioProfile
5689 if (profiles.hasDynamicFormat()) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005690 reply = mpClientInterface->getParameters(
5691 ioHandle, String8(AudioParameter::keyStreamSupportedFormats));
Phil Burk0709b0a2016-03-31 12:54:57 -07005692 ALOGV("%s: supported formats %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005693 AudioParameter repliedParameters(reply);
5694 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005695 String8(AudioParameter::keyStreamSupportedFormats), reply) != NO_ERROR) {
François Gaffie112b0af2015-11-19 16:13:25 +01005696 ALOGE("%s: failed to retrieve format, bailing out", __FUNCTION__);
5697 return;
5698 }
Phil Burk09bc4612016-02-24 15:58:15 -08005699 FormatVector formats = formatsFromString(reply.string());
Phil Burk00eeb322016-03-31 12:41:00 -07005700 if (device == AUDIO_DEVICE_OUT_HDMI) {
Phil Burk0709b0a2016-03-31 12:54:57 -07005701 filterSurroundFormats(&formats);
Phil Burk00eeb322016-03-31 12:41:00 -07005702 }
Phil Burk09bc4612016-02-24 15:58:15 -08005703 profiles.setFormats(formats);
François Gaffie112b0af2015-11-19 16:13:25 +01005704 }
François Gaffie112b0af2015-11-19 16:13:25 +01005705
Mikhail Naganovcf84e592017-12-07 11:25:11 -08005706 for (audio_format_t format : profiles.getSupportedFormats()) {
Eric Laurent20eb3a42016-01-26 18:39:17 -08005707 ChannelsVector channelMasks;
5708 SampleRateVector samplingRates;
François Gaffie112b0af2015-11-19 16:13:25 +01005709 AudioParameter requestedParameters;
Mikhail Naganov388360c2016-10-17 17:09:41 -07005710 requestedParameters.addInt(String8(AudioParameter::keyFormat), format);
François Gaffie112b0af2015-11-19 16:13:25 +01005711
5712 if (profiles.hasDynamicRateFor(format)) {
Mikhail Naganov388360c2016-10-17 17:09:41 -07005713 reply = mpClientInterface->getParameters(
5714 ioHandle,
5715 requestedParameters.toString() + ";" +
5716 AudioParameter::keyStreamSupportedSamplingRates);
François Gaffie112b0af2015-11-19 16:13:25 +01005717 ALOGV("%s: supported sampling rates %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005718 AudioParameter repliedParameters(reply);
5719 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005720 String8(AudioParameter::keyStreamSupportedSamplingRates), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005721 samplingRates = samplingRatesFromString(reply.string());
François Gaffie112b0af2015-11-19 16:13:25 +01005722 }
5723 }
5724 if (profiles.hasDynamicChannelsFor(format)) {
5725 reply = mpClientInterface->getParameters(ioHandle,
5726 requestedParameters.toString() + ";" +
Mikhail Naganov388360c2016-10-17 17:09:41 -07005727 AudioParameter::keyStreamSupportedChannels);
François Gaffie112b0af2015-11-19 16:13:25 +01005728 ALOGV("%s: supported channel masks %s", __FUNCTION__, reply.string());
Eric Laurent62e4bc52016-02-02 18:37:28 -08005729 AudioParameter repliedParameters(reply);
5730 if (repliedParameters.get(
Mikhail Naganov388360c2016-10-17 17:09:41 -07005731 String8(AudioParameter::keyStreamSupportedChannels), reply) == NO_ERROR) {
Eric Laurent62e4bc52016-02-02 18:37:28 -08005732 channelMasks = channelMasksFromString(reply.string());
Phil Burk0709b0a2016-03-31 12:54:57 -07005733 if (device == AUDIO_DEVICE_OUT_HDMI) {
5734 filterSurroundChannelMasks(&channelMasks);
5735 }
François Gaffie112b0af2015-11-19 16:13:25 +01005736 }
5737 }
Eric Laurent20eb3a42016-01-26 18:39:17 -08005738 profiles.addProfileFromHal(new AudioProfile(format, channelMasks, samplingRates));
François Gaffie112b0af2015-11-19 16:13:25 +01005739 }
5740}
Eric Laurentd60560a2015-04-10 11:31:20 -07005741
Mikhail Naganov1b2a7942017-12-08 10:18:09 -08005742} // namespace android