blob: e715fd4ac27377dd2f83e638a2dae058b9ec55c8 [file] [log] [blame]
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -08001/*
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
François Gaffiead3183e2015-03-18 16:55:35 +010017#pragma once
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080018
Mikhail Naganov2773dd72017-12-08 10:12:11 -080019#include <atomic>
Mikhail Naganov37977152018-07-11 15:54:44 -070020#include <functional>
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -080021#include <memory>
jiabin81772902018-04-02 17:52:27 -070022#include <unordered_set>
Mikhail Naganov2773dd72017-12-08 10:12:11 -080023
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080024#include <stdint.h>
25#include <sys/types.h>
26#include <cutils/config_utils.h>
27#include <cutils/misc.h>
28#include <utils/Timers.h>
29#include <utils/Errors.h>
30#include <utils/KeyedVector.h>
31#include <utils/SortedVector.h>
Andy Hung2ddee192015-12-18 17:34:44 -080032#include <media/AudioParameter.h>
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080033#include <media/AudioPolicy.h>
Mikhail Naganov15be9d22017-11-08 14:18:13 +110034#include <media/PatchBuilder.h>
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080035#include "AudioPolicyInterface.h"
36
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -070037#include <AudioPolicyManagerInterface.h>
François Gaffie2110e042015-03-24 08:41:51 +010038#include <AudioPolicyManagerObserver.h>
François Gaffie98cc1912015-03-18 17:52:40 +010039#include <AudioGain.h>
Mikhail Naganovad3f8a12017-12-12 13:24:23 -080040#include <AudioPolicyConfig.h>
François Gaffie98cc1912015-03-18 17:52:40 +010041#include <AudioPort.h>
42#include <AudioPatch.h>
Mikhail Naganov9de8bd12018-07-23 16:41:31 -070043#include <AudioProfile.h>
François Gaffie98cc1912015-03-18 17:52:40 +010044#include <DeviceDescriptor.h>
45#include <IOProfile.h>
46#include <HwModule.h>
47#include <AudioInputDescriptor.h>
48#include <AudioOutputDescriptor.h>
François Gaffie036e1e92015-03-19 10:16:24 +010049#include <AudioPolicyMix.h>
François Gaffie45ed3b02015-03-19 10:35:14 +010050#include <EffectDescriptor.h>
François Gaffiedf372692015-03-19 10:43:27 +010051#include <SoundTriggerSession.h>
François Gaffied1ab2bd2015-12-02 18:20:06 +010052#include <VolumeCurve.h>
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080053
54namespace android {
55
56// ----------------------------------------------------------------------------
57
58// Attenuation applied to STRATEGY_SONIFICATION streams when a headset is connected: 6dB
Eric Laurentffbc80f2015-03-18 18:30:19 -070059#define SONIFICATION_HEADSET_VOLUME_FACTOR_DB (-6)
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080060// Min volume for STRATEGY_SONIFICATION streams when limited by music volume: -36dB
Eric Laurentffbc80f2015-03-18 18:30:19 -070061#define SONIFICATION_HEADSET_VOLUME_MIN_DB (-36)
Jean-Michel Trivi00a20962016-05-25 19:11:01 -070062// Max volume difference on A2DP between playing media and STRATEGY_SONIFICATION streams: 12dB
63#define SONIFICATION_A2DP_MAX_MEDIA_DIFF_DB (12)
Eric Laurentffbc80f2015-03-18 18:30:19 -070064
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080065// Time in milliseconds during which we consider that music is still active after a music
66// track was stopped - see computeVolume()
67#define SONIFICATION_HEADSET_MUSIC_DELAY 5000
François Gaffie2110e042015-03-24 08:41:51 +010068
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080069// Time in milliseconds during witch some streams are muted while the audio path
70// is switched
71#define MUTE_TIME_MS 2000
72
Eric Laurentac3a6902018-05-11 16:39:10 -070073// multiplication factor applied to output latency when calculating a safe mute delay when
74// invalidating tracks
75#define LATENCY_MUTE_FACTOR 4
76
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080077#define NUM_TEST_OUTPUTS 5
78
79#define NUM_VOL_CURVE_KNEES 2
80
81// Default minimum length allowed for offloading a compressed track
82// Can be overridden by the audio.offload.min.duration.secs property
83#define OFFLOAD_DEFAULT_MIN_DURATION_SECS 60
84
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080085// ----------------------------------------------------------------------------
86// AudioPolicyManager implements audio policy manager behavior common to all platforms.
87// ----------------------------------------------------------------------------
88
François Gaffie2110e042015-03-24 08:41:51 +010089class AudioPolicyManager : public AudioPolicyInterface, public AudioPolicyManagerObserver
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080090{
91
92public:
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -070093 explicit AudioPolicyManager(AudioPolicyClientInterface *clientInterface);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -080094 virtual ~AudioPolicyManager();
95
96 // AudioPolicyInterface
97 virtual status_t setDeviceConnectionState(audio_devices_t device,
98 audio_policy_dev_state_t state,
99 const char *device_address,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800100 const char *device_name,
101 audio_format_t encodedFormat);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800102 virtual audio_policy_dev_state_t getDeviceConnectionState(audio_devices_t device,
103 const char *device_address);
Pavlin Radoslavovf862bc62016-12-26 18:57:22 -0800104 virtual status_t handleDeviceConfigChange(audio_devices_t device,
105 const char *device_address,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800106 const char *device_name,
107 audio_format_t encodedFormat);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800108 virtual void setPhoneState(audio_mode_t state);
109 virtual void setForceUse(audio_policy_force_use_t usage,
110 audio_policy_forced_cfg_t config);
111 virtual audio_policy_forced_cfg_t getForceUse(audio_policy_force_use_t usage);
François Gaffie2110e042015-03-24 08:41:51 +0100112
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800113 virtual void setSystemProperty(const char* property, const char* value);
114 virtual status_t initCheck();
Eric Laurentf4e63452017-11-06 19:31:46 +0000115 virtual audio_io_handle_t getOutput(audio_stream_type_t stream);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800116 virtual status_t getOutputForAttr(const audio_attributes_t *attr,
117 audio_io_handle_t *output,
118 audio_session_t session,
119 audio_stream_type_t *stream,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700120 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800121 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200122 audio_output_flags_t *flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700123 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800124 audio_port_handle_t *portId);
Eric Laurent8fc147b2018-07-22 19:13:55 -0700125 virtual status_t startOutput(audio_port_handle_t portId);
126 virtual status_t stopOutput(audio_port_handle_t portId);
127 virtual void releaseOutput(audio_port_handle_t portId);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800128 virtual status_t getInputForAttr(const audio_attributes_t *attr,
129 audio_io_handle_t *input,
130 audio_session_t session,
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700131 uid_t uid,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800132 const audio_config_base_t *config,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800133 audio_input_flags_t flags,
Eric Laurent2ac76942017-06-22 17:17:09 -0700134 audio_port_handle_t *selectedDeviceId,
Eric Laurent20b9ef02016-12-05 11:03:16 -0800135 input_type_t *inputType,
136 audio_port_handle_t *portId);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800137
138 // indicates to the audio policy manager that the input starts being used.
Eric Laurent4eb58f12018-12-07 16:41:02 -0800139 virtual status_t startInput(audio_port_handle_t portId);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800140
141 // indicates to the audio policy manager that the input stops being used.
Eric Laurent8fc147b2018-07-22 19:13:55 -0700142 virtual status_t stopInput(audio_port_handle_t portId);
143 virtual void releaseInput(audio_port_handle_t portId);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800144 virtual void closeAllInputs();
145 virtual void initStreamVolume(audio_stream_type_t stream,
146 int indexMin,
147 int indexMax);
148 virtual status_t setStreamVolumeIndex(audio_stream_type_t stream,
149 int index,
150 audio_devices_t device);
151 virtual status_t getStreamVolumeIndex(audio_stream_type_t stream,
152 int *index,
153 audio_devices_t device);
154
155 // return the strategy corresponding to a given stream type
156 virtual uint32_t getStrategyForStream(audio_stream_type_t stream);
157 // return the strategy corresponding to the given audio attributes
Eric Laurent97ac8712018-07-27 18:59:02 -0700158 virtual routing_strategy getStrategyForAttr(const audio_attributes_t *attr);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800159
160 // return the enabled output devices for the given stream type
161 virtual audio_devices_t getDevicesForStream(audio_stream_type_t stream);
162
163 virtual audio_io_handle_t getOutputForEffect(const effect_descriptor_t *desc = NULL);
164 virtual status_t registerEffect(const effect_descriptor_t *desc,
165 audio_io_handle_t io,
166 uint32_t strategy,
167 int session,
168 int id);
Eric Laurentc241b0d2018-11-28 09:08:49 -0800169 virtual status_t unregisterEffect(int id);
170 virtual status_t setEffectEnabled(int id, bool enabled);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800171
Eric Laurentc75307b2015-03-17 15:29:32 -0700172 virtual bool isStreamActive(audio_stream_type_t stream, uint32_t inPastMs = 0) const;
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800173 // return whether a stream is playing remotely, override to change the definition of
174 // local/remote playback, used for instance by notification manager to not make
175 // media players lose audio focus when not playing locally
176 // For the base implementation, "remotely" means playing during screen mirroring which
177 // uses an output for playback with a non-empty, non "0" address.
Eric Laurentc75307b2015-03-17 15:29:32 -0700178 virtual bool isStreamActiveRemotely(audio_stream_type_t stream,
179 uint32_t inPastMs = 0) const;
180
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800181 virtual bool isSourceActive(audio_source_t source) const;
182
Mikhail Naganov100f0122018-11-29 11:22:16 -0800183 // helpers for dump(int fd)
184 void dumpManualSurroundFormats(String8 *dst) const;
185 void dump(String8 *dst) const;
Andy Hungc29d82b2018-10-05 12:23:17 -0700186
187 status_t dump(int fd) override;
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800188
189 virtual bool isOffloadSupported(const audio_offload_info_t& offloadInfo);
190
Michael Chana94fbb22018-04-24 14:31:19 +1000191 virtual bool isDirectOutputSupported(const audio_config_base_t& config,
192 const audio_attributes_t& attributes);
193
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800194 virtual status_t listAudioPorts(audio_port_role_t role,
195 audio_port_type_t type,
196 unsigned int *num_ports,
197 struct audio_port *ports,
198 unsigned int *generation);
199 virtual status_t getAudioPort(struct audio_port *port);
200 virtual status_t createAudioPatch(const struct audio_patch *patch,
201 audio_patch_handle_t *handle,
202 uid_t uid);
203 virtual status_t releaseAudioPatch(audio_patch_handle_t handle,
204 uid_t uid);
205 virtual status_t listAudioPatches(unsigned int *num_patches,
206 struct audio_patch *patches,
207 unsigned int *generation);
208 virtual status_t setAudioPortConfig(const struct audio_port_config *config);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800209
Eric Laurentd60560a2015-04-10 11:31:20 -0700210 virtual void releaseResourcesForUid(uid_t uid);
211
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800212 virtual status_t acquireSoundTriggerSession(audio_session_t *session,
213 audio_io_handle_t *ioHandle,
214 audio_devices_t *device);
215
François Gaffiedf372692015-03-19 10:43:27 +0100216 virtual status_t releaseSoundTriggerSession(audio_session_t session)
217 {
218 return mSoundTriggerSessions.releaseSession(session);
219 }
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800220
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -0700221 virtual status_t registerPolicyMixes(const Vector<AudioMix>& mixes);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800222 virtual status_t unregisterPolicyMixes(Vector<AudioMix> mixes);
Jean-Michel Trivibda70da2018-12-19 07:30:15 -0800223 virtual status_t setUidDeviceAffinities(uid_t uid,
224 const Vector<AudioDeviceTypeAddr>& devices);
225 virtual status_t removeUidDeviceAffinities(uid_t uid);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800226
Eric Laurent554a2772015-04-10 11:29:24 -0700227 virtual status_t startAudioSource(const struct audio_port_config *source,
228 const audio_attributes_t *attributes,
Eric Laurent3e6c7e12018-07-27 17:09:23 -0700229 audio_port_handle_t *portId,
Eric Laurentd60560a2015-04-10 11:31:20 -0700230 uid_t uid);
Eric Laurent3e6c7e12018-07-27 17:09:23 -0700231 virtual status_t stopAudioSource(audio_port_handle_t portId);
Eric Laurent554a2772015-04-10 11:29:24 -0700232
Andy Hung2ddee192015-12-18 17:34:44 -0800233 virtual status_t setMasterMono(bool mono);
234 virtual status_t getMasterMono(bool *mono);
Eric Laurentac9cef52017-06-09 15:46:26 -0700235 virtual float getStreamVolumeDB(
236 audio_stream_type_t stream, int index, audio_devices_t device);
Andy Hung2ddee192015-12-18 17:34:44 -0800237
jiabin81772902018-04-02 17:52:27 -0700238 virtual status_t getSurroundFormats(unsigned int *numSurroundFormats,
239 audio_format_t *surroundFormats,
240 bool *surroundFormatsEnabled,
241 bool reported);
242 virtual status_t setSurroundFormatEnabled(audio_format_t audioFormat, bool enabled);
243
Arun Mirpuri11029ad2018-12-19 20:45:19 -0800244 virtual status_t getHwOffloadEncodingFormatsSupportedForA2DP(
245 std::vector<audio_format_t> *formats);
246
François Gaffie2110e042015-03-24 08:41:51 +0100247 // return the strategy corresponding to a given stream type
248 routing_strategy getStrategy(audio_stream_type_t stream) const;
249
Eric Laurentf32108e2018-10-04 17:22:04 -0700250 virtual void setAppState(uid_t uid, app_state_t state);
Svet Ganovf4ddfef2018-01-16 07:37:58 -0800251
jiabin6012f912018-11-02 17:06:30 -0700252 virtual bool isHapticPlaybackSupported();
253
François Gaffied0ba9ed2018-11-05 11:50:42 +0100254 virtual status_t listAudioProductStrategies(AudioProductStrategyVector &strategies)
255 {
256 return mEngine->listAudioProductStrategies(strategies);
257 }
258
259 virtual product_strategy_t getProductStrategyFromAudioAttributes(const AudioAttributes &aa)
260 {
261 return mEngine->getProductStrategyForAttributes(aa.getAttributes());
262 }
263
Paul McLeanaa981192015-03-21 09:55:15 -0700264protected:
Mikhail Naganovad3f8a12017-12-12 13:24:23 -0800265 // A constructor that allows more fine-grained control over initialization process,
266 // used in automatic tests.
267 AudioPolicyManager(AudioPolicyClientInterface *clientInterface, bool forTesting);
268
269 // These methods should be used when finer control over APM initialization
270 // is needed, e.g. in tests. Must be used in conjunction with the constructor
271 // that only performs fields initialization. The public constructor comprises
272 // these steps in the following sequence:
273 // - field initializing constructor;
274 // - loadConfig;
275 // - initialize.
276 AudioPolicyConfig& getConfig() { return mConfig; }
277 void loadConfig();
278 status_t initialize();
279
François Gaffie2110e042015-03-24 08:41:51 +0100280 // From AudioPolicyManagerObserver
281 virtual const AudioPatchCollection &getAudioPatches() const
282 {
283 return mAudioPatches;
284 }
285 virtual const SoundTriggerSessionCollection &getSoundTriggerSessionCollection() const
286 {
287 return mSoundTriggerSessions;
288 }
289 virtual const AudioPolicyMixCollection &getAudioPolicyMixCollection() const
290 {
291 return mPolicyMixes;
292 }
Eric Laurentc75307b2015-03-17 15:29:32 -0700293 virtual const SwAudioOutputCollection &getOutputs() const
François Gaffie2110e042015-03-24 08:41:51 +0100294 {
295 return mOutputs;
296 }
297 virtual const AudioInputCollection &getInputs() const
298 {
299 return mInputs;
300 }
301 virtual const DeviceVector &getAvailableOutputDevices() const
302 {
303 return mAvailableOutputDevices;
304 }
305 virtual const DeviceVector &getAvailableInputDevices() const
306 {
307 return mAvailableInputDevices;
308 }
François Gaffied1ab2bd2015-12-02 18:20:06 +0100309 virtual IVolumeCurvesCollection &getVolumeCurves() { return *mVolumeCurves; }
François Gaffie2110e042015-03-24 08:41:51 +0100310 virtual const sp<DeviceDescriptor> &getDefaultOutputDevice() const
311 {
312 return mDefaultOutputDevice;
313 }
Mikhail Naganovd4120142017-12-06 15:49:22 -0800314
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -0700315 void addOutput(audio_io_handle_t output, const sp<SwAudioOutputDescriptor>& outputDesc);
François Gaffie53615e22015-03-19 09:24:12 +0100316 void removeOutput(audio_io_handle_t output);
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -0700317 void addInput(audio_io_handle_t input, const sp<AudioInputDescriptor>& inputDesc);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800318
319 // return appropriate device for streams handled by the specified strategy according to current
320 // phone state, connected devices...
321 // if fromCache is true, the device is returned from mDeviceForStrategy[],
322 // otherwise it is determine by current state
323 // (device connected,phone state, force use, a2dp output...)
324 // This allows to:
325 // 1 speed up process when the state is stable (when starting or stopping an output)
326 // 2 access to either current device selection (fromCache == true) or
327 // "future" device selection (fromCache == false) when called from a context
328 // where conditions are changing (setDeviceConnectionState(), setPhoneState()...) AND
329 // before updateDevicesAndOutputs() is called.
330 virtual audio_devices_t getDeviceForStrategy(routing_strategy strategy,
François Gaffie11d30102018-11-02 16:09:09 +0100331 bool fromCache)
332 {
333 return getDevicesForStrategy(strategy, fromCache).types();
334 }
335
336 DeviceVector getDevicesForStrategy(routing_strategy strategy, bool fromCache);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800337
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -0700338 bool isStrategyActive(const sp<AudioOutputDescriptor>& outputDesc, routing_strategy strategy,
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700339 uint32_t inPastMs = 0, nsecs_t sysTime = 0) const;
340
François Gaffie11d30102018-11-02 16:09:09 +0100341 bool isStrategyActiveOnSameModule(const sp<SwAudioOutputDescriptor>& outputDesc,
342 routing_strategy strategy, uint32_t inPastMs = 0,
343 nsecs_t sysTime = 0) const;
Eric Laurent484e9272018-06-07 17:29:23 -0700344
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800345 // change the route of the specified output. Returns the number of ms we have slept to
346 // allow new routing to take effect in certain cases.
François Gaffie11d30102018-11-02 16:09:09 +0100347 uint32_t setOutputDevices(const sp<SwAudioOutputDescriptor>& outputDesc,
348 const DeviceVector &device,
349 bool force = false,
350 int delayMs = 0,
351 audio_patch_handle_t *patchHandle = NULL,
352 bool requiresMuteCheck = true);
Eric Laurentc75307b2015-03-17 15:29:32 -0700353 status_t resetOutputDevice(const sp<AudioOutputDescriptor>& outputDesc,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800354 int delayMs = 0,
355 audio_patch_handle_t *patchHandle = NULL);
356 status_t setInputDevice(audio_io_handle_t input,
François Gaffie11d30102018-11-02 16:09:09 +0100357 const sp<DeviceDescriptor> &device,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800358 bool force = false,
359 audio_patch_handle_t *patchHandle = NULL);
360 status_t resetInputDevice(audio_io_handle_t input,
361 audio_patch_handle_t *patchHandle = NULL);
362
363 // select input device corresponding to requested audio source
Francois Gaffie716e1432019-01-14 16:58:59 +0100364 sp<DeviceDescriptor> getDeviceForAttributes(const audio_attributes_t &attributes);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800365
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800366 // compute the actual volume for a given stream according to the requested index and a particular
367 // device
Eric Laurentc75307b2015-03-17 15:29:32 -0700368 virtual float computeVolume(audio_stream_type_t stream,
369 int index,
370 audio_devices_t device);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800371
Eric Laurent3839bc02018-07-10 18:33:34 -0700372 // rescale volume index from srcStream within range of dstStream
373 int rescaleVolumeIndex(int srcIndex,
374 audio_stream_type_t srcStream,
375 audio_stream_type_t dstStream);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800376 // check that volume change is permitted, compute and send new volume to audio hardware
377 virtual status_t checkAndSetVolume(audio_stream_type_t stream, int index,
Eric Laurentc75307b2015-03-17 15:29:32 -0700378 const sp<AudioOutputDescriptor>& outputDesc,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800379 audio_devices_t device,
380 int delayMs = 0, bool force = false);
381
382 // apply all stream volumes to the specified output and device
Eric Laurentc75307b2015-03-17 15:29:32 -0700383 void applyStreamVolumes(const sp<AudioOutputDescriptor>& outputDesc,
384 audio_devices_t device, int delayMs = 0, bool force = false);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800385
386 // Mute or unmute all streams handled by the specified strategy on the specified output
387 void setStrategyMute(routing_strategy strategy,
388 bool on,
Eric Laurentc75307b2015-03-17 15:29:32 -0700389 const sp<AudioOutputDescriptor>& outputDesc,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800390 int delayMs = 0,
Eric Laurent97ac8712018-07-27 18:59:02 -0700391 audio_devices_t device = AUDIO_DEVICE_NONE);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800392
393 // Mute or unmute the stream on the specified output
394 void setStreamMute(audio_stream_type_t stream,
395 bool on,
Eric Laurentc75307b2015-03-17 15:29:32 -0700396 const sp<AudioOutputDescriptor>& outputDesc,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800397 int delayMs = 0,
398 audio_devices_t device = (audio_devices_t)0);
399
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700400 audio_mode_t getPhoneState();
401
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800402 // true if device is in a telephony or VoIP call
403 virtual bool isInCall();
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800404 // true if given state represents a device in a telephony or VoIP call
405 virtual bool isStateInCall(int state);
406
407 // when a device is connected, checks if an open output can be routed
408 // to this device. If none is open, tries to open one of the available outputs.
409 // Returns an output suitable to this device or 0.
410 // when a device is disconnected, checks if an output is not used any more and
411 // returns its handle if any.
412 // transfers the audio tracks and effects from one output thread to another accordingly.
François Gaffie11d30102018-11-02 16:09:09 +0100413 status_t checkOutputsForDevice(const sp<DeviceDescriptor>& device,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800414 audio_policy_dev_state_t state,
François Gaffie11d30102018-11-02 16:09:09 +0100415 SortedVector<audio_io_handle_t>& outputs);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800416
François Gaffie11d30102018-11-02 16:09:09 +0100417 status_t checkInputsForDevice(const sp<DeviceDescriptor>& device,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800418 audio_policy_dev_state_t state,
François Gaffie11d30102018-11-02 16:09:09 +0100419 SortedVector<audio_io_handle_t>& inputs);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800420
421 // close an output and its companion duplicating output.
422 void closeOutput(audio_io_handle_t output);
423
424 // close an input.
425 void closeInput(audio_io_handle_t input);
426
Mikhail Naganov37977152018-07-11 15:54:44 -0700427 // runs all the checks required for accomodating changes in devices and outputs
428 // if 'onOutputsChecked' callback is provided, it is executed after the outputs
429 // check via 'checkOutputForAllStrategies'. If the callback returns 'true',
430 // A2DP suspend status is rechecked.
Mikhail Naganov15be9d22017-11-08 14:18:13 +1100431 void checkForDeviceAndOutputChanges(std::function<bool()> onOutputsChecked = nullptr);
Mikhail Naganov37977152018-07-11 15:54:44 -0700432
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800433 // checks and if necessary changes outputs used for all strategies.
434 // must be called every time a condition that affects the output choice for a given strategy
435 // changes: connected device, phone state, force use...
436 // Must be called before updateDevicesAndOutputs()
437 void checkOutputForStrategy(routing_strategy strategy);
438
439 // Same as checkOutputForStrategy() but for a all strategies in order of priority
440 void checkOutputForAllStrategies();
441
442 // manages A2DP output suspend/restore according to phone state and BT SCO usage
443 void checkA2dpSuspend();
444
Eric Laurent97ac8712018-07-27 18:59:02 -0700445 template <class IoDescriptor, class Filter>
446 sp<DeviceDescriptor> findPreferredDevice(IoDescriptor& desc, Filter filter,
447 bool& active, const DeviceVector& devices);
448
449 template <class IoCollection, class Filter>
450 sp<DeviceDescriptor> findPreferredDevice(IoCollection& ioCollection, Filter filter,
451 const DeviceVector& devices);
452
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800453 // selects the most appropriate device on output for current state
454 // must be called every time a condition that affects the device choice for a given output is
455 // changed: connected device, phone state, force use, output start, output stop..
456 // see getDeviceForStrategy() for the use of fromCache parameter
François Gaffie11d30102018-11-02 16:09:09 +0100457 DeviceVector getNewOutputDevices(const sp<SwAudioOutputDescriptor>& outputDesc,
458 bool fromCache);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800459
460 // updates cache of device used by all strategies (mDeviceForStrategy[])
461 // must be called every time a condition that affects the device choice for a given strategy is
462 // changed: connected device, phone state, force use...
463 // cached values are used by getDeviceForStrategy() if parameter fromCache is true.
464 // Must be called after checkOutputForAllStrategies()
465 void updateDevicesAndOutputs();
466
467 // selects the most appropriate device on input for current state
François Gaffie11d30102018-11-02 16:09:09 +0100468 sp<DeviceDescriptor> getNewInputDevice(const sp<AudioInputDescriptor>& inputDesc);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800469
François Gaffie45ed3b02015-03-19 10:35:14 +0100470 virtual uint32_t getMaxEffectsCpuLoad()
471 {
472 return mEffects.getMaxEffectsCpuLoad();
473 }
474
475 virtual uint32_t getMaxEffectsMemory()
476 {
477 return mEffects.getMaxEffectsMemory();
478 }
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800479
François Gaffie11d30102018-11-02 16:09:09 +0100480 SortedVector<audio_io_handle_t> getOutputsForDevices(
481 const DeviceVector &devices, const SwAudioOutputCollection& openOutputs);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800482
483 // mute/unmute strategies using an incompatible device combination
484 // if muting, wait for the audio in pcm buffer to be drained before proceeding
485 // if unmuting, unmute only after the specified delay
486 // Returns the number of ms waited
Chih-Hung Hsiehe964d4e2016-08-09 14:31:32 -0700487 virtual uint32_t checkDeviceMuteStrategies(const sp<AudioOutputDescriptor>& outputDesc,
François Gaffie11d30102018-11-02 16:09:09 +0100488 audio_devices_t prevDeviceType,
489 uint32_t delayMs);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800490
491 audio_io_handle_t selectOutput(const SortedVector<audio_io_handle_t>& outputs,
jiabin40573322018-11-08 12:08:02 -0800492 audio_output_flags_t flags = AUDIO_OUTPUT_FLAG_NONE,
493 audio_format_t format = AUDIO_FORMAT_INVALID,
494 audio_channel_mask_t channelMask = AUDIO_CHANNEL_NONE,
495 uint32_t samplingRate = 0);
Andy Hungf129b032015-04-07 13:45:50 -0700496 // samplingRate, format, channelMask are in/out and so may be modified
François Gaffie11d30102018-11-02 16:09:09 +0100497 sp<IOProfile> getInputProfile(const sp<DeviceDescriptor> & device,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800498 uint32_t& samplingRate,
Andy Hungf129b032015-04-07 13:45:50 -0700499 audio_format_t& format,
500 audio_channel_mask_t& channelMask,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800501 audio_input_flags_t flags);
François Gaffie11d30102018-11-02 16:09:09 +0100502 /**
503 * @brief getProfileForOutput
504 * @param devices vector of descriptors, may be empty if ignoring the device is required
505 * @param samplingRate
506 * @param format
507 * @param channelMask
508 * @param flags
509 * @param directOnly
510 * @return IOProfile to be used if found, nullptr otherwise
511 */
512 sp<IOProfile> getProfileForOutput(const DeviceVector &devices,
Michael Chana94fbb22018-04-24 14:31:19 +1000513 uint32_t samplingRate,
514 audio_format_t format,
515 audio_channel_mask_t channelMask,
516 audio_output_flags_t flags,
517 bool directOnly);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800518
Eric Laurent36829f92017-04-07 19:04:42 -0700519 audio_io_handle_t selectOutputForMusicEffects();
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800520
François Gaffie53615e22015-03-19 09:24:12 +0100521 virtual status_t addAudioPatch(audio_patch_handle_t handle, const sp<AudioPatch>& patch)
522 {
523 return mAudioPatches.addAudioPatch(handle, patch);
524 }
525 virtual status_t removeAudioPatch(audio_patch_handle_t handle)
526 {
527 return mAudioPatches.removeAudioPatch(handle);
528 }
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800529
François Gaffie9eb18552018-11-05 10:33:26 +0100530 bool isPrimaryModule(const sp<HwModule> &module) const
531 {
532 if (module == 0 || !hasPrimaryOutput()) {
533 return false;
534 }
535 return module->getHandle() == mPrimaryOutput->getModuleHandle();
536 }
François Gaffie11d30102018-11-02 16:09:09 +0100537 DeviceVector availablePrimaryOutputDevices() const
François Gaffie53615e22015-03-19 09:24:12 +0100538 {
Eric Laurent87ffa392015-05-22 10:32:38 -0700539 if (!hasPrimaryOutput()) {
François Gaffie11d30102018-11-02 16:09:09 +0100540 return DeviceVector();
Eric Laurent87ffa392015-05-22 10:32:38 -0700541 }
Francois Gaffie716e1432019-01-14 16:58:59 +0100542 return mAvailableOutputDevices.filter(mPrimaryOutput->supportedDevices());
François Gaffie53615e22015-03-19 09:24:12 +0100543 }
François Gaffie11d30102018-11-02 16:09:09 +0100544 DeviceVector availablePrimaryModuleInputDevices() const
François Gaffie53615e22015-03-19 09:24:12 +0100545 {
Eric Laurent87ffa392015-05-22 10:32:38 -0700546 if (!hasPrimaryOutput()) {
François Gaffie11d30102018-11-02 16:09:09 +0100547 return DeviceVector();
Eric Laurent87ffa392015-05-22 10:32:38 -0700548 }
François Gaffie11d30102018-11-02 16:09:09 +0100549 return mAvailableInputDevices.getDevicesFromHwModule(
Mikhail Naganov93661932018-07-26 14:37:41 -0700550 mPrimaryOutput->getModuleHandle());
François Gaffie53615e22015-03-19 09:24:12 +0100551 }
François Gaffieaca677c2018-05-03 10:47:50 +0200552 /**
553 * @brief getFirstDeviceId of the Device Vector
554 * @return if the collection is not empty, it returns the first device Id,
555 * otherwise AUDIO_PORT_HANDLE_NONE
556 */
557 audio_port_handle_t getFirstDeviceId(const DeviceVector &devices) const
558 {
559 return (devices.size() > 0) ? devices.itemAt(0)->getId() : AUDIO_PORT_HANDLE_NONE;
560 }
561 String8 getFirstDeviceAddress(const DeviceVector &devices) const
562 {
563 return (devices.size() > 0) ? devices.itemAt(0)->address() : String8("");
564 }
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800565
François Gaffie11d30102018-11-02 16:09:09 +0100566 uint32_t updateCallRouting(const DeviceVector &rxDevices, uint32_t delayMs = 0);
567 sp<AudioPatch> createTelephonyPatch(bool isRx, const sp<DeviceDescriptor> &device,
568 uint32_t delayMs);
Mikhail Naganovdc769682018-05-04 15:34:08 -0700569 sp<DeviceDescriptor> findDevice(
Mikhail Naganov15be9d22017-11-08 14:18:13 +1100570 const DeviceVector& devices, audio_devices_t device) const;
Mikhail Naganov100f0122018-11-29 11:22:16 -0800571 audio_devices_t getModuleDeviceTypes(
572 const DeviceVector& devices, const char *moduleId) const;
573 bool isDeviceOfModule(const sp<DeviceDescriptor>& devDesc, const char *moduleId) const;
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800574
Eric Laurent97ac8712018-07-27 18:59:02 -0700575 status_t startSource(const sp<SwAudioOutputDescriptor>& outputDesc,
576 const sp<TrackClientDescriptor>& client,
Eric Laurentc75307b2015-03-17 15:29:32 -0700577 uint32_t *delayMs);
Eric Laurent97ac8712018-07-27 18:59:02 -0700578 status_t stopSource(const sp<SwAudioOutputDescriptor>& outputDesc,
579 const sp<TrackClientDescriptor>& client);
Eric Laurent8c7e6da2015-04-21 17:37:00 -0700580
581 void clearAudioPatches(uid_t uid);
582 void clearSessionRoutes(uid_t uid);
583 void checkStrategyRoute(routing_strategy strategy, audio_io_handle_t ouptutToSkip);
Eric Laurentc75307b2015-03-17 15:29:32 -0700584
Eric Laurent87ffa392015-05-22 10:32:38 -0700585 status_t hasPrimaryOutput() const { return mPrimaryOutput != 0; }
586
Eric Laurent3e6c7e12018-07-27 17:09:23 -0700587 status_t connectAudioSource(const sp<SourceClientDescriptor>& sourceDesc);
588 status_t disconnectAudioSource(const sp<SourceClientDescriptor>& sourceDesc);
Eric Laurentd60560a2015-04-10 11:31:20 -0700589
Eric Laurent3e6c7e12018-07-27 17:09:23 -0700590 sp<SourceClientDescriptor> getSourceForStrategyOnOutput(audio_io_handle_t output,
Eric Laurentd60560a2015-04-10 11:31:20 -0700591 routing_strategy strategy);
592
593 void cleanUpForDevice(const sp<DeviceDescriptor>& deviceDesc);
594
595 void clearAudioSources(uid_t uid);
596
Eric Laurent794fde22016-03-11 09:50:45 -0800597 static bool streamsMatchForvolume(audio_stream_type_t stream1,
598 audio_stream_type_t stream2);
Eric Laurent28d09f02016-03-08 10:43:05 -0800599
Eric Laurent8f42ea12018-08-08 09:08:25 -0700600 void closeActiveClients(const sp<AudioInputDescriptor>& input);
601 void closeClient(audio_port_handle_t portId);
Eric Laurent8fc147b2018-07-22 19:13:55 -0700602
Andy Hung4ef19fa2018-05-15 19:35:29 -0700603 const uid_t mUidCached; // AID_AUDIOSERVER
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800604 AudioPolicyClientInterface *mpClientInterface; // audio policy client interface
Eric Laurentc75307b2015-03-17 15:29:32 -0700605 sp<SwAudioOutputDescriptor> mPrimaryOutput; // primary output descriptor
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800606 // list of descriptors for outputs currently opened
Eric Laurentc75307b2015-03-17 15:29:32 -0700607
608 SwAudioOutputCollection mOutputs;
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800609 // copy of mOutputs before setDeviceConnectionState() opens new outputs
610 // reset to mOutputs when updateDevicesAndOutputs() is called.
Eric Laurentc75307b2015-03-17 15:29:32 -0700611 SwAudioOutputCollection mPreviousOutputs;
François Gaffie53615e22015-03-19 09:24:12 +0100612 AudioInputCollection mInputs; // list of input descriptors
Eric Laurentc75307b2015-03-17 15:29:32 -0700613
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800614 DeviceVector mAvailableOutputDevices; // all available output devices
615 DeviceVector mAvailableInputDevices; // all available input devices
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800616
François Gaffiedfd74092015-03-19 12:10:59 +0100617 bool mLimitRingtoneVolume; // limit ringtone volume to music volume if headset connected
François Gaffie11d30102018-11-02 16:09:09 +0100618
619 /**
620 * @brief mDevicesForStrategy vector of devices that are assigned for a given strategy.
621 * Note: in case of removal of device (@see setDeviceConnectionState), the device descriptor
622 * will be removed from the @see mAvailableOutputDevices or @see mAvailableInputDevices
623 * but the devices for strategies will be reevaluated within the
624 * @see setDeviceConnectionState function.
625 */
626 DeviceVector mDevicesForStrategy[NUM_STRATEGIES];
627
François Gaffiedfd74092015-03-19 12:10:59 +0100628 float mLastVoiceVolume; // last voice volume value sent to audio HAL
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800629 bool mA2dpSuspended; // true if A2DP output is suspended
Mikhail Naganovad3f8a12017-12-12 13:24:23 -0800630
Mikhail Naganovbcbcb1b2017-12-13 13:03:35 -0800631 std::unique_ptr<IVolumeCurvesCollection> mVolumeCurves; // Volume Curves per use case and device category
Mikhail Naganovad3f8a12017-12-12 13:24:23 -0800632 EffectDescriptorCollection mEffects; // list of registered audio effects
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800633 sp<DeviceDescriptor> mDefaultOutputDevice; // output device selected by default at boot time
Mikhail Naganovd4120142017-12-06 15:49:22 -0800634 HwModuleCollection mHwModules; // contains only modules that have been loaded successfully
635 HwModuleCollection mHwModulesAll; // normally not needed, used during construction and for
636 // dumps
Mikhail Naganovad3f8a12017-12-12 13:24:23 -0800637 AudioPolicyConfig mConfig;
François Gaffie53615e22015-03-19 09:24:12 +0100638
Mikhail Naganov2773dd72017-12-08 10:12:11 -0800639 std::atomic<uint32_t> mAudioPortGeneration;
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800640
François Gaffie53615e22015-03-19 09:24:12 +0100641 AudioPatchCollection mAudioPatches;
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800642
François Gaffiedf372692015-03-19 10:43:27 +0100643 SoundTriggerSessionCollection mSoundTriggerSessions;
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800644
645 sp<AudioPatch> mCallTxPatch;
646 sp<AudioPatch> mCallRxPatch;
647
Eric Laurentd60560a2015-04-10 11:31:20 -0700648 HwAudioOutputCollection mHwOutputs;
Eric Laurent3e6c7e12018-07-27 17:09:23 -0700649 SourceClientCollection mAudioSources;
Eric Laurentd60560a2015-04-10 11:31:20 -0700650
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800651 // for supporting "beacon" streams, i.e. streams that only play on speaker, and never
652 // when something other than STREAM_TTS (a.k.a. "Transmitted Through Speaker") is playing
653 enum {
654 STARTING_OUTPUT,
655 STARTING_BEACON,
656 STOPPING_OUTPUT,
657 STOPPING_BEACON
658 };
659 uint32_t mBeaconMuteRefCount; // ref count for stream that would mute beacon
660 uint32_t mBeaconPlayingRefCount;// ref count for the playing beacon streams
661 bool mBeaconMuted; // has STREAM_TTS been muted
Eric Laurent9459fb02015-08-12 18:36:32 -0700662 bool mTtsOutputAvailable; // true if a dedicated output for TTS stream is available
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800663
Andy Hung2ddee192015-12-18 17:34:44 -0800664 bool mMasterMono; // true if we wish to force all outputs to mono
François Gaffie036e1e92015-03-19 10:16:24 +0100665 AudioPolicyMixCollection mPolicyMixes; // list of registered mixes
Eric Laurent36829f92017-04-07 19:04:42 -0700666 audio_io_handle_t mMusicEffectOutput; // output selected for music effects
667
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800668 uint32_t nextAudioPortGeneration();
Jean-Michel Trivi887a9ed2015-03-31 18:02:24 -0700669
670 // Audio Policy Engine Interface.
671 AudioPolicyManagerInterface *mEngine;
jiabin81772902018-04-02 17:52:27 -0700672
Mikhail Naganov100f0122018-11-29 11:22:16 -0800673 // Surround formats that are enabled manually. Taken into account when
674 // "encoded surround" is forced into "manual" mode.
675 std::unordered_set<audio_format_t> mManualSurroundFormats;
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800676private:
Phil Burk09bc4612016-02-24 15:58:15 -0800677 // Add or remove AC3 DTS encodings based on user preferences.
Mikhail Naganovd5e18052018-11-30 14:55:45 -0800678 void modifySurroundFormats(const sp<DeviceDescriptor>& devDesc, FormatVector *formatsPtr);
679 void modifySurroundChannelMasks(ChannelsVector *channelMasksPtr);
Phil Burk09bc4612016-02-24 15:58:15 -0800680
Mikhail Naganov15be9d22017-11-08 14:18:13 +1100681 // Support for Multi-Stream Decoder (MSD) module
682 sp<DeviceDescriptor> getMsdAudioInDevice() const;
François Gaffie11d30102018-11-02 16:09:09 +0100683 DeviceVector getMsdAudioOutDevices() const;
Mikhail Naganov15be9d22017-11-08 14:18:13 +1100684 const AudioPatchCollection getMsdPatches() const;
François Gaffie11d30102018-11-02 16:09:09 +0100685 status_t getBestMsdAudioProfileFor(const sp<DeviceDescriptor> &outputDevice,
Mikhail Naganov15be9d22017-11-08 14:18:13 +1100686 bool hwAvSync,
687 audio_port_config *sourceConfig,
688 audio_port_config *sinkConfig) const;
François Gaffie11d30102018-11-02 16:09:09 +0100689 PatchBuilder buildMsdPatch(const sp<DeviceDescriptor> &outputDevice) const;
690 status_t setMsdPatch(const sp<DeviceDescriptor> &outputDevice = nullptr);
Mikhail Naganov15be9d22017-11-08 14:18:13 +1100691
François Gaffie112b0af2015-11-19 16:13:25 +0100692 // If any, resolve any "dynamic" fields of an Audio Profiles collection
Mikhail Naganovd5e18052018-11-30 14:55:45 -0800693 void updateAudioProfiles(const sp<DeviceDescriptor>& devDesc, audio_io_handle_t ioHandle,
Phil Burk00eeb322016-03-31 12:41:00 -0700694 AudioProfileVector &profiles);
François Gaffie112b0af2015-11-19 16:13:25 +0100695
François Gaffie44481e72016-04-20 07:49:57 +0200696 // Notify the policy client of any change of device state with AUDIO_IO_HANDLE_NONE,
697 // so that the client interprets it as global to audio hardware interfaces.
698 // It can give a chance to HAL implementer to retrieve dynamic capabilities associated
699 // to this device for example.
700 // TODO avoid opening stream to retrieve capabilities of a profile.
François Gaffie11d30102018-11-02 16:09:09 +0100701 void broadcastDeviceConnectionState(const sp<DeviceDescriptor> &device,
702 audio_policy_dev_state_t state);
François Gaffie44481e72016-04-20 07:49:57 +0200703
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800704 // updates device caching and output for streams that can influence the
705 // routing of notifications
706 void handleNotificationRoutingForStream(audio_stream_type_t stream);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800707 uint32_t curAudioPortGeneration() const { return mAudioPortGeneration; }
Hongwei Wangbb93dfb2018-10-23 13:54:22 -0700708 // internal method, get audio_attributes_t from either a source audio_attributes_t
709 // or audio_stream_type_t, respectively.
710 status_t getAudioAttributes(audio_attributes_t *dstAttr,
711 const audio_attributes_t *srcAttr,
712 audio_stream_type_t srcStream);
713 // internal method, called by getOutputForAttr() and connectAudioSource.
714 status_t getOutputForAttrInt(audio_attributes_t *resultAttr,
715 audio_io_handle_t *output,
716 audio_session_t session,
717 const audio_attributes_t *attr,
718 audio_stream_type_t *stream,
719 uid_t uid,
720 const audio_config_t *config,
721 audio_output_flags_t *flags,
722 audio_port_handle_t *selectedDeviceId);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800723 // internal method to return the output handle for the given device and format
François Gaffie11d30102018-11-02 16:09:09 +0100724 audio_io_handle_t getOutputForDevices(
725 const DeviceVector &devices,
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800726 audio_session_t session,
727 audio_stream_type_t stream,
Eric Laurentfe231122017-11-17 17:48:06 -0800728 const audio_config_t *config,
Nadav Bar766fb022018-01-07 12:18:03 +0200729 audio_output_flags_t *flags);
Eric Laurent599c7582015-12-07 18:05:55 -0800730 // internal method to return the input handle for the given device and format
François Gaffie11d30102018-11-02 16:09:09 +0100731 audio_io_handle_t getInputForDevice(const sp<DeviceDescriptor> &device,
Eric Laurent599c7582015-12-07 18:05:55 -0800732 audio_session_t session,
Eric Laurent599c7582015-12-07 18:05:55 -0800733 audio_source_t inputSource,
Eric Laurentfe231122017-11-17 17:48:06 -0800734 const audio_config_base_t *config,
Eric Laurent599c7582015-12-07 18:05:55 -0800735 audio_input_flags_t flags,
736 AudioMix *policyMix);
737
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800738 // internal function to derive a stream type value from audio attributes
739 audio_stream_type_t streamTypefromAttributesInt(const audio_attributes_t *attr);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800740 // event is one of STARTING_OUTPUT, STARTING_BEACON, STOPPING_OUTPUT, STOPPING_BEACON
741 // returns 0 if no mute/unmute event happened, the largest latency of the device where
742 // the mute/unmute happened
743 uint32_t handleEventForBeacon(int event);
744 uint32_t setBeaconMute(bool mute);
745 bool isValidAttributes(const audio_attributes_t *paa);
746
747 // select input device corresponding to requested audio source and return associated policy
748 // mix if any. Calls getDeviceForInputSource().
Francois Gaffie716e1432019-01-14 16:58:59 +0100749 sp<DeviceDescriptor> getDeviceAndMixForAttributes(const audio_attributes_t &attributes,
750 AudioMix **policyMix = NULL);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800751
752 // Called by setDeviceConnectionState().
François Gaffie11d30102018-11-02 16:09:09 +0100753 status_t setDeviceConnectionStateInt(audio_devices_t deviceType,
754 audio_policy_dev_state_t state,
755 const char *device_address,
Aniket Kumar Lata4e464702019-01-10 23:38:46 -0800756 const char *device_name,
757 audio_format_t encodedFormat);
Andy Hung2ddee192015-12-18 17:34:44 -0800758 void updateMono(audio_io_handle_t output) {
759 AudioParameter param;
Mikhail Naganov388360c2016-10-17 17:09:41 -0700760 param.addInt(String8(AudioParameter::keyMonoOutput), (int)mMasterMono);
Andy Hung2ddee192015-12-18 17:34:44 -0800761 mpClientInterface->setParameters(output, param.toString());
762 }
Mikhail Naganovdc769682018-05-04 15:34:08 -0700763 status_t installPatch(const char *caller,
764 audio_patch_handle_t *patchHandle,
765 AudioIODescriptorInterface *ioDescriptor,
766 const struct audio_patch *patch,
767 int delayMs);
768 status_t installPatch(const char *caller,
769 ssize_t index,
770 audio_patch_handle_t *patchHandle,
771 const struct audio_patch *patch,
772 int delayMs,
773 uid_t uid,
774 sp<AudioPatch> *patchDescPtr);
Jean-Michel Trivi56ec4ff2015-01-23 16:45:18 -0800775};
776
777};