blob: 99d9febbff26d0483399004e6c9fad7e0e0f4ada [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
17
18#include <stdint.h>
19#include <sys/types.h>
20#include <cutils/config_utils.h>
21#include <cutils/misc.h>
22#include <utils/Timers.h>
23#include <utils/Errors.h>
24#include <utils/KeyedVector.h>
25#include <utils/SortedVector.h>
Eric Laurent3b73df72014-03-11 09:06:29 -070026#include "AudioPolicyInterface.h"
Eric Laurente552edb2014-03-10 17:42:56 -070027
28
Eric Laurent3b73df72014-03-11 09:06:29 -070029namespace android {
Eric Laurente552edb2014-03-10 17:42:56 -070030
31// ----------------------------------------------------------------------------
32
Eric Laurente552edb2014-03-10 17:42:56 -070033// Attenuation applied to STRATEGY_SONIFICATION streams when a headset is connected: 6dB
34#define SONIFICATION_HEADSET_VOLUME_FACTOR 0.5
35// Min volume for STRATEGY_SONIFICATION streams when limited by music volume: -36dB
36#define SONIFICATION_HEADSET_VOLUME_MIN 0.016
37// Time in milliseconds during which we consider that music is still active after a music
38// track was stopped - see computeVolume()
39#define SONIFICATION_HEADSET_MUSIC_DELAY 5000
40// Time in milliseconds after media stopped playing during which we consider that the
41// sonification should be as unobtrusive as during the time media was playing.
42#define SONIFICATION_RESPECTFUL_AFTER_MUSIC_DELAY 5000
43// Time in milliseconds during witch some streams are muted while the audio path
44// is switched
45#define MUTE_TIME_MS 2000
46
47#define NUM_TEST_OUTPUTS 5
48
49#define NUM_VOL_CURVE_KNEES 2
50
51// Default minimum length allowed for offloading a compressed track
52// Can be overridden by the audio.offload.min.duration.secs property
53#define OFFLOAD_DEFAULT_MIN_DURATION_SECS 60
54
55// ----------------------------------------------------------------------------
Eric Laurente0720872014-03-11 09:30:41 -070056// AudioPolicyManager implements audio policy manager behavior common to all platforms.
Eric Laurente552edb2014-03-10 17:42:56 -070057// ----------------------------------------------------------------------------
58
Eric Laurente0720872014-03-11 09:30:41 -070059class AudioPolicyManager: public AudioPolicyInterface
Eric Laurente552edb2014-03-10 17:42:56 -070060#ifdef AUDIO_POLICY_TEST
61 , public Thread
62#endif //AUDIO_POLICY_TEST
63{
64
65public:
Eric Laurente0720872014-03-11 09:30:41 -070066 AudioPolicyManager(AudioPolicyClientInterface *clientInterface);
67 virtual ~AudioPolicyManager();
Eric Laurente552edb2014-03-10 17:42:56 -070068
69 // AudioPolicyInterface
70 virtual status_t setDeviceConnectionState(audio_devices_t device,
Eric Laurent3b73df72014-03-11 09:06:29 -070071 audio_policy_dev_state_t state,
Eric Laurente552edb2014-03-10 17:42:56 -070072 const char *device_address);
Eric Laurent3b73df72014-03-11 09:06:29 -070073 virtual audio_policy_dev_state_t getDeviceConnectionState(audio_devices_t device,
Eric Laurente552edb2014-03-10 17:42:56 -070074 const char *device_address);
Eric Laurent3b73df72014-03-11 09:06:29 -070075 virtual void setPhoneState(audio_mode_t state);
76 virtual void setForceUse(audio_policy_force_use_t usage,
77 audio_policy_forced_cfg_t config);
78 virtual audio_policy_forced_cfg_t getForceUse(audio_policy_force_use_t usage);
Eric Laurente552edb2014-03-10 17:42:56 -070079 virtual void setSystemProperty(const char* property, const char* value);
80 virtual status_t initCheck();
Eric Laurent3b73df72014-03-11 09:06:29 -070081 virtual audio_io_handle_t getOutput(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -070082 uint32_t samplingRate,
83 audio_format_t format,
84 audio_channel_mask_t channelMask,
Eric Laurent3b73df72014-03-11 09:06:29 -070085 audio_output_flags_t flags,
Eric Laurente552edb2014-03-10 17:42:56 -070086 const audio_offload_info_t *offloadInfo);
87 virtual status_t startOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -070088 audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -070089 int session = 0);
90 virtual status_t stopOutput(audio_io_handle_t output,
Eric Laurent3b73df72014-03-11 09:06:29 -070091 audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -070092 int session = 0);
93 virtual void releaseOutput(audio_io_handle_t output);
Eric Laurent3b73df72014-03-11 09:06:29 -070094 virtual audio_io_handle_t getInput(audio_source_t inputSource,
Eric Laurente552edb2014-03-10 17:42:56 -070095 uint32_t samplingRate,
96 audio_format_t format,
97 audio_channel_mask_t channelMask,
Eric Laurent3b73df72014-03-11 09:06:29 -070098 audio_in_acoustics_t acoustics);
Eric Laurente552edb2014-03-10 17:42:56 -070099
100 // indicates to the audio policy manager that the input starts being used.
101 virtual status_t startInput(audio_io_handle_t input);
102
103 // indicates to the audio policy manager that the input stops being used.
104 virtual status_t stopInput(audio_io_handle_t input);
105 virtual void releaseInput(audio_io_handle_t input);
Eric Laurentd4692962014-05-05 18:13:44 -0700106 virtual void closeAllInputs();
Eric Laurent3b73df72014-03-11 09:06:29 -0700107 virtual void initStreamVolume(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -0700108 int indexMin,
109 int indexMax);
Eric Laurent3b73df72014-03-11 09:06:29 -0700110 virtual status_t setStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -0700111 int index,
112 audio_devices_t device);
Eric Laurent3b73df72014-03-11 09:06:29 -0700113 virtual status_t getStreamVolumeIndex(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -0700114 int *index,
115 audio_devices_t device);
116
117 // return the strategy corresponding to a given stream type
Eric Laurent3b73df72014-03-11 09:06:29 -0700118 virtual uint32_t getStrategyForStream(audio_stream_type_t stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700119
120 // return the enabled output devices for the given stream type
Eric Laurent3b73df72014-03-11 09:06:29 -0700121 virtual audio_devices_t getDevicesForStream(audio_stream_type_t stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700122
123 virtual audio_io_handle_t getOutputForEffect(const effect_descriptor_t *desc = NULL);
124 virtual status_t registerEffect(const effect_descriptor_t *desc,
125 audio_io_handle_t io,
126 uint32_t strategy,
127 int session,
128 int id);
129 virtual status_t unregisterEffect(int id);
130 virtual status_t setEffectEnabled(int id, bool enabled);
131
Eric Laurent3b73df72014-03-11 09:06:29 -0700132 virtual bool isStreamActive(audio_stream_type_t stream, uint32_t inPastMs = 0) const;
Eric Laurente552edb2014-03-10 17:42:56 -0700133 // return whether a stream is playing remotely, override to change the definition of
134 // local/remote playback, used for instance by notification manager to not make
135 // media players lose audio focus when not playing locally
Eric Laurent3b73df72014-03-11 09:06:29 -0700136 virtual bool isStreamActiveRemotely(audio_stream_type_t stream, uint32_t inPastMs = 0) const;
Eric Laurente552edb2014-03-10 17:42:56 -0700137 virtual bool isSourceActive(audio_source_t source) const;
138
139 virtual status_t dump(int fd);
140
141 virtual bool isOffloadSupported(const audio_offload_info_t& offloadInfo);
142
Eric Laurent6a94d692014-05-20 11:18:06 -0700143 virtual status_t listAudioPorts(audio_port_role_t role,
144 audio_port_type_t type,
145 unsigned int *num_ports,
146 struct audio_port *ports,
147 unsigned int *generation);
148 virtual status_t getAudioPort(struct audio_port *port);
149 virtual status_t createAudioPatch(const struct audio_patch *patch,
150 audio_patch_handle_t *handle,
151 uid_t uid);
152 virtual status_t releaseAudioPatch(audio_patch_handle_t handle,
153 uid_t uid);
154 virtual status_t listAudioPatches(unsigned int *num_patches,
155 struct audio_patch *patches,
156 unsigned int *generation);
157 virtual status_t setAudioPortConfig(const struct audio_port_config *config);
158 virtual void clearAudioPatches(uid_t uid);
159
Eric Laurente552edb2014-03-10 17:42:56 -0700160protected:
161
162 enum routing_strategy {
163 STRATEGY_MEDIA,
164 STRATEGY_PHONE,
165 STRATEGY_SONIFICATION,
166 STRATEGY_SONIFICATION_RESPECTFUL,
167 STRATEGY_DTMF,
168 STRATEGY_ENFORCED_AUDIBLE,
169 NUM_STRATEGIES
170 };
171
172 // 4 points to define the volume attenuation curve, each characterized by the volume
173 // index (from 0 to 100) at which they apply, and the attenuation in dB at that index.
174 // we use 100 steps to avoid rounding errors when computing the volume in volIndexToAmpl()
175
176 enum { VOLMIN = 0, VOLKNEE1 = 1, VOLKNEE2 = 2, VOLMAX = 3, VOLCNT = 4};
177
178 class VolumeCurvePoint
179 {
180 public:
181 int mIndex;
182 float mDBAttenuation;
183 };
184
185 // device categories used for volume curve management.
186 enum device_category {
187 DEVICE_CATEGORY_HEADSET,
188 DEVICE_CATEGORY_SPEAKER,
189 DEVICE_CATEGORY_EARPIECE,
190 DEVICE_CATEGORY_CNT
191 };
192
193 class IOProfile;
194
195 class HwModule {
196 public:
197 HwModule(const char *name);
198 ~HwModule();
199
200 void dump(int fd);
201
202 const char *const mName; // base name of the audio HW module (primary, a2dp ...)
203 audio_module_handle_t mHandle;
Eric Laurent951f4552014-05-20 10:48:17 -0700204 Vector < sp<IOProfile> > mOutputProfiles; // output profiles exposed by this module
205 Vector < sp<IOProfile> > mInputProfiles; // input profiles exposed by this module
206 };
207
208 class AudioPort: public RefBase
209 {
210 public:
211 AudioPort(audio_port_type_t type, audio_port_role_t role, HwModule *module) :
212 mType(type), mRole(role), mModule(module) {}
213 virtual ~AudioPort() {}
214
215 virtual void toAudioPort(struct audio_port *port) const;
216
217 void loadSamplingRates(char *name);
218 void loadFormats(char *name);
219 void loadOutChannels(char *name);
220 void loadInChannels(char *name);
221
222 audio_port_type_t mType;
223 audio_port_role_t mRole;
224 // by convention, "0' in the first entry in mSamplingRates, mChannelMasks or mFormats
225 // indicates the supported parameters should be read from the output stream
226 // after it is opened for the first time
227 Vector <uint32_t> mSamplingRates; // supported sampling rates
228 Vector <audio_channel_mask_t> mChannelMasks; // supported channel masks
229 Vector <audio_format_t> mFormats; // supported audio formats
230 HwModule *mModule; // audio HW module exposing this I/O stream
231 };
232
Eric Laurent6a94d692014-05-20 11:18:06 -0700233 class AudioPatch: public RefBase
234 {
235 public:
236 AudioPatch(audio_patch_handle_t handle,
237 const struct audio_patch *patch, uid_t uid) :
238 mHandle(handle), mPatch(*patch), mUid(uid), mAfPatchHandle(0) {}
239
240 audio_patch_handle_t mHandle;
241 struct audio_patch mPatch;
242 uid_t mUid;
243 audio_patch_handle_t mAfPatchHandle;
244 };
Eric Laurent951f4552014-05-20 10:48:17 -0700245
246 class DeviceDescriptor: public AudioPort
247 {
248 public:
249 DeviceDescriptor(audio_devices_t type, String8 address,
250 audio_channel_mask_t channelMask) :
251 AudioPort(AUDIO_PORT_TYPE_DEVICE,
252 audio_is_output_device(type) ? AUDIO_PORT_ROLE_SINK :
253 AUDIO_PORT_ROLE_SOURCE,
254 NULL),
255 mDeviceType(type), mAddress(address),
256 mChannelMask(channelMask), mId(0) {}
257
258 DeviceDescriptor(audio_devices_t type) :
259 AudioPort(AUDIO_PORT_TYPE_DEVICE,
260 audio_is_output_device(type) ? AUDIO_PORT_ROLE_SINK :
261 AUDIO_PORT_ROLE_SOURCE,
262 NULL),
263 mDeviceType(type), mAddress(""),
264 mChannelMask(0), mId(0) {}
265 virtual ~DeviceDescriptor() {}
266
267 bool equals(const sp<DeviceDescriptor>& other) const;
Eric Laurent6a94d692014-05-20 11:18:06 -0700268 void toAudioPortConfig(struct audio_port_config *dstConfig,
269 const struct audio_port_config *srcConfig = NULL) const;
Eric Laurent951f4552014-05-20 10:48:17 -0700270 virtual void toAudioPort(struct audio_port *port) const;
271
272 status_t dump(int fd, int spaces) const;
273 static void dumpHeader(int fd, int spaces);
274
275 audio_devices_t mDeviceType;
276 String8 mAddress;
277 audio_channel_mask_t mChannelMask;
278 audio_port_handle_t mId;
279 };
280
281 class DeviceVector : public SortedVector< sp<DeviceDescriptor> >
282 {
283 public:
284 DeviceVector() : SortedVector(), mDeviceTypes(AUDIO_DEVICE_NONE) {}
285
286 ssize_t add(const sp<DeviceDescriptor>& item);
287 ssize_t remove(const sp<DeviceDescriptor>& item);
288 ssize_t indexOf(const sp<DeviceDescriptor>& item) const;
289
290 audio_devices_t types() const { return mDeviceTypes; }
291
292 void loadDevicesFromType(audio_devices_t types);
293 sp<DeviceDescriptor> getDevice(audio_devices_t type, String8 address) const;
294 DeviceVector getDevicesFromType(audio_devices_t types) const;
Eric Laurent6a94d692014-05-20 11:18:06 -0700295 sp<DeviceDescriptor> getDeviceFromId(audio_port_handle_t id) const;
Eric Laurent951f4552014-05-20 10:48:17 -0700296
297 private:
298 void refreshTypes();
299 audio_devices_t mDeviceTypes;
Eric Laurente552edb2014-03-10 17:42:56 -0700300 };
301
302 // the IOProfile class describes the capabilities of an output or input stream.
303 // It is currently assumed that all combination of listed parameters are supported.
304 // It is used by the policy manager to determine if an output or input is suitable for
305 // a given use case, open/close it accordingly and connect/disconnect audio tracks
306 // to/from it.
Eric Laurent951f4552014-05-20 10:48:17 -0700307 class IOProfile : public AudioPort
Eric Laurente552edb2014-03-10 17:42:56 -0700308 {
309 public:
Eric Laurent951f4552014-05-20 10:48:17 -0700310 IOProfile(audio_port_role_t role, HwModule *module);
311 virtual ~IOProfile();
Eric Laurente552edb2014-03-10 17:42:56 -0700312
313 bool isCompatibleProfile(audio_devices_t device,
314 uint32_t samplingRate,
315 audio_format_t format,
316 audio_channel_mask_t channelMask,
317 audio_output_flags_t flags) const;
318
319 void dump(int fd);
Eric Laurentd4692962014-05-05 18:13:44 -0700320 void log();
Eric Laurente552edb2014-03-10 17:42:56 -0700321
Eric Laurent3a4311c2014-03-17 12:00:47 -0700322 DeviceVector mSupportedDevices; // supported devices
323 // (devices this output can be routed to)
Eric Laurente552edb2014-03-10 17:42:56 -0700324 audio_output_flags_t mFlags; // attribute flags (e.g primary output,
325 // direct output...). For outputs only.
Eric Laurente552edb2014-03-10 17:42:56 -0700326 };
327
328 // default volume curve
Eric Laurente0720872014-03-11 09:30:41 -0700329 static const VolumeCurvePoint sDefaultVolumeCurve[AudioPolicyManager::VOLCNT];
Eric Laurente552edb2014-03-10 17:42:56 -0700330 // default volume curve for media strategy
Eric Laurente0720872014-03-11 09:30:41 -0700331 static const VolumeCurvePoint sDefaultMediaVolumeCurve[AudioPolicyManager::VOLCNT];
Eric Laurente552edb2014-03-10 17:42:56 -0700332 // volume curve for media strategy on speakers
Eric Laurente0720872014-03-11 09:30:41 -0700333 static const VolumeCurvePoint sSpeakerMediaVolumeCurve[AudioPolicyManager::VOLCNT];
Eric Laurente552edb2014-03-10 17:42:56 -0700334 // volume curve for sonification strategy on speakers
Eric Laurente0720872014-03-11 09:30:41 -0700335 static const VolumeCurvePoint sSpeakerSonificationVolumeCurve[AudioPolicyManager::VOLCNT];
336 static const VolumeCurvePoint sSpeakerSonificationVolumeCurveDrc[AudioPolicyManager::VOLCNT];
337 static const VolumeCurvePoint sDefaultSystemVolumeCurve[AudioPolicyManager::VOLCNT];
338 static const VolumeCurvePoint sDefaultSystemVolumeCurveDrc[AudioPolicyManager::VOLCNT];
339 static const VolumeCurvePoint sHeadsetSystemVolumeCurve[AudioPolicyManager::VOLCNT];
340 static const VolumeCurvePoint sDefaultVoiceVolumeCurve[AudioPolicyManager::VOLCNT];
341 static const VolumeCurvePoint sSpeakerVoiceVolumeCurve[AudioPolicyManager::VOLCNT];
Eric Laurente552edb2014-03-10 17:42:56 -0700342 // default volume curves per stream and device category. See initializeVolumeCurves()
343 static const VolumeCurvePoint *sVolumeProfiles[AUDIO_STREAM_CNT][DEVICE_CATEGORY_CNT];
344
345 // descriptor for audio outputs. Used to maintain current configuration of each opened audio output
346 // and keep track of the usage of this output by each audio stream type.
347 class AudioOutputDescriptor
348 {
349 public:
Eric Laurent951f4552014-05-20 10:48:17 -0700350 AudioOutputDescriptor(const sp<IOProfile>& profile);
Eric Laurente552edb2014-03-10 17:42:56 -0700351
352 status_t dump(int fd);
353
354 audio_devices_t device() const;
Eric Laurent3b73df72014-03-11 09:06:29 -0700355 void changeRefCount(audio_stream_type_t stream, int delta);
Eric Laurente552edb2014-03-10 17:42:56 -0700356
357 bool isDuplicated() const { return (mOutput1 != NULL && mOutput2 != NULL); }
358 audio_devices_t supportedDevices();
359 uint32_t latency();
360 bool sharesHwModuleWith(const AudioOutputDescriptor *outputDesc);
361 bool isActive(uint32_t inPastMs = 0) const;
Eric Laurent3b73df72014-03-11 09:06:29 -0700362 bool isStreamActive(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -0700363 uint32_t inPastMs = 0,
364 nsecs_t sysTime = 0) const;
365 bool isStrategyActive(routing_strategy strategy,
366 uint32_t inPastMs = 0,
367 nsecs_t sysTime = 0) const;
368
Eric Laurent6a94d692014-05-20 11:18:06 -0700369 void toAudioPortConfig(struct audio_port_config *dstConfig,
370 const struct audio_port_config *srcConfig = NULL) const;
Eric Laurent951f4552014-05-20 10:48:17 -0700371 void toAudioPort(struct audio_port *port) const;
372
373 audio_port_handle_t mId;
374 audio_io_handle_t mIoHandle; // output handle
Eric Laurente552edb2014-03-10 17:42:56 -0700375 uint32_t mSamplingRate; //
376 audio_format_t mFormat; //
377 audio_channel_mask_t mChannelMask; // output configuration
378 uint32_t mLatency; //
379 audio_output_flags_t mFlags; //
380 audio_devices_t mDevice; // current device this output is routed to
Eric Laurent951f4552014-05-20 10:48:17 -0700381 audio_patch_handle_t mPatchHandle;
Eric Laurent3b73df72014-03-11 09:06:29 -0700382 uint32_t mRefCount[AUDIO_STREAM_CNT]; // number of streams of each type using this output
383 nsecs_t mStopTime[AUDIO_STREAM_CNT];
Eric Laurente552edb2014-03-10 17:42:56 -0700384 AudioOutputDescriptor *mOutput1; // used by duplicated outputs: first output
385 AudioOutputDescriptor *mOutput2; // used by duplicated outputs: second output
Eric Laurent3b73df72014-03-11 09:06:29 -0700386 float mCurVolume[AUDIO_STREAM_CNT]; // current stream volume
387 int mMuteCount[AUDIO_STREAM_CNT]; // mute request counter
Eric Laurent951f4552014-05-20 10:48:17 -0700388 const sp<IOProfile> mProfile; // I/O profile this output derives from
Eric Laurente552edb2014-03-10 17:42:56 -0700389 bool mStrategyMutedByDevice[NUM_STRATEGIES]; // strategies muted because of incompatible
390 // device selection. See checkDeviceMuteStrategies()
391 uint32_t mDirectOpenCount; // number of clients using this output (direct outputs only)
392 };
393
394 // descriptor for audio inputs. Used to maintain current configuration of each opened audio input
395 // and keep track of the usage of this input.
396 class AudioInputDescriptor
397 {
398 public:
Eric Laurent951f4552014-05-20 10:48:17 -0700399 AudioInputDescriptor(const sp<IOProfile>& profile);
Eric Laurente552edb2014-03-10 17:42:56 -0700400
401 status_t dump(int fd);
402
Eric Laurent951f4552014-05-20 10:48:17 -0700403 audio_port_handle_t mId;
404 audio_io_handle_t mIoHandle; // input handle
Eric Laurente552edb2014-03-10 17:42:56 -0700405 uint32_t mSamplingRate; //
406 audio_format_t mFormat; // input configuration
407 audio_channel_mask_t mChannelMask; //
408 audio_devices_t mDevice; // current device this input is routed to
Eric Laurent951f4552014-05-20 10:48:17 -0700409 audio_patch_handle_t mPatchHandle;
Eric Laurente552edb2014-03-10 17:42:56 -0700410 uint32_t mRefCount; // number of AudioRecord clients using this output
Eric Laurent3b73df72014-03-11 09:06:29 -0700411 audio_source_t mInputSource; // input source selected by application (mediarecorder.h)
Eric Laurent951f4552014-05-20 10:48:17 -0700412 const sp<IOProfile> mProfile; // I/O profile this output derives from
413
Eric Laurent6a94d692014-05-20 11:18:06 -0700414 void toAudioPortConfig(struct audio_port_config *dstConfig,
415 const struct audio_port_config *srcConfig = NULL) const;
Eric Laurent951f4552014-05-20 10:48:17 -0700416 void toAudioPort(struct audio_port *port) const;
Eric Laurente552edb2014-03-10 17:42:56 -0700417 };
418
419 // stream descriptor used for volume control
420 class StreamDescriptor
421 {
422 public:
423 StreamDescriptor();
424
425 int getVolumeIndex(audio_devices_t device);
426 void dump(int fd);
427
428 int mIndexMin; // min volume index
429 int mIndexMax; // max volume index
430 KeyedVector<audio_devices_t, int> mIndexCur; // current volume index per device
431 bool mCanBeMuted; // true is the stream can be muted
432
433 const VolumeCurvePoint *mVolumeCurve[DEVICE_CATEGORY_CNT];
434 };
435
436 // stream descriptor used for volume control
437 class EffectDescriptor
438 {
439 public:
440
441 status_t dump(int fd);
442
443 int mIo; // io the effect is attached to
444 routing_strategy mStrategy; // routing strategy the effect is associated to
445 int mSession; // audio session the effect is on
446 effect_descriptor_t mDesc; // effect descriptor
447 bool mEnabled; // enabled state: CPU load being used or not
448 };
449
Eric Laurent951f4552014-05-20 10:48:17 -0700450 void addOutput(audio_io_handle_t output, AudioOutputDescriptor *outputDesc);
451 void addInput(audio_io_handle_t input, AudioInputDescriptor *inputDesc);
Eric Laurente552edb2014-03-10 17:42:56 -0700452
453 // return the strategy corresponding to a given stream type
Eric Laurent3b73df72014-03-11 09:06:29 -0700454 static routing_strategy getStrategy(audio_stream_type_t stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700455
456 // return appropriate device for streams handled by the specified strategy according to current
457 // phone state, connected devices...
458 // if fromCache is true, the device is returned from mDeviceForStrategy[],
459 // otherwise it is determine by current state
460 // (device connected,phone state, force use, a2dp output...)
461 // This allows to:
462 // 1 speed up process when the state is stable (when starting or stopping an output)
463 // 2 access to either current device selection (fromCache == true) or
464 // "future" device selection (fromCache == false) when called from a context
465 // where conditions are changing (setDeviceConnectionState(), setPhoneState()...) AND
466 // before updateDevicesAndOutputs() is called.
467 virtual audio_devices_t getDeviceForStrategy(routing_strategy strategy,
468 bool fromCache);
469
470 // change the route of the specified output. Returns the number of ms we have slept to
471 // allow new routing to take effect in certain cases.
472 uint32_t setOutputDevice(audio_io_handle_t output,
473 audio_devices_t device,
474 bool force = false,
Eric Laurent6a94d692014-05-20 11:18:06 -0700475 int delayMs = 0,
476 audio_patch_handle_t *patchHandle = NULL);
Eric Laurent951f4552014-05-20 10:48:17 -0700477 status_t resetOutputDevice(audio_io_handle_t output,
Eric Laurent6a94d692014-05-20 11:18:06 -0700478 int delayMs = 0,
479 audio_patch_handle_t *patchHandle = NULL);
Eric Laurent951f4552014-05-20 10:48:17 -0700480 status_t setInputDevice(audio_io_handle_t input,
481 audio_devices_t device,
Eric Laurent6a94d692014-05-20 11:18:06 -0700482 bool force = false,
483 audio_patch_handle_t *patchHandle = NULL);
484 status_t resetInputDevice(audio_io_handle_t input,
485 audio_patch_handle_t *patchHandle = NULL);
Eric Laurente552edb2014-03-10 17:42:56 -0700486
487 // select input device corresponding to requested audio source
Eric Laurent3b73df72014-03-11 09:06:29 -0700488 virtual audio_devices_t getDeviceForInputSource(audio_source_t inputSource);
Eric Laurente552edb2014-03-10 17:42:56 -0700489
490 // return io handle of active input or 0 if no input is active
491 // Only considers inputs from physical devices (e.g. main mic, headset mic) when
492 // ignoreVirtualInputs is true.
493 audio_io_handle_t getActiveInput(bool ignoreVirtualInputs = true);
494
495 // initialize volume curves for each strategy and device category
496 void initializeVolumeCurves();
497
498 // compute the actual volume for a given stream according to the requested index and a particular
499 // device
Eric Laurent3b73df72014-03-11 09:06:29 -0700500 virtual float computeVolume(audio_stream_type_t stream, int index,
501 audio_io_handle_t output, audio_devices_t device);
Eric Laurente552edb2014-03-10 17:42:56 -0700502
503 // check that volume change is permitted, compute and send new volume to audio hardware
Eric Laurent3b73df72014-03-11 09:06:29 -0700504 status_t checkAndSetVolume(audio_stream_type_t stream, int index, audio_io_handle_t output,
505 audio_devices_t device, int delayMs = 0, bool force = false);
Eric Laurente552edb2014-03-10 17:42:56 -0700506
507 // apply all stream volumes to the specified output and device
508 void applyStreamVolumes(audio_io_handle_t output, audio_devices_t device, int delayMs = 0, bool force = false);
509
510 // Mute or unmute all streams handled by the specified strategy on the specified output
511 void setStrategyMute(routing_strategy strategy,
512 bool on,
513 audio_io_handle_t output,
514 int delayMs = 0,
515 audio_devices_t device = (audio_devices_t)0);
516
517 // Mute or unmute the stream on the specified output
Eric Laurent3b73df72014-03-11 09:06:29 -0700518 void setStreamMute(audio_stream_type_t stream,
Eric Laurente552edb2014-03-10 17:42:56 -0700519 bool on,
520 audio_io_handle_t output,
521 int delayMs = 0,
522 audio_devices_t device = (audio_devices_t)0);
523
524 // handle special cases for sonification strategy while in call: mute streams or replace by
525 // a special tone in the device used for communication
Eric Laurent3b73df72014-03-11 09:06:29 -0700526 void handleIncallSonification(audio_stream_type_t stream, bool starting, bool stateChange);
Eric Laurente552edb2014-03-10 17:42:56 -0700527
528 // true if device is in a telephony or VoIP call
529 virtual bool isInCall();
530
531 // true if given state represents a device in a telephony or VoIP call
532 virtual bool isStateInCall(int state);
533
534 // when a device is connected, checks if an open output can be routed
535 // to this device. If none is open, tries to open one of the available outputs.
536 // Returns an output suitable to this device or 0.
537 // when a device is disconnected, checks if an output is not used any more and
538 // returns its handle if any.
539 // transfers the audio tracks and effects from one output thread to another accordingly.
540 status_t checkOutputsForDevice(audio_devices_t device,
Eric Laurent3b73df72014-03-11 09:06:29 -0700541 audio_policy_dev_state_t state,
Eric Laurente552edb2014-03-10 17:42:56 -0700542 SortedVector<audio_io_handle_t>& outputs,
Eric Laurent3a4311c2014-03-17 12:00:47 -0700543 const String8 address);
Eric Laurente552edb2014-03-10 17:42:56 -0700544
Eric Laurentd4692962014-05-05 18:13:44 -0700545 status_t checkInputsForDevice(audio_devices_t device,
546 audio_policy_dev_state_t state,
547 SortedVector<audio_io_handle_t>& inputs,
548 const String8 address);
549
Eric Laurente552edb2014-03-10 17:42:56 -0700550 // close an output and its companion duplicating output.
551 void closeOutput(audio_io_handle_t output);
552
553 // checks and if necessary changes outputs used for all strategies.
554 // must be called every time a condition that affects the output choice for a given strategy
555 // changes: connected device, phone state, force use...
556 // Must be called before updateDevicesAndOutputs()
557 void checkOutputForStrategy(routing_strategy strategy);
558
559 // Same as checkOutputForStrategy() but for a all strategies in order of priority
560 void checkOutputForAllStrategies();
561
562 // manages A2DP output suspend/restore according to phone state and BT SCO usage
563 void checkA2dpSuspend();
564
565 // returns the A2DP output handle if it is open or 0 otherwise
566 audio_io_handle_t getA2dpOutput();
567
568 // selects the most appropriate device on output for current state
569 // must be called every time a condition that affects the device choice for a given output is
570 // changed: connected device, phone state, force use, output start, output stop..
571 // see getDeviceForStrategy() for the use of fromCache parameter
Eric Laurent951f4552014-05-20 10:48:17 -0700572 audio_devices_t getNewOutputDevice(audio_io_handle_t output, bool fromCache);
Eric Laurente552edb2014-03-10 17:42:56 -0700573
Eric Laurente552edb2014-03-10 17:42:56 -0700574 // updates cache of device used by all strategies (mDeviceForStrategy[])
575 // must be called every time a condition that affects the device choice for a given strategy is
576 // changed: connected device, phone state, force use...
577 // cached values are used by getDeviceForStrategy() if parameter fromCache is true.
578 // Must be called after checkOutputForAllStrategies()
Eric Laurente552edb2014-03-10 17:42:56 -0700579 void updateDevicesAndOutputs();
580
Eric Laurent951f4552014-05-20 10:48:17 -0700581 // selects the most appropriate device on input for current state
582 audio_devices_t getNewInputDevice(audio_io_handle_t input);
583
Eric Laurente552edb2014-03-10 17:42:56 -0700584 virtual uint32_t getMaxEffectsCpuLoad();
585 virtual uint32_t getMaxEffectsMemory();
586#ifdef AUDIO_POLICY_TEST
587 virtual bool threadLoop();
588 void exit();
589 int testOutputIndex(audio_io_handle_t output);
590#endif //AUDIO_POLICY_TEST
591
592 status_t setEffectEnabled(EffectDescriptor *pDesc, bool enabled);
593
594 // returns the category the device belongs to with regard to volume curve management
595 static device_category getDeviceCategory(audio_devices_t device);
596
597 // extract one device relevant for volume control from multiple device selection
598 static audio_devices_t getDeviceForVolume(audio_devices_t device);
599
600 SortedVector<audio_io_handle_t> getOutputsForDevice(audio_devices_t device,
601 DefaultKeyedVector<audio_io_handle_t, AudioOutputDescriptor *> openOutputs);
602 bool vectorsEqual(SortedVector<audio_io_handle_t>& outputs1,
603 SortedVector<audio_io_handle_t>& outputs2);
604
605 // mute/unmute strategies using an incompatible device combination
606 // if muting, wait for the audio in pcm buffer to be drained before proceeding
607 // if unmuting, unmute only after the specified delay
608 // Returns the number of ms waited
609 uint32_t checkDeviceMuteStrategies(AudioOutputDescriptor *outputDesc,
610 audio_devices_t prevDevice,
611 uint32_t delayMs);
612
613 audio_io_handle_t selectOutput(const SortedVector<audio_io_handle_t>& outputs,
Eric Laurent3b73df72014-03-11 09:06:29 -0700614 audio_output_flags_t flags);
Eric Laurent951f4552014-05-20 10:48:17 -0700615 sp<IOProfile> getInputProfile(audio_devices_t device,
Eric Laurente552edb2014-03-10 17:42:56 -0700616 uint32_t samplingRate,
617 audio_format_t format,
618 audio_channel_mask_t channelMask);
Eric Laurent951f4552014-05-20 10:48:17 -0700619 sp<IOProfile> getProfileForDirectOutput(audio_devices_t device,
Eric Laurente552edb2014-03-10 17:42:56 -0700620 uint32_t samplingRate,
621 audio_format_t format,
622 audio_channel_mask_t channelMask,
623 audio_output_flags_t flags);
624
625 audio_io_handle_t selectOutputForEffects(const SortedVector<audio_io_handle_t>& outputs);
626
627 bool isNonOffloadableEffectEnabled();
628
Eric Laurent6a94d692014-05-20 11:18:06 -0700629 status_t addAudioPatch(audio_patch_handle_t handle,
630 const sp<AudioPatch>& patch);
631 status_t removeAudioPatch(audio_patch_handle_t handle);
632
633 AudioOutputDescriptor *getOutputFromId(audio_port_handle_t id) const;
634 AudioInputDescriptor *getInputFromId(audio_port_handle_t id) const;
635 HwModule *getModuleForDevice(audio_devices_t device) const;
Eric Laurente552edb2014-03-10 17:42:56 -0700636 //
637 // Audio policy configuration file parsing (audio_policy.conf)
638 //
639 static uint32_t stringToEnum(const struct StringToEnum *table,
640 size_t size,
641 const char *name);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700642 static const char *enumToString(const struct StringToEnum *table,
643 size_t size,
644 uint32_t value);
Eric Laurente552edb2014-03-10 17:42:56 -0700645 static bool stringToBool(const char *value);
646 static audio_output_flags_t parseFlagNames(char *name);
647 static audio_devices_t parseDeviceNames(char *name);
Eric Laurente552edb2014-03-10 17:42:56 -0700648 status_t loadOutput(cnode *root, HwModule *module);
649 status_t loadInput(cnode *root, HwModule *module);
650 void loadHwModule(cnode *root);
651 void loadHwModules(cnode *root);
652 void loadGlobalConfig(cnode *root);
653 status_t loadAudioPolicyConfig(const char *path);
654 void defaultAudioPolicyConfig(void);
655
656
Eric Laurent6a94d692014-05-20 11:18:06 -0700657 uid_t mUidCached;
Eric Laurente552edb2014-03-10 17:42:56 -0700658 AudioPolicyClientInterface *mpClientInterface; // audio policy client interface
659 audio_io_handle_t mPrimaryOutput; // primary output handle
660 // list of descriptors for outputs currently opened
661 DefaultKeyedVector<audio_io_handle_t, AudioOutputDescriptor *> mOutputs;
662 // copy of mOutputs before setDeviceConnectionState() opens new outputs
663 // reset to mOutputs when updateDevicesAndOutputs() is called.
664 DefaultKeyedVector<audio_io_handle_t, AudioOutputDescriptor *> mPreviousOutputs;
665 DefaultKeyedVector<audio_io_handle_t, AudioInputDescriptor *> mInputs; // list of input descriptors
Eric Laurent3a4311c2014-03-17 12:00:47 -0700666 DeviceVector mAvailableOutputDevices; // bit field of all available output devices
667 DeviceVector mAvailableInputDevices; // bit field of all available input devices
Eric Laurente552edb2014-03-10 17:42:56 -0700668 // without AUDIO_DEVICE_BIT_IN to allow direct bit
669 // field comparisons
670 int mPhoneState; // current phone state
Eric Laurent3b73df72014-03-11 09:06:29 -0700671 audio_policy_forced_cfg_t mForceUse[AUDIO_POLICY_FORCE_USE_CNT]; // current forced use configuration
Eric Laurente552edb2014-03-10 17:42:56 -0700672
Eric Laurent3b73df72014-03-11 09:06:29 -0700673 StreamDescriptor mStreams[AUDIO_STREAM_CNT]; // stream descriptors for volume control
Eric Laurente552edb2014-03-10 17:42:56 -0700674 bool mLimitRingtoneVolume; // limit ringtone volume to music volume if headset connected
675 audio_devices_t mDeviceForStrategy[NUM_STRATEGIES];
676 float mLastVoiceVolume; // last voice volume value sent to audio HAL
677
678 // Maximum CPU load allocated to audio effects in 0.1 MIPS (ARMv5TE, 0 WS memory) units
679 static const uint32_t MAX_EFFECTS_CPU_LOAD = 1000;
680 // Maximum memory allocated to audio effects in KB
681 static const uint32_t MAX_EFFECTS_MEMORY = 512;
682 uint32_t mTotalEffectsCpuLoad; // current CPU load used by effects
683 uint32_t mTotalEffectsMemory; // current memory used by effects
684 KeyedVector<int, EffectDescriptor *> mEffects; // list of registered audio effects
685 bool mA2dpSuspended; // true if A2DP output is suspended
Eric Laurent3a4311c2014-03-17 12:00:47 -0700686 sp<DeviceDescriptor> mDefaultOutputDevice; // output device selected by default at boot time
Eric Laurente552edb2014-03-10 17:42:56 -0700687 bool mSpeakerDrcEnabled;// true on devices that use DRC on the DEVICE_CATEGORY_SPEAKER path
688 // to boost soft sounds, used to adjust volume curves accordingly
689
690 Vector <HwModule *> mHwModules;
Eric Laurent3a4311c2014-03-17 12:00:47 -0700691 volatile int32_t mNextUniqueId;
Eric Laurent6a94d692014-05-20 11:18:06 -0700692 volatile int32_t mAudioPortGeneration;
693
694 DefaultKeyedVector<audio_patch_handle_t, sp<AudioPatch> > mAudioPatches;
Eric Laurente552edb2014-03-10 17:42:56 -0700695
696#ifdef AUDIO_POLICY_TEST
697 Mutex mLock;
698 Condition mWaitWorkCV;
699
700 int mCurOutput;
701 bool mDirectOutput;
702 audio_io_handle_t mTestOutputs[NUM_TEST_OUTPUTS];
703 int mTestInput;
704 uint32_t mTestDevice;
705 uint32_t mTestSamplingRate;
706 uint32_t mTestFormat;
707 uint32_t mTestChannels;
708 uint32_t mTestLatencyMs;
709#endif //AUDIO_POLICY_TEST
710
711private:
712 static float volIndexToAmpl(audio_devices_t device, const StreamDescriptor& streamDesc,
713 int indexInUi);
714 // updates device caching and output for streams that can influence the
715 // routing of notifications
Eric Laurent3b73df72014-03-11 09:06:29 -0700716 void handleNotificationRoutingForStream(audio_stream_type_t stream);
Eric Laurente552edb2014-03-10 17:42:56 -0700717 static bool isVirtualInputDevice(audio_devices_t device);
Eric Laurent3a4311c2014-03-17 12:00:47 -0700718 uint32_t nextUniqueId();
Eric Laurent6a94d692014-05-20 11:18:06 -0700719 uint32_t nextAudioPortGeneration();
720 uint32_t curAudioPortGeneration() const { return mAudioPortGeneration; }
Eric Laurent3a4311c2014-03-17 12:00:47 -0700721 // converts device address to string sent to audio HAL via setParameters
722 static String8 addressToParameter(audio_devices_t device, const String8 address);
Eric Laurente552edb2014-03-10 17:42:56 -0700723};
724
725};