blob: c47d1964115343ef992e3e6e7f2a1d3744f10a2f [file] [log] [blame]
Glenn Kasten99e53b82012-01-19 08:59:58 -08001/*
Mathias Agopian65ab4712010-07-14 17:59:35 -07002**
3** Copyright 2007, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#ifndef ANDROID_AUDIO_FLINGER_H
19#define ANDROID_AUDIO_FLINGER_H
20
21#include <stdint.h>
22#include <sys/types.h>
23#include <limits.h>
24
John Grossman4ff14ba2012-02-08 16:37:41 -080025#include <common_time/cc_helper.h>
26
Mathias Agopian65ab4712010-07-14 17:59:35 -070027#include <media/IAudioFlinger.h>
28#include <media/IAudioFlingerClient.h>
29#include <media/IAudioTrack.h>
30#include <media/IAudioRecord.h>
Glenn Kasten335787f2012-01-20 17:00:00 -080031#include <media/AudioSystem.h>
John Grossman4ff14ba2012-02-08 16:37:41 -080032#include <media/AudioTrack.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070033
34#include <utils/Atomic.h>
35#include <utils/Errors.h>
36#include <utils/threads.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070037#include <utils/SortedVector.h>
Dima Zavin799a70e2011-04-18 16:57:27 -070038#include <utils/TypeHelpers.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070039#include <utils/Vector.h>
40
Mathias Agopian5462fc92010-07-14 18:41:18 -070041#include <binder/BinderService.h>
42#include <binder/MemoryDealer.h>
43
Dima Zavin64760242011-05-11 14:15:23 -070044#include <system/audio.h>
Dima Zavin7394a4f2011-06-13 18:16:26 -070045#include <hardware/audio.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070046
47#include "AudioBufferProvider.h"
48
Eric Laurentfeb0db62011-07-22 09:04:31 -070049#include <powermanager/IPowerManager.h>
50
Mathias Agopian65ab4712010-07-14 17:59:35 -070051namespace android {
52
53class audio_track_cblk_t;
54class effect_param_cblk_t;
55class AudioMixer;
56class AudioBuffer;
57class AudioResampler;
58
Mathias Agopian65ab4712010-07-14 17:59:35 -070059// ----------------------------------------------------------------------------
60
Glenn Kasten53d76db2012-03-08 12:32:47 -080061// AudioFlinger has a hard-coded upper limit of 2 channels for capture and playback.
62// There is support for > 2 channel tracks down-mixed to 2 channel output via a down-mix effect.
63// Adding full support for > 2 channel capture or playback would require more than simply changing
64// this #define. There is an independent hard-coded upper limit in AudioMixer;
65// removing that AudioMixer limit would be necessary but insufficient to support > 2 channels.
66// The macro FCC_2 highlights some (but not all) places where there is are 2-channel assumptions.
67// Search also for "2", "left", "right", "[0]", "[1]", ">> 16", "<< 16", etc.
68#define FCC_2 2 // FCC_2 = Fixed Channel Count 2
69
John Grossman4ff14ba2012-02-08 16:37:41 -080070static const nsecs_t kDefaultStandbyTimeInNsecs = seconds(3);
Mathias Agopian65ab4712010-07-14 17:59:35 -070071
Mathias Agopian5462fc92010-07-14 18:41:18 -070072class AudioFlinger :
73 public BinderService<AudioFlinger>,
74 public BnAudioFlinger
Mathias Agopian65ab4712010-07-14 17:59:35 -070075{
Glenn Kasten19986612012-03-09 12:07:30 -080076 friend class BinderService<AudioFlinger>; // for AudioFlinger()
Mathias Agopian65ab4712010-07-14 17:59:35 -070077public:
Glenn Kasten54c3b662012-01-06 07:46:30 -080078 static const char* getServiceName() { return "media.audio_flinger"; }
Mathias Agopian65ab4712010-07-14 17:59:35 -070079
80 virtual status_t dump(int fd, const Vector<String16>& args);
81
Glenn Kasten2f732eb2012-01-26 09:48:03 -080082 // IAudioFlinger interface, in binder opcode order
Mathias Agopian65ab4712010-07-14 17:59:35 -070083 virtual sp<IAudioTrack> createTrack(
84 pid_t pid,
Glenn Kastenfff6d712012-01-12 16:38:12 -080085 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -070086 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -080087 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -070088 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -070089 int frameCount,
Glenn Kastena075db42012-03-06 11:22:44 -080090 IAudioFlinger::track_flags_t flags,
Mathias Agopian65ab4712010-07-14 17:59:35 -070091 const sp<IMemory>& sharedBuffer,
Glenn Kasten72ef00d2012-01-17 11:09:42 -080092 audio_io_handle_t output,
Mathias Agopian65ab4712010-07-14 17:59:35 -070093 int *sessionId,
94 status_t *status);
95
Glenn Kasten2f732eb2012-01-26 09:48:03 -080096 virtual sp<IAudioRecord> openRecord(
97 pid_t pid,
98 audio_io_handle_t input,
99 uint32_t sampleRate,
100 audio_format_t format,
101 uint32_t channelMask,
102 int frameCount,
Glenn Kastena075db42012-03-06 11:22:44 -0800103 IAudioFlinger::track_flags_t flags,
Glenn Kasten2f732eb2012-01-26 09:48:03 -0800104 int *sessionId,
105 status_t *status);
106
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800107 virtual uint32_t sampleRate(audio_io_handle_t output) const;
108 virtual int channelCount(audio_io_handle_t output) const;
109 virtual audio_format_t format(audio_io_handle_t output) const;
110 virtual size_t frameCount(audio_io_handle_t output) const;
111 virtual uint32_t latency(audio_io_handle_t output) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700112
113 virtual status_t setMasterVolume(float value);
114 virtual status_t setMasterMute(bool muted);
115
116 virtual float masterVolume() const;
John Grossman4ff14ba2012-02-08 16:37:41 -0800117 virtual float masterVolumeSW() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700118 virtual bool masterMute() const;
119
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800120 virtual status_t setStreamVolume(audio_stream_type_t stream, float value,
121 audio_io_handle_t output);
Glenn Kastenfff6d712012-01-12 16:38:12 -0800122 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700123
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800124 virtual float streamVolume(audio_stream_type_t stream,
125 audio_io_handle_t output) const;
Glenn Kastenfff6d712012-01-12 16:38:12 -0800126 virtual bool streamMute(audio_stream_type_t stream) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700127
Glenn Kastenf78aee72012-01-04 11:00:47 -0800128 virtual status_t setMode(audio_mode_t mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700129
130 virtual status_t setMicMute(bool state);
131 virtual bool getMicMute() const;
132
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800133 virtual status_t setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs);
134 virtual String8 getParameters(audio_io_handle_t ioHandle, const String8& keys) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700135
136 virtual void registerClient(const sp<IAudioFlingerClient>& client);
137
Glenn Kastenf587ba52012-01-26 16:25:10 -0800138 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700139
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800140 virtual audio_io_handle_t openOutput(uint32_t *pDevices,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700141 uint32_t *pSamplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800142 audio_format_t *pFormat,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700143 uint32_t *pChannels,
144 uint32_t *pLatencyMs,
Glenn Kasten18868c52012-03-07 09:15:37 -0800145 audio_policy_output_flags_t flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700146
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800147 virtual audio_io_handle_t openDuplicateOutput(audio_io_handle_t output1,
148 audio_io_handle_t output2);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700149
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800150 virtual status_t closeOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700151
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800152 virtual status_t suspendOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700153
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800154 virtual status_t restoreOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700155
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800156 virtual audio_io_handle_t openInput(uint32_t *pDevices,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700157 uint32_t *pSamplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800158 audio_format_t *pFormat,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700159 uint32_t *pChannels,
Glenn Kastende9719b2012-01-27 12:32:34 -0800160 audio_in_acoustics_t acoustics);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700161
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800162 virtual status_t closeInput(audio_io_handle_t input);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700163
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800164 virtual status_t setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700165
166 virtual status_t setVoiceVolume(float volume);
167
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800168 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
169 audio_io_handle_t output) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700170
Glenn Kasten2f732eb2012-01-26 09:48:03 -0800171 virtual unsigned int getInputFramesLost(audio_io_handle_t ioHandle) const;
172
Mathias Agopian65ab4712010-07-14 17:59:35 -0700173 virtual int newAudioSessionId();
174
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700175 virtual void acquireAudioSessionId(int audioSession);
176
177 virtual void releaseAudioSessionId(int audioSession);
178
Glenn Kastenf587ba52012-01-26 16:25:10 -0800179 virtual status_t queryNumberEffects(uint32_t *numEffects) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700180
Glenn Kastenf587ba52012-01-26 16:25:10 -0800181 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700182
Glenn Kasten5e92a782012-01-30 07:40:52 -0800183 virtual status_t getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kastenf587ba52012-01-26 16:25:10 -0800184 effect_descriptor_t *descriptor) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700185
186 virtual sp<IEffect> createEffect(pid_t pid,
187 effect_descriptor_t *pDesc,
188 const sp<IEffectClient>& effectClient,
189 int32_t priority,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800190 audio_io_handle_t io,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700191 int sessionId,
192 status_t *status,
193 int *id,
194 int *enabled);
195
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800196 virtual status_t moveEffects(int sessionId, audio_io_handle_t srcOutput,
197 audio_io_handle_t dstOutput);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700198
Mathias Agopian65ab4712010-07-14 17:59:35 -0700199 virtual status_t onTransact(
200 uint32_t code,
201 const Parcel& data,
202 Parcel* reply,
203 uint32_t flags);
204
Glenn Kasten2f732eb2012-01-26 09:48:03 -0800205 // end of IAudioFlinger interface
206
Eric Laurenta011e352012-03-29 15:51:43 -0700207 class SyncEvent;
208
209 typedef void (*sync_event_callback_t)(const wp<SyncEvent>& event) ;
210
211 class SyncEvent : public RefBase {
212 public:
213 SyncEvent(AudioSystem::sync_event_t type,
214 int triggerSession,
215 int listenerSession,
216 sync_event_callback_t callBack,
217 void *cookie)
218 : mType(type), mTriggerSession(triggerSession), mListenerSession(listenerSession),
219 mCallback(callBack), mCookie(cookie)
220 {}
221
222 virtual ~SyncEvent() {}
223
224 void trigger() { Mutex::Autolock _l(mLock); if (mCallback) mCallback(this); }
225 void cancel() {Mutex::Autolock _l(mLock); mCallback = NULL; }
226 AudioSystem::sync_event_t type() const { return mType; }
227 int triggerSession() const { return mTriggerSession; }
228 int listenerSession() const { return mListenerSession; }
229 void *cookie() const { return mCookie; }
230
231 private:
232 const AudioSystem::sync_event_t mType;
233 const int mTriggerSession;
234 const int mListenerSession;
235 sync_event_callback_t mCallback;
236 void * const mCookie;
237 Mutex mLock;
238 };
239
240 sp<SyncEvent> createSyncEvent(AudioSystem::sync_event_t type,
241 int triggerSession,
242 int listenerSession,
243 sync_event_callback_t callBack,
244 void *cookie);
Glenn Kasten2f732eb2012-01-26 09:48:03 -0800245private:
Glenn Kastenf78aee72012-01-04 11:00:47 -0800246 audio_mode_t getMode() const { return mMode; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700247
Glenn Kastenc59c0042012-02-02 14:06:11 -0800248 bool btNrecIsOff() const { return mBtNrecIsOff; }
Eric Laurent59bd0da2011-08-01 09:52:20 -0700249
Mathias Agopian65ab4712010-07-14 17:59:35 -0700250 AudioFlinger();
251 virtual ~AudioFlinger();
252
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800253 // call in any IAudioFlinger method that accesses mPrimaryHardwareDev
254 status_t initCheck() const { return mPrimaryHardwareDev == NULL ? NO_INIT : NO_ERROR; }
255
Glenn Kasten000f0e32012-03-01 17:10:56 -0800256 // RefBase
Dima Zavin5a61d2f2011-04-19 19:04:32 -0700257 virtual void onFirstRef();
Glenn Kasten000f0e32012-03-01 17:10:56 -0800258
Dima Zavin799a70e2011-04-18 16:57:27 -0700259 audio_hw_device_t* findSuitableHwDev_l(uint32_t devices);
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700260 void purgeStaleEffects_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700261
Glenn Kasten66fcab92012-02-24 14:59:21 -0800262 // standby delay for MIXER and DUPLICATING playback threads is read from property
263 // ro.audio.flinger_standbytime_ms or defaults to kDefaultStandbyTimeInNsecs
John Grossman4ff14ba2012-02-08 16:37:41 -0800264 static nsecs_t mStandbyTimeInNsecs;
265
Mathias Agopian65ab4712010-07-14 17:59:35 -0700266 // Internal dump utilites.
267 status_t dumpPermissionDenial(int fd, const Vector<String16>& args);
268 status_t dumpClients(int fd, const Vector<String16>& args);
269 status_t dumpInternals(int fd, const Vector<String16>& args);
270
271 // --- Client ---
272 class Client : public RefBase {
273 public:
274 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
275 virtual ~Client();
Glenn Kasten435dbe62012-01-30 10:15:48 -0800276 sp<MemoryDealer> heap() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700277 pid_t pid() const { return mPid; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800278 sp<AudioFlinger> audioFlinger() const { return mAudioFlinger; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700279
John Grossman4ff14ba2012-02-08 16:37:41 -0800280 bool reserveTimedTrack();
281 void releaseTimedTrack();
282
Mathias Agopian65ab4712010-07-14 17:59:35 -0700283 private:
284 Client(const Client&);
285 Client& operator = (const Client&);
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800286 const sp<AudioFlinger> mAudioFlinger;
287 const sp<MemoryDealer> mMemoryDealer;
288 const pid_t mPid;
John Grossman4ff14ba2012-02-08 16:37:41 -0800289
290 Mutex mTimedTrackLock;
291 int mTimedTrackCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700292 };
293
294 // --- Notification Client ---
295 class NotificationClient : public IBinder::DeathRecipient {
296 public:
297 NotificationClient(const sp<AudioFlinger>& audioFlinger,
298 const sp<IAudioFlingerClient>& client,
299 pid_t pid);
300 virtual ~NotificationClient();
301
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800302 sp<IAudioFlingerClient> audioFlingerClient() const { return mAudioFlingerClient; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700303
304 // IBinder::DeathRecipient
305 virtual void binderDied(const wp<IBinder>& who);
306
307 private:
308 NotificationClient(const NotificationClient&);
309 NotificationClient& operator = (const NotificationClient&);
310
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800311 const sp<AudioFlinger> mAudioFlinger;
312 const pid_t mPid;
313 const sp<IAudioFlingerClient> mAudioFlingerClient;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700314 };
315
316 class TrackHandle;
317 class RecordHandle;
318 class RecordThread;
319 class PlaybackThread;
320 class MixerThread;
321 class DirectOutputThread;
322 class DuplicatingThread;
323 class Track;
324 class RecordTrack;
325 class EffectModule;
326 class EffectHandle;
327 class EffectChain;
Dima Zavin799a70e2011-04-18 16:57:27 -0700328 struct AudioStreamOut;
329 struct AudioStreamIn;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700330
331 class ThreadBase : public Thread {
332 public:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700333
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800334 enum type_t {
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700335 MIXER, // Thread class is MixerThread
336 DIRECT, // Thread class is DirectOutputThread
337 DUPLICATING, // Thread class is DuplicatingThread
338 RECORD // Thread class is RecordThread
339 };
340
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800341 ThreadBase (const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id, uint32_t device, type_t type);
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800342 virtual ~ThreadBase();
343
Mathias Agopian65ab4712010-07-14 17:59:35 -0700344 status_t dumpBase(int fd, const Vector<String16>& args);
Eric Laurent1d2bff02011-07-24 17:49:51 -0700345 status_t dumpEffectChains(int fd, const Vector<String16>& args);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700346
Eric Laurentfeb0db62011-07-22 09:04:31 -0700347 void clearPowerManager();
348
Mathias Agopian65ab4712010-07-14 17:59:35 -0700349 // base for record and playback
350 class TrackBase : public AudioBufferProvider, public RefBase {
351
352 public:
353 enum track_state {
354 IDLE,
355 TERMINATED,
Glenn Kasten99e53b82012-01-19 08:59:58 -0800356 // These are order-sensitive; do not change order without reviewing the impact.
357 // In particular there are assumptions about > STOPPED.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700358 STOPPED,
359 RESUMING,
360 ACTIVE,
361 PAUSING,
362 PAUSED
363 };
364
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800365 TrackBase(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700366 const sp<Client>& client,
367 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800368 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700369 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700370 int frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700371 const sp<IMemory>& sharedBuffer,
372 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800373 virtual ~TrackBase();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700374
Eric Laurenta011e352012-03-29 15:51:43 -0700375 virtual status_t start(pid_t tid,
376 AudioSystem::sync_event_t event = AudioSystem::SYNC_EVENT_NONE,
377 int triggerSession = 0) = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700378 virtual void stop() = 0;
Glenn Kastenc59c0042012-02-02 14:06:11 -0800379 sp<IMemory> getCblk() const { return mCblkMemory; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700380 audio_track_cblk_t* cblk() const { return mCblk; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800381 int sessionId() const { return mSessionId; }
Eric Laurenta011e352012-03-29 15:51:43 -0700382 virtual status_t setSyncEvent(const sp<SyncEvent>& event);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700383
384 protected:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700385 TrackBase(const TrackBase&);
386 TrackBase& operator = (const TrackBase&);
387
Glenn Kasten01c4ebf2012-02-22 10:47:35 -0800388 // AudioBufferProvider interface
389 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts) = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700390 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
391
Glenn Kasten58f30212012-01-12 12:27:51 -0800392 audio_format_t format() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700393 return mFormat;
394 }
395
Glenn Kastenc59c0042012-02-02 14:06:11 -0800396 int channelCount() const { return mChannelCount; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700397
Glenn Kastenc59c0042012-02-02 14:06:11 -0800398 uint32_t channelMask() const { return mChannelMask; }
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700399
Glenn Kastenc59c0042012-02-02 14:06:11 -0800400 int sampleRate() const; // FIXME inline after cblk sr moved
Mathias Agopian65ab4712010-07-14 17:59:35 -0700401
402 void* getBuffer(uint32_t offset, uint32_t frames) const;
403
404 bool isStopped() const {
405 return mState == STOPPED;
406 }
407
408 bool isTerminated() const {
409 return mState == TERMINATED;
410 }
411
412 bool step();
413 void reset();
414
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800415 const wp<ThreadBase> mThread;
416 /*const*/ sp<Client> mClient; // see explanation at ~TrackBase() why not const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700417 sp<IMemory> mCblkMemory;
418 audio_track_cblk_t* mCblk;
419 void* mBuffer;
420 void* mBufferEnd;
421 uint32_t mFrameCount;
422 // we don't really need a lock for these
Glenn Kastenb853e982012-01-26 13:39:18 -0800423 track_state mState;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800424 const audio_format_t mFormat;
Glenn Kasten5cf034d2012-02-21 10:35:56 -0800425 bool mStepServerFailed;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800426 const int mSessionId;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700427 uint8_t mChannelCount;
428 uint32_t mChannelMask;
Eric Laurenta011e352012-03-29 15:51:43 -0700429 Vector < sp<SyncEvent> >mSyncEvents;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700430 };
431
432 class ConfigEvent {
433 public:
434 ConfigEvent() : mEvent(0), mParam(0) {}
435
436 int mEvent;
437 int mParam;
438 };
439
Eric Laurentfeb0db62011-07-22 09:04:31 -0700440 class PMDeathRecipient : public IBinder::DeathRecipient {
441 public:
442 PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
443 virtual ~PMDeathRecipient() {}
444
445 // IBinder::DeathRecipient
446 virtual void binderDied(const wp<IBinder>& who);
447
448 private:
449 PMDeathRecipient(const PMDeathRecipient&);
450 PMDeathRecipient& operator = (const PMDeathRecipient&);
451
452 wp<ThreadBase> mThread;
453 };
454
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700455 virtual status_t initCheck() const = 0;
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800456 type_t type() const { return mType; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800457 uint32_t sampleRate() const { return mSampleRate; }
458 int channelCount() const { return mChannelCount; }
459 audio_format_t format() const { return mFormat; }
460 size_t frameCount() const { return mFrameCount; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700461 void wakeUp() { mWaitWorkCV.broadcast(); }
Glenn Kastenb28686f2012-01-06 08:39:38 -0800462 // Should be "virtual status_t requestExitAndWait()" and override same
463 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700464 void exit();
465 virtual bool checkForNewParameters_l() = 0;
466 virtual status_t setParameters(const String8& keyValuePairs);
467 virtual String8 getParameters(const String8& keys) = 0;
468 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
469 void sendConfigEvent(int event, int param = 0);
470 void sendConfigEvent_l(int event, int param = 0);
471 void processConfigEvents();
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800472 audio_io_handle_t id() const { return mId;}
Glenn Kasten02fe1bf2012-02-24 15:42:17 -0800473 bool standby() const { return mStandby; }
474 uint32_t device() const { return mDevice; }
Glenn Kasten0bf65bd2012-02-28 18:32:53 -0800475 virtual audio_stream_t* stream() const = 0;
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700476
477 sp<EffectHandle> createEffect_l(
478 const sp<AudioFlinger::Client>& client,
479 const sp<IEffectClient>& effectClient,
480 int32_t priority,
481 int sessionId,
482 effect_descriptor_t *desc,
483 int *enabled,
484 status_t *status);
485 void disconnectEffect(const sp< EffectModule>& effect,
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700486 const wp<EffectHandle>& handle,
Glenn Kasten58123c32012-02-03 10:32:24 -0800487 bool unpinIfLast);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700488
489 // return values for hasAudioSession (bit field)
490 enum effect_state {
491 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
492 // effect
493 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
494 // track
495 };
496
497 // get effect chain corresponding to session Id.
498 sp<EffectChain> getEffectChain(int sessionId);
499 // same as getEffectChain() but must be called with ThreadBase mutex locked
500 sp<EffectChain> getEffectChain_l(int sessionId);
501 // add an effect chain to the chain list (mEffectChains)
502 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
503 // remove an effect chain from the chain list (mEffectChains)
504 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
Glenn Kastend805b712012-02-24 15:42:48 -0800505 // lock all effect chains Mutexes. Must be called before releasing the
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700506 // ThreadBase mutex before processing the mixer and effects. This guarantees the
507 // integrity of the chains during the process.
Glenn Kastend805b712012-02-24 15:42:48 -0800508 // Also sets the parameter 'effectChains' to current value of mEffectChains.
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700509 void lockEffectChains_l(Vector< sp<EffectChain> >& effectChains);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700510 // unlock effect chains after process
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700511 void unlockEffectChains(const Vector< sp<EffectChain> >& effectChains);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700512 // set audio mode to all effect chains
Glenn Kastenf78aee72012-01-04 11:00:47 -0800513 void setMode(audio_mode_t mode);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700514 // get effect module with corresponding ID on specified audio session
515 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
516 // add and effect module. Also creates the effect chain is none exists for
517 // the effects audio session
518 status_t addEffect_l(const sp< EffectModule>& effect);
519 // remove and effect module. Also removes the effect chain is this was the last
520 // effect
521 void removeEffect_l(const sp< EffectModule>& effect);
522 // detach all tracks connected to an auxiliary effect
523 virtual void detachAuxEffect_l(int effectId) {}
524 // returns either EFFECT_SESSION if effects on this audio session exist in one
525 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
526 virtual uint32_t hasAudioSession(int sessionId) = 0;
527 // the value returned by default implementation is not important as the
528 // strategy is only meaningful for PlaybackThread which implements this method
529 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700530
Eric Laurent59255e42011-07-27 19:49:51 -0700531 // suspend or restore effect according to the type of effect passed. a NULL
532 // type pointer means suspend all effects in the session
533 void setEffectSuspended(const effect_uuid_t *type,
534 bool suspend,
535 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
536 // check if some effects must be suspended/restored when an effect is enabled
537 // or disabled
Eric Laurenta85a74a2011-10-19 11:44:54 -0700538 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurent59255e42011-07-27 19:49:51 -0700539 bool enabled,
540 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurenta85a74a2011-10-19 11:44:54 -0700541 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
542 bool enabled,
543 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurenta011e352012-03-29 15:51:43 -0700544
545 virtual status_t setSyncEvent(const sp<SyncEvent>& event) = 0;
546 virtual bool isValidSyncEvent(const sp<SyncEvent>& event) = 0;
547
548
Mathias Agopian65ab4712010-07-14 17:59:35 -0700549 mutable Mutex mLock;
550
551 protected:
552
Eric Laurent59255e42011-07-27 19:49:51 -0700553 // entry describing an effect being suspended in mSuspendedSessions keyed vector
554 class SuspendedSessionDesc : public RefBase {
555 public:
556 SuspendedSessionDesc() : mRefCount(0) {}
557
558 int mRefCount; // number of active suspend requests
559 effect_uuid_t mType; // effect type UUID
560 };
561
Eric Laurentfeb0db62011-07-22 09:04:31 -0700562 void acquireWakeLock();
563 void acquireWakeLock_l();
564 void releaseWakeLock();
565 void releaseWakeLock_l();
Eric Laurent59255e42011-07-27 19:49:51 -0700566 void setEffectSuspended_l(const effect_uuid_t *type,
567 bool suspend,
568 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
569 // updated mSuspendedSessions when an effect suspended or restored
570 void updateSuspendedSessions_l(const effect_uuid_t *type,
571 bool suspend,
572 int sessionId);
573 // check if some effects must be suspended when an effect chain is added
574 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
Eric Laurentfeb0db62011-07-22 09:04:31 -0700575
Glenn Kasten19986612012-03-09 12:07:30 -0800576 friend class AudioFlinger; // for mEffectChains
Mathias Agopian65ab4712010-07-14 17:59:35 -0700577
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800578 const type_t mType;
Glenn Kastencbc52bf2012-03-01 09:21:37 -0800579
580 // Used by parameters, config events, addTrack_l, exit
Mathias Agopian65ab4712010-07-14 17:59:35 -0700581 Condition mWaitWorkCV;
Glenn Kastencbc52bf2012-03-01 09:21:37 -0800582
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800583 const sp<AudioFlinger> mAudioFlinger;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700584 uint32_t mSampleRate;
585 size_t mFrameCount;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700586 uint32_t mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700587 uint16_t mChannelCount;
Glenn Kastenb9980652012-01-11 09:48:27 -0800588 size_t mFrameSize;
Glenn Kasten58f30212012-01-12 12:27:51 -0800589 audio_format_t mFormat;
Glenn Kastencbc52bf2012-03-01 09:21:37 -0800590
591 // Parameter sequence by client: binder thread calling setParameters():
592 // 1. Lock mLock
593 // 2. Append to mNewParameters
594 // 3. mWaitWorkCV.signal
595 // 4. mParamCond.waitRelative with timeout
596 // 5. read mParamStatus
597 // 6. mWaitWorkCV.signal
598 // 7. Unlock
599 //
600 // Parameter sequence by server: threadLoop calling checkForNewParameters_l():
601 // 1. Lock mLock
602 // 2. If there is an entry in mNewParameters proceed ...
603 // 2. Read first entry in mNewParameters
604 // 3. Process
605 // 4. Remove first entry from mNewParameters
606 // 5. Set mParamStatus
607 // 6. mParamCond.signal
608 // 7. mWaitWorkCV.wait with timeout (this is to avoid overwriting mParamStatus)
609 // 8. Unlock
Mathias Agopian65ab4712010-07-14 17:59:35 -0700610 Condition mParamCond;
611 Vector<String8> mNewParameters;
612 status_t mParamStatus;
Glenn Kastencbc52bf2012-03-01 09:21:37 -0800613
Glenn Kastenf3990f22011-12-13 11:50:00 -0800614 Vector<ConfigEvent> mConfigEvents;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700615 bool mStandby;
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800616 const audio_io_handle_t mId;
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700617 Vector< sp<EffectChain> > mEffectChains;
618 uint32_t mDevice; // output device for PlaybackThread
619 // input + output devices for RecordThread
Glenn Kasten480b4682012-02-28 12:30:08 -0800620 static const int kNameLength = 16; // prctl(PR_SET_NAME) limit
Eric Laurentfeb0db62011-07-22 09:04:31 -0700621 char mName[kNameLength];
622 sp<IPowerManager> mPowerManager;
623 sp<IBinder> mWakeLockToken;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800624 const sp<PMDeathRecipient> mDeathRecipient;
Eric Laurent59255e42011-07-27 19:49:51 -0700625 // list of suspended effects per session and per type. The first vector is
626 // keyed by session ID, the second by type UUID timeLow field
627 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > > mSuspendedSessions;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700628 };
629
Glenn Kastenb7bf7962012-02-08 12:36:25 -0800630 struct stream_type_t {
631 stream_type_t()
632 : volume(1.0f),
Eric Laurent1a9ed112012-03-20 18:36:01 -0700633 mute(false)
Glenn Kastenb7bf7962012-02-08 12:36:25 -0800634 {
635 }
636 float volume;
637 bool mute;
Glenn Kastenb7bf7962012-02-08 12:36:25 -0800638 };
639
Mathias Agopian65ab4712010-07-14 17:59:35 -0700640 // --- PlaybackThread ---
641 class PlaybackThread : public ThreadBase {
642 public:
643
Mathias Agopian65ab4712010-07-14 17:59:35 -0700644 enum mixer_state {
Glenn Kastend805b712012-02-24 15:42:48 -0800645 MIXER_IDLE, // no active tracks
646 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
647 MIXER_TRACKS_READY // at least one active track, and at least one track has data
648 // standby mode does not have an enum value
649 // suspend by audio policy manager is orthogonal to mixer state
Mathias Agopian65ab4712010-07-14 17:59:35 -0700650 };
651
652 // playback track
653 class Track : public TrackBase {
654 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800655 Track( PlaybackThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700656 const sp<Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800657 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700658 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800659 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700660 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700661 int frameCount,
662 const sp<IMemory>& sharedBuffer,
Glenn Kasten73d22752012-03-19 13:38:30 -0700663 int sessionId,
664 IAudioFlinger::track_flags_t flags);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800665 virtual ~Track();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700666
667 void dump(char* buffer, size_t size);
Eric Laurenta011e352012-03-29 15:51:43 -0700668 virtual status_t start(pid_t tid,
669 AudioSystem::sync_event_t event = AudioSystem::SYNC_EVENT_NONE,
670 int triggerSession = 0);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700671 virtual void stop();
672 void pause();
673
674 void flush();
675 void destroy();
676 void mute(bool);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700677 int name() const {
678 return mName;
679 }
680
Glenn Kasten02bbd202012-02-08 12:35:35 -0800681 audio_stream_type_t streamType() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700682 return mStreamType;
683 }
684 status_t attachAuxEffect(int EffectId);
685 void setAuxBuffer(int EffectId, int32_t *buffer);
Glenn Kastenc59c0042012-02-02 14:06:11 -0800686 int32_t *auxBuffer() const { return mAuxBuffer; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700687 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800688 int16_t *mainBuffer() const { return mMainBuffer; }
689 int auxEffectId() const { return mAuxEffectId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700690
Glenn Kasten73d22752012-03-19 13:38:30 -0700691 bool isFastTrack() const
692 { return (mFlags & IAudioFlinger::TRACK_FAST) != 0; }
693
Mathias Agopian65ab4712010-07-14 17:59:35 -0700694 protected:
Glenn Kasten19986612012-03-09 12:07:30 -0800695 // for numerous
Mathias Agopian65ab4712010-07-14 17:59:35 -0700696 friend class PlaybackThread;
697 friend class MixerThread;
698 friend class DirectOutputThread;
699
700 Track(const Track&);
701 Track& operator = (const Track&);
702
Glenn Kasten01c4ebf2012-02-22 10:47:35 -0800703 // AudioBufferProvider interface
704 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
705 // releaseBuffer() not overridden
706
John Grossman4ff14ba2012-02-08 16:37:41 -0800707 virtual uint32_t framesReady() const;
708
Glenn Kastenc59c0042012-02-02 14:06:11 -0800709 bool isMuted() const { return mMute; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700710 bool isPausing() const {
711 return mState == PAUSING;
712 }
713 bool isPaused() const {
714 return mState == PAUSED;
715 }
716 bool isReady() const;
717 void setPaused() { mState = PAUSED; }
718 void reset();
719
720 bool isOutputTrack() const {
Dima Zavinfce7a472011-04-19 22:30:36 -0700721 return (mStreamType == AUDIO_STREAM_CNT);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700722 }
723
Eric Laurenta011e352012-03-29 15:51:43 -0700724 bool presentationComplete(size_t framesWritten, size_t audioHalFrames);
725 void triggerEvents(AudioSystem::sync_event_t type);
726
Glenn Kasten19986612012-03-09 12:07:30 -0800727 public:
John Grossman4ff14ba2012-02-08 16:37:41 -0800728 virtual bool isTimedTrack() const { return false; }
Glenn Kasten19986612012-03-09 12:07:30 -0800729 protected:
John Grossman4ff14ba2012-02-08 16:37:41 -0800730
Mathias Agopian65ab4712010-07-14 17:59:35 -0700731 // we don't really need a lock for these
Mathias Agopian65ab4712010-07-14 17:59:35 -0700732 volatile bool mMute;
733 // FILLED state is used for suppressing volume ramp at begin of playing
734 enum {FS_FILLING, FS_FILLED, FS_ACTIVE};
735 mutable uint8_t mFillingUpStatus;
736 int8_t mRetryCount;
Glenn Kastenf9959012012-03-19 11:14:37 -0700737 const sp<IMemory> mSharedBuffer;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700738 bool mResetDone;
Glenn Kastenf9959012012-03-19 11:14:37 -0700739 const audio_stream_type_t mStreamType;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700740 int mName;
741 int16_t *mMainBuffer;
742 int32_t *mAuxBuffer;
743 int mAuxEffectId;
Eric Laurent8f45bd72010-08-31 13:50:07 -0700744 bool mHasVolumeController;
Eric Laurenta011e352012-03-29 15:51:43 -0700745 size_t mPresentationCompleteFrames; // number of frames written to the audio HAL
746 // when this track will be fully rendered
Glenn Kasten73d22752012-03-19 13:38:30 -0700747 private:
748 IAudioFlinger::track_flags_t mFlags;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700749 }; // end of Track
750
John Grossman4ff14ba2012-02-08 16:37:41 -0800751 class TimedTrack : public Track {
752 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800753 static sp<TimedTrack> create(PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -0800754 const sp<Client>& client,
755 audio_stream_type_t streamType,
756 uint32_t sampleRate,
757 audio_format_t format,
758 uint32_t channelMask,
759 int frameCount,
760 const sp<IMemory>& sharedBuffer,
761 int sessionId);
762 ~TimedTrack();
763
764 class TimedBuffer {
765 public:
766 TimedBuffer();
767 TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
768 const sp<IMemory>& buffer() const { return mBuffer; }
769 int64_t pts() const { return mPTS; }
770 int position() const { return mPosition; }
771 void setPosition(int pos) { mPosition = pos; }
772 private:
773 sp<IMemory> mBuffer;
774 int64_t mPTS;
775 int mPosition;
776 };
777
778 virtual bool isTimedTrack() const { return true; }
779
780 virtual uint32_t framesReady() const;
781
Glenn Kasten01c4ebf2012-02-22 10:47:35 -0800782 // AudioBufferProvider interface
783 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
John Grossman4ff14ba2012-02-08 16:37:41 -0800784 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kasten01c4ebf2012-02-22 10:47:35 -0800785
John Grossman4ff14ba2012-02-08 16:37:41 -0800786 void timedYieldSamples(AudioBufferProvider::Buffer* buffer);
787 void timedYieldSilence(uint32_t numFrames,
788 AudioBufferProvider::Buffer* buffer);
789
790 status_t allocateTimedBuffer(size_t size,
791 sp<IMemory>* buffer);
792 status_t queueTimedBuffer(const sp<IMemory>& buffer,
793 int64_t pts);
794 status_t setMediaTimeTransform(const LinearTransform& xform,
795 TimedAudioTrack::TargetTimeline target);
796 void trimTimedBufferQueue_l();
797
798 private:
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800799 TimedTrack(PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -0800800 const sp<Client>& client,
801 audio_stream_type_t streamType,
802 uint32_t sampleRate,
803 audio_format_t format,
804 uint32_t channelMask,
805 int frameCount,
806 const sp<IMemory>& sharedBuffer,
807 int sessionId);
808
809 uint64_t mLocalTimeFreq;
810 LinearTransform mLocalTimeToSampleTransform;
811 sp<MemoryDealer> mTimedMemoryDealer;
812 Vector<TimedBuffer> mTimedBufferQueue;
813 uint8_t* mTimedSilenceBuffer;
814 uint32_t mTimedSilenceBufferSize;
815 mutable Mutex mTimedBufferQueueLock;
816 bool mTimedAudioOutputOnTime;
817 CCHelper mCCHelper;
818
819 Mutex mMediaTimeTransformLock;
820 LinearTransform mMediaTimeTransform;
821 bool mMediaTimeTransformValid;
822 TimedAudioTrack::TargetTimeline mMediaTimeTransformTarget;
823 };
824
Mathias Agopian65ab4712010-07-14 17:59:35 -0700825
826 // playback track
827 class OutputTrack : public Track {
828 public:
829
830 class Buffer: public AudioBufferProvider::Buffer {
831 public:
832 int16_t *mBuffer;
833 };
834
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800835 OutputTrack(PlaybackThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700836 DuplicatingThread *sourceThread,
837 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800838 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700839 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700840 int frameCount);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800841 virtual ~OutputTrack();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700842
Eric Laurenta011e352012-03-29 15:51:43 -0700843 virtual status_t start(pid_t tid,
844 AudioSystem::sync_event_t event = AudioSystem::SYNC_EVENT_NONE,
845 int triggerSession = 0);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700846 virtual void stop();
847 bool write(int16_t* data, uint32_t frames);
Glenn Kastena1117922012-01-26 10:53:32 -0800848 bool bufferQueueEmpty() const { return mBufferQueue.size() == 0; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800849 bool isActive() const { return mActive; }
850 const wp<ThreadBase>& thread() const { return mThread; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700851
852 private:
853
Glenn Kasten335787f2012-01-20 17:00:00 -0800854 enum {
855 NO_MORE_BUFFERS = 0x80000001, // same in AudioTrack.h, ok to be different value
856 };
857
Mathias Agopian65ab4712010-07-14 17:59:35 -0700858 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
859 void clearBufferQueue();
860
861 // Maximum number of pending buffers allocated by OutputTrack::write()
862 static const uint8_t kMaxOverFlowBuffers = 10;
863
864 Vector < Buffer* > mBufferQueue;
865 AudioBufferProvider::Buffer mOutBuffer;
866 bool mActive;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800867 DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
Mathias Agopian65ab4712010-07-14 17:59:35 -0700868 }; // end of OutputTrack
869
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800870 PlaybackThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
871 audio_io_handle_t id, uint32_t device, type_t type);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700872 virtual ~PlaybackThread();
873
Glenn Kasten688aac72012-03-09 10:30:26 -0800874 status_t dump(int fd, const Vector<String16>& args);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700875
876 // Thread virtuals
877 virtual status_t readyToRun();
Glenn Kasten000f0e32012-03-01 17:10:56 -0800878 virtual bool threadLoop();
879
880 // RefBase
Mathias Agopian65ab4712010-07-14 17:59:35 -0700881 virtual void onFirstRef();
882
Glenn Kasten000f0e32012-03-01 17:10:56 -0800883protected:
884 // Code snippets that were lifted up out of threadLoop()
885 virtual void threadLoop_mix() = 0;
886 virtual void threadLoop_sleepTime() = 0;
887 virtual void threadLoop_write();
888 virtual void threadLoop_standby();
889
Glenn Kasten1465f0c2012-03-06 11:23:32 -0800890 // prepareTracks_l reads and writes mActiveTracks, and also returns the
891 // pending set of tracks to remove via Vector 'tracksToRemove'. The caller is
892 // responsible for clearing or destroying this Vector later on, when it
893 // is safe to do so. That will drop the final ref count and destroy the tracks.
894 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0;
Glenn Kasten000f0e32012-03-01 17:10:56 -0800895
896public:
897
Glenn Kastene0feee32011-12-13 11:53:26 -0800898 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700899
Glenn Kasten688aac72012-03-09 10:30:26 -0800900 // return estimated latency in milliseconds, as reported by HAL
901 uint32_t latency() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700902
Glenn Kasten6637baa2012-01-09 09:40:36 -0800903 void setMasterVolume(float value);
904 void setMasterMute(bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700905
Glenn Kasten6637baa2012-01-09 09:40:36 -0800906 void setStreamVolume(audio_stream_type_t stream, float value);
907 void setStreamMute(audio_stream_type_t stream, bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700908
Glenn Kasten6637baa2012-01-09 09:40:36 -0800909 float streamVolume(audio_stream_type_t stream) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700910
Mathias Agopian65ab4712010-07-14 17:59:35 -0700911 sp<Track> createTrack_l(
912 const sp<AudioFlinger::Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800913 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700914 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800915 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700916 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700917 int frameCount,
918 const sp<IMemory>& sharedBuffer,
919 int sessionId,
Glenn Kasten73d22752012-03-19 13:38:30 -0700920 IAudioFlinger::track_flags_t flags,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700921 status_t *status);
922
Glenn Kastenaed850d2012-01-26 09:46:34 -0800923 AudioStreamOut* getOutput() const;
Eric Laurentb8ba0a92011-08-07 16:32:26 -0700924 AudioStreamOut* clearOutput();
Glenn Kasten0bf65bd2012-02-28 18:32:53 -0800925 virtual audio_stream_t* stream() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700926
Mathias Agopian65ab4712010-07-14 17:59:35 -0700927 void suspend() { mSuspended++; }
Glenn Kastenc455fe92012-02-29 07:07:30 -0800928 void restore() { if (mSuspended > 0) mSuspended--; }
929 bool isSuspended() const { return (mSuspended > 0); }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700930 virtual String8 getParameters(const String8& keys);
931 virtual void audioConfigChanged_l(int event, int param = 0);
Glenn Kasten688aac72012-03-09 10:30:26 -0800932 status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
Glenn Kastenc59c0042012-02-02 14:06:11 -0800933 int16_t *mixBuffer() const { return mMixBuffer; };
Mathias Agopian65ab4712010-07-14 17:59:35 -0700934
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700935 virtual void detachAuxEffect_l(int effectId);
Eric Laurentde070132010-07-13 04:45:46 -0700936 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
937 int EffectId);
938 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
939 int EffectId);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700940
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700941 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
942 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
943 virtual uint32_t hasAudioSession(int sessionId);
944 virtual uint32_t getStrategyForSession_l(int sessionId);
Eric Laurentde070132010-07-13 04:45:46 -0700945
Eric Laurent9f6530f2011-08-30 10:18:54 -0700946
Eric Laurenta011e352012-03-29 15:51:43 -0700947 virtual status_t setSyncEvent(const sp<SyncEvent>& event);
948 virtual bool isValidSyncEvent(const sp<SyncEvent>& event);
949
Mathias Agopian65ab4712010-07-14 17:59:35 -0700950 protected:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700951 int16_t* mMixBuffer;
Glenn Kastenc455fe92012-02-29 07:07:30 -0800952 uint32_t mSuspended; // suspend count, > 0 means suspended
Mathias Agopian65ab4712010-07-14 17:59:35 -0700953 int mBytesWritten;
Glenn Kasten98067102011-12-13 11:47:54 -0800954 private:
Glenn Kasten99e53b82012-01-19 08:59:58 -0800955 // mMasterMute is in both PlaybackThread and in AudioFlinger. When a
956 // PlaybackThread needs to find out if master-muted, it checks it's local
957 // copy rather than the one in AudioFlinger. This optimization saves a lock.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700958 bool mMasterMute;
Glenn Kasten6637baa2012-01-09 09:40:36 -0800959 void setMasterMute_l(bool muted) { mMasterMute = muted; }
Glenn Kasten98067102011-12-13 11:47:54 -0800960 protected:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700961 SortedVector< wp<Track> > mActiveTracks;
962
Glenn Kasten17a736c2012-02-14 08:52:15 -0800963 // Allocate a track name. Returns name >= 0 if successful, -1 on failure.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700964 virtual int getTrackName_l() = 0;
965 virtual void deleteTrackName_l(int name) = 0;
Glenn Kasten0bf65bd2012-02-28 18:32:53 -0800966
967 // Time to sleep between cycles when:
968 virtual uint32_t activeSleepTimeUs() const; // mixer state MIXER_TRACKS_ENABLED
969 virtual uint32_t idleSleepTimeUs() const = 0; // mixer state MIXER_IDLE
970 virtual uint32_t suspendSleepTimeUs() const = 0; // audio policy manager suspended us
971 // No sleep when mixer state == MIXER_TRACKS_READY; relies on audio HAL stream->write()
972 // No sleep in standby mode; waits on a condition
Mathias Agopian65ab4712010-07-14 17:59:35 -0700973
Glenn Kasten37d825e2012-02-24 07:21:48 -0800974 // Code snippets that are temporarily lifted up out of threadLoop() until the merge
975 void checkSilentMode_l();
976
Glenn Kastenfa26a852012-03-06 11:28:04 -0800977 // Non-trivial for DUPLICATING only
978 virtual void saveOutputTracks() { }
979 virtual void clearOutputTracks() { }
980
Glenn Kasten66fcab92012-02-24 14:59:21 -0800981 // Cache various calculated values, at threadLoop() entry and after a parameter change
982 virtual void cacheParameters_l();
983
Mathias Agopian65ab4712010-07-14 17:59:35 -0700984 private:
985
Glenn Kasten19986612012-03-09 12:07:30 -0800986 friend class AudioFlinger; // for numerous
Mathias Agopian65ab4712010-07-14 17:59:35 -0700987
988 PlaybackThread(const Client&);
989 PlaybackThread& operator = (const PlaybackThread&);
990
991 status_t addTrack_l(const sp<Track>& track);
992 void destroyTrack_l(const sp<Track>& track);
Eric Laurentb469b942011-05-09 12:09:06 -0700993 void removeTrack_l(const sp<Track>& track);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700994
995 void readOutputParameters();
996
Mathias Agopian65ab4712010-07-14 17:59:35 -0700997 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
998 status_t dumpTracks(int fd, const Vector<String16>& args);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700999
1000 SortedVector< sp<Track> > mTracks;
Glenn Kasten263709e2012-01-06 08:40:01 -08001001 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by DuplicatingThread
Dima Zavinfce7a472011-04-19 22:30:36 -07001002 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
Glenn Kastenaed850d2012-01-26 09:46:34 -08001003 AudioStreamOut *mOutput;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001004 float mMasterVolume;
1005 nsecs_t mLastWriteTime;
1006 int mNumWrites;
1007 int mNumDelayedWrites;
1008 bool mInWrite;
Glenn Kasten000f0e32012-03-01 17:10:56 -08001009
1010 // FIXME rename these former local variables of threadLoop to standard "m" names
1011 nsecs_t standbyTime;
1012 size_t mixBufferSize;
Glenn Kasten66fcab92012-02-24 14:59:21 -08001013
1014 // cached copies of activeSleepTimeUs() and idleSleepTimeUs() made by cacheParameters_l()
Glenn Kasten000f0e32012-03-01 17:10:56 -08001015 uint32_t activeSleepTime;
1016 uint32_t idleSleepTime;
Glenn Kasten66fcab92012-02-24 14:59:21 -08001017
Glenn Kasten000f0e32012-03-01 17:10:56 -08001018 uint32_t sleepTime;
Glenn Kastenfec279f2012-03-08 07:47:15 -08001019
1020 // mixer status returned by prepareTracks_l()
1021 mixer_state mMixerStatus; // current cycle
1022 mixer_state mPrevMixerStatus; // previous cycle
Glenn Kasten000f0e32012-03-01 17:10:56 -08001023
1024 // FIXME move these declarations into the specific sub-class that needs them
1025 // MIXER only
1026 bool longStandbyExit;
1027 uint32_t sleepTimeShift;
Glenn Kasten66fcab92012-02-24 14:59:21 -08001028
1029 // same as AudioFlinger::mStandbyTimeInNsecs except for DIRECT which uses a shorter value
Glenn Kasten000f0e32012-03-01 17:10:56 -08001030 nsecs_t standbyDelay;
Glenn Kasten66fcab92012-02-24 14:59:21 -08001031
1032 // MIXER only
1033 nsecs_t maxPeriod;
1034
Glenn Kasten000f0e32012-03-01 17:10:56 -08001035 // DUPLICATING only
Glenn Kasten000f0e32012-03-01 17:10:56 -08001036 uint32_t writeFrames;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001037 };
1038
1039 class MixerThread : public PlaybackThread {
1040 public:
Eric Laurentde070132010-07-13 04:45:46 -07001041 MixerThread (const sp<AudioFlinger>& audioFlinger,
Dima Zavin799a70e2011-04-18 16:57:27 -07001042 AudioStreamOut* output,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001043 audio_io_handle_t id,
Glenn Kasten23bb8be2012-01-26 10:38:26 -08001044 uint32_t device,
1045 type_t type = MIXER);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001046 virtual ~MixerThread();
1047
1048 // Thread virtuals
Mathias Agopian65ab4712010-07-14 17:59:35 -07001049
Glenn Kastenfff6d712012-01-12 16:38:12 -08001050 void invalidateTracks(audio_stream_type_t streamType);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001051 virtual bool checkForNewParameters_l();
1052 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
1053
1054 protected:
Glenn Kasten000f0e32012-03-01 17:10:56 -08001055 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001056 virtual int getTrackName_l();
1057 virtual void deleteTrackName_l(int name);
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08001058 virtual uint32_t idleSleepTimeUs() const;
1059 virtual uint32_t suspendSleepTimeUs() const;
Glenn Kasten66fcab92012-02-24 14:59:21 -08001060 virtual void cacheParameters_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001061
Glenn Kasten000f0e32012-03-01 17:10:56 -08001062 // threadLoop snippets
1063 virtual void threadLoop_mix();
1064 virtual void threadLoop_sleepTime();
1065
Eric Laurent27741442012-01-17 19:20:12 -08001066 AudioMixer* mAudioMixer;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001067 };
1068
1069 class DirectOutputThread : public PlaybackThread {
1070 public:
1071
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001072 DirectOutputThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
1073 audio_io_handle_t id, uint32_t device);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001074 virtual ~DirectOutputThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001075
1076 // Thread virtuals
Mathias Agopian65ab4712010-07-14 17:59:35 -07001077
1078 virtual bool checkForNewParameters_l();
1079
1080 protected:
1081 virtual int getTrackName_l();
1082 virtual void deleteTrackName_l(int name);
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08001083 virtual uint32_t activeSleepTimeUs() const;
1084 virtual uint32_t idleSleepTimeUs() const;
1085 virtual uint32_t suspendSleepTimeUs() const;
Glenn Kasten66fcab92012-02-24 14:59:21 -08001086 virtual void cacheParameters_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001087
Glenn Kasten000f0e32012-03-01 17:10:56 -08001088 // threadLoop snippets
Glenn Kasten1465f0c2012-03-06 11:23:32 -08001089 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
Glenn Kasten000f0e32012-03-01 17:10:56 -08001090 virtual void threadLoop_mix();
1091 virtual void threadLoop_sleepTime();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001092
Glenn Kasten99e53b82012-01-19 08:59:58 -08001093 // volumes last sent to audio HAL with stream->set_volume()
1094 // FIXME use standard representation and names
Mathias Agopian65ab4712010-07-14 17:59:35 -07001095 float mLeftVolFloat;
1096 float mRightVolFloat;
1097 uint16_t mLeftVolShort;
1098 uint16_t mRightVolShort;
Glenn Kasten000f0e32012-03-01 17:10:56 -08001099
1100 // FIXME rename these former local variables of threadLoop to standard names
1101 // next 3 were local to the while !exitingPending loop
1102 bool rampVolume;
1103 uint16_t leftVol;
1104 uint16_t rightVol;
Glenn Kastend4513b02012-03-06 15:52:35 -08001105
1106private:
Glenn Kastenb071e9b2012-03-07 17:05:59 -08001107 // prepareTracks_l() tells threadLoop_mix() the name of the single active track
1108 sp<Track> mActiveTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001109 };
1110
1111 class DuplicatingThread : public MixerThread {
1112 public:
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001113 DuplicatingThread (const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
1114 audio_io_handle_t id);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001115 virtual ~DuplicatingThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001116
1117 // Thread virtuals
Mathias Agopian65ab4712010-07-14 17:59:35 -07001118 void addOutputTrack(MixerThread* thread);
1119 void removeOutputTrack(MixerThread* thread);
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08001120 uint32_t waitTimeMs() const { return mWaitTimeMs; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001121 protected:
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08001122 virtual uint32_t activeSleepTimeUs() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001123
1124 private:
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001125 bool outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks);
Glenn Kasten000f0e32012-03-01 17:10:56 -08001126 protected:
1127 // threadLoop snippets
1128 virtual void threadLoop_mix();
1129 virtual void threadLoop_sleepTime();
1130 virtual void threadLoop_write();
1131 virtual void threadLoop_standby();
Glenn Kasten66fcab92012-02-24 14:59:21 -08001132 virtual void cacheParameters_l();
Glenn Kasten438b0362012-03-06 11:24:48 -08001133
Glenn Kasten66fcab92012-02-24 14:59:21 -08001134 private:
Glenn Kasten438b0362012-03-06 11:24:48 -08001135 // called from threadLoop, addOutputTrack, removeOutputTrack
1136 virtual void updateWaitTime_l();
Glenn Kasten66fcab92012-02-24 14:59:21 -08001137 protected:
Glenn Kastenfa26a852012-03-06 11:28:04 -08001138 virtual void saveOutputTracks();
1139 virtual void clearOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08001140 private:
Mathias Agopian65ab4712010-07-14 17:59:35 -07001141
Mathias Agopian65ab4712010-07-14 17:59:35 -07001142 uint32_t mWaitTimeMs;
Glenn Kastenfa26a852012-03-06 11:28:04 -08001143 SortedVector < sp<OutputTrack> > outputTracks;
1144 SortedVector < sp<OutputTrack> > mOutputTracks;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001145 };
1146
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001147 PlaybackThread *checkPlaybackThread_l(audio_io_handle_t output) const;
1148 MixerThread *checkMixerThread_l(audio_io_handle_t output) const;
1149 RecordThread *checkRecordThread_l(audio_io_handle_t input) const;
Glenn Kasten6637baa2012-01-09 09:40:36 -08001150 // no range check, AudioFlinger::mLock held
1151 bool streamMute_l(audio_stream_type_t stream) const
1152 { return mStreamTypes[stream].mute; }
1153 // no range check, doesn't check per-thread stream volume, AudioFlinger::mLock held
1154 float streamVolume_l(audio_stream_type_t stream) const
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001155 { return mStreamTypes[stream].volume; }
Glenn Kastenb81cc8c2012-03-01 09:14:51 -08001156 void audioConfigChanged_l(int event, audio_io_handle_t ioHandle, const void *param2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001157
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001158 // allocate an audio_io_handle_t, session ID, or effect ID
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001159 uint32_t nextUniqueId();
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001160
Eric Laurent59255e42011-07-27 19:49:51 -07001161 status_t moveEffectChain_l(int sessionId,
Glenn Kastena1117922012-01-26 10:53:32 -08001162 PlaybackThread *srcThread,
1163 PlaybackThread *dstThread,
Eric Laurent39e94f82010-07-28 01:32:47 -07001164 bool reRegister);
Glenn Kasten02fe1bf2012-02-24 15:42:17 -08001165 // return thread associated with primary hardware device, or NULL
1166 PlaybackThread *primaryPlaybackThread_l() const;
1167 uint32_t primaryOutputDevice_l() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001168
Glenn Kasten99e53b82012-01-19 08:59:58 -08001169 // server side of the client's IAudioTrack
Mathias Agopian65ab4712010-07-14 17:59:35 -07001170 class TrackHandle : public android::BnAudioTrack {
1171 public:
1172 TrackHandle(const sp<PlaybackThread::Track>& track);
1173 virtual ~TrackHandle();
Glenn Kasten90716c52012-01-26 13:40:12 -08001174 virtual sp<IMemory> getCblk() const;
Glenn Kasten6dbc1352012-02-02 10:56:47 -08001175 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001176 virtual void stop();
1177 virtual void flush();
1178 virtual void mute(bool);
1179 virtual void pause();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001180 virtual status_t attachAuxEffect(int effectId);
John Grossman4ff14ba2012-02-08 16:37:41 -08001181 virtual status_t allocateTimedBuffer(size_t size,
1182 sp<IMemory>* buffer);
1183 virtual status_t queueTimedBuffer(const sp<IMemory>& buffer,
1184 int64_t pts);
1185 virtual status_t setMediaTimeTransform(const LinearTransform& xform,
1186 int target);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001187 virtual status_t onTransact(
1188 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1189 private:
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001190 const sp<PlaybackThread::Track> mTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001191 };
1192
Mathias Agopian65ab4712010-07-14 17:59:35 -07001193 void removeClient_l(pid_t pid);
1194 void removeNotificationClient(pid_t pid);
1195
1196
1197 // record thread
1198 class RecordThread : public ThreadBase, public AudioBufferProvider
1199 {
1200 public:
1201
1202 // record track
1203 class RecordTrack : public TrackBase {
1204 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -08001205 RecordTrack(RecordThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001206 const sp<Client>& client,
1207 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08001208 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001209 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001210 int frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001211 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001212 virtual ~RecordTrack();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001213
Eric Laurenta011e352012-03-29 15:51:43 -07001214 virtual status_t start(pid_t tid,
1215 AudioSystem::sync_event_t event = AudioSystem::SYNC_EVENT_NONE,
1216 int triggerSession = 0);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001217 virtual void stop();
1218
1219 bool overflow() { bool tmp = mOverflow; mOverflow = false; return tmp; }
1220 bool setOverflow() { bool tmp = mOverflow; mOverflow = true; return tmp; }
1221
1222 void dump(char* buffer, size_t size);
Eric Laurent59255e42011-07-27 19:49:51 -07001223
Mathias Agopian65ab4712010-07-14 17:59:35 -07001224 private:
Glenn Kasten19986612012-03-09 12:07:30 -08001225 friend class AudioFlinger; // for mState
Mathias Agopian65ab4712010-07-14 17:59:35 -07001226
1227 RecordTrack(const RecordTrack&);
1228 RecordTrack& operator = (const RecordTrack&);
1229
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08001230 // AudioBufferProvider interface
1231 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
1232 // releaseBuffer() not overridden
Mathias Agopian65ab4712010-07-14 17:59:35 -07001233
1234 bool mOverflow;
1235 };
1236
1237
1238 RecordThread(const sp<AudioFlinger>& audioFlinger,
Dima Zavin799a70e2011-04-18 16:57:27 -07001239 AudioStreamIn *input,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001240 uint32_t sampleRate,
1241 uint32_t channels,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001242 audio_io_handle_t id,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001243 uint32_t device);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001244 virtual ~RecordThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001245
Glenn Kasten000f0e32012-03-01 17:10:56 -08001246 // Thread
Mathias Agopian65ab4712010-07-14 17:59:35 -07001247 virtual bool threadLoop();
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001248 virtual status_t readyToRun();
Glenn Kasten000f0e32012-03-01 17:10:56 -08001249
1250 // RefBase
Mathias Agopian65ab4712010-07-14 17:59:35 -07001251 virtual void onFirstRef();
1252
Glenn Kastene0feee32011-12-13 11:53:26 -08001253 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001254 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
1255 const sp<AudioFlinger::Client>& client,
1256 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08001257 audio_format_t format,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001258 int channelMask,
1259 int frameCount,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001260 int sessionId,
1261 status_t *status);
1262
Eric Laurenta011e352012-03-29 15:51:43 -07001263 status_t start(RecordTrack* recordTrack, pid_t tid,
1264 AudioSystem::sync_event_t event,
1265 int triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001266 void stop(RecordTrack* recordTrack);
1267 status_t dump(int fd, const Vector<String16>& args);
Glenn Kastenaed850d2012-01-26 09:46:34 -08001268 AudioStreamIn* getInput() const;
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001269 AudioStreamIn* clearInput();
Glenn Kasten0bf65bd2012-02-28 18:32:53 -08001270 virtual audio_stream_t* stream() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001271
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08001272 // AudioBufferProvider interface
1273 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001274 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08001275
Mathias Agopian65ab4712010-07-14 17:59:35 -07001276 virtual bool checkForNewParameters_l();
1277 virtual String8 getParameters(const String8& keys);
1278 virtual void audioConfigChanged_l(int event, int param = 0);
1279 void readInputParameters();
1280 virtual unsigned int getInputFramesLost();
1281
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001282 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
1283 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
1284 virtual uint32_t hasAudioSession(int sessionId);
Eric Laurent59bd0da2011-08-01 09:52:20 -07001285 RecordTrack* track();
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001286
Eric Laurenta011e352012-03-29 15:51:43 -07001287 virtual status_t setSyncEvent(const sp<SyncEvent>& event);
1288 virtual bool isValidSyncEvent(const sp<SyncEvent>& event);
1289
1290 static void syncStartEventCallback(const wp<SyncEvent>& event);
1291 void handleSyncStartEvent(const sp<SyncEvent>& event);
1292
Mathias Agopian65ab4712010-07-14 17:59:35 -07001293 private:
Eric Laurenta011e352012-03-29 15:51:43 -07001294 void clearSyncStartEvent();
1295
Mathias Agopian65ab4712010-07-14 17:59:35 -07001296 RecordThread();
Dima Zavin799a70e2011-04-18 16:57:27 -07001297 AudioStreamIn *mInput;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001298 RecordTrack* mTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001299 sp<RecordTrack> mActiveTrack;
1300 Condition mStartStopCond;
1301 AudioResampler *mResampler;
1302 int32_t *mRsmpOutBuffer;
1303 int16_t *mRsmpInBuffer;
1304 size_t mRsmpInIndex;
1305 size_t mInputBytes;
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001306 const int mReqChannelCount;
1307 const uint32_t mReqSampleRate;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001308 ssize_t mBytesRead;
Eric Laurenta011e352012-03-29 15:51:43 -07001309 // sync event triggering actual audio capture. Frames read before this event will
1310 // be dropped and therefore not read by the application.
1311 sp<SyncEvent> mSyncStartEvent;
1312 // number of captured frames to drop after the start sync event has been received.
1313 ssize_t mFramestoDrop;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001314 };
1315
Glenn Kasten99e53b82012-01-19 08:59:58 -08001316 // server side of the client's IAudioRecord
Mathias Agopian65ab4712010-07-14 17:59:35 -07001317 class RecordHandle : public android::BnAudioRecord {
1318 public:
1319 RecordHandle(const sp<RecordThread::RecordTrack>& recordTrack);
1320 virtual ~RecordHandle();
Glenn Kasten90716c52012-01-26 13:40:12 -08001321 virtual sp<IMemory> getCblk() const;
Eric Laurenta011e352012-03-29 15:51:43 -07001322 virtual status_t start(pid_t tid, int event, int triggerSession);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001323 virtual void stop();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001324 virtual status_t onTransact(
1325 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1326 private:
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001327 const sp<RecordThread::RecordTrack> mRecordTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001328 };
1329
1330 //--- Audio Effect Management
1331
1332 // EffectModule and EffectChain classes both have their own mutex to protect
1333 // state changes or resource modifications. Always respect the following order
1334 // if multiple mutexes must be acquired to avoid cross deadlock:
1335 // AudioFlinger -> ThreadBase -> EffectChain -> EffectModule
1336
1337 // The EffectModule class is a wrapper object controlling the effect engine implementation
1338 // in the effect library. It prevents concurrent calls to process() and command() functions
1339 // from different client threads. It keeps a list of EffectHandle objects corresponding
1340 // to all client applications using this effect and notifies applications of effect state,
1341 // control or parameter changes. It manages the activation state machine to send appropriate
1342 // reset, enable, disable commands to effect engine and provide volume
1343 // ramping when effects are activated/deactivated.
1344 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
1345 // the attached track(s) to accumulate their auxiliary channel.
1346 class EffectModule: public RefBase {
1347 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -08001348 EffectModule(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001349 const wp<AudioFlinger::EffectChain>& chain,
1350 effect_descriptor_t *desc,
1351 int id,
1352 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001353 virtual ~EffectModule();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001354
1355 enum effect_state {
1356 IDLE,
1357 RESTART,
1358 STARTING,
1359 ACTIVE,
1360 STOPPING,
Eric Laurentec437d82011-07-26 20:54:46 -07001361 STOPPED,
1362 DESTROYED
Mathias Agopian65ab4712010-07-14 17:59:35 -07001363 };
1364
Glenn Kastenc59c0042012-02-02 14:06:11 -08001365 int id() const { return mId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001366 void process();
1367 void updateState();
Eric Laurent25f43952010-07-28 05:40:18 -07001368 status_t command(uint32_t cmdCode,
1369 uint32_t cmdSize,
1370 void *pCmdData,
1371 uint32_t *replySize,
1372 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001373
1374 void reset_l();
1375 status_t configure();
1376 status_t init();
Glenn Kasten28243dd2012-01-26 13:43:46 -08001377 effect_state state() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001378 return mState;
1379 }
1380 uint32_t status() {
1381 return mStatus;
1382 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001383 int sessionId() const {
Eric Laurentde070132010-07-13 04:45:46 -07001384 return mSessionId;
1385 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001386 status_t setEnabled(bool enabled);
Glenn Kastenc59c0042012-02-02 14:06:11 -08001387 bool isEnabled() const;
1388 bool isProcessEnabled() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001389
1390 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
1391 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
1392 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
1393 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
Eric Laurentde070132010-07-13 04:45:46 -07001394 void setChain(const wp<EffectChain>& chain) { mChain = chain; }
1395 void setThread(const wp<ThreadBase>& thread) { mThread = thread; }
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001396 const wp<ThreadBase>& thread() { return mThread; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001397
Glenn Kasten435dbe62012-01-30 10:15:48 -08001398 status_t addHandle(const sp<EffectHandle>& handle);
Glenn Kasten58123c32012-02-03 10:32:24 -08001399 void disconnect(const wp<EffectHandle>& handle, bool unpinIfLast);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001400 size_t removeHandle (const wp<EffectHandle>& handle);
1401
1402 effect_descriptor_t& desc() { return mDescriptor; }
1403 wp<EffectChain>& chain() { return mChain; }
1404
1405 status_t setDevice(uint32_t device);
1406 status_t setVolume(uint32_t *left, uint32_t *right, bool controller);
Glenn Kastenf78aee72012-01-04 11:00:47 -08001407 status_t setMode(audio_mode_t mode);
Eric Laurentec35a142011-10-05 17:42:25 -07001408 status_t start();
Eric Laurentec437d82011-07-26 20:54:46 -07001409 status_t stop();
Eric Laurent59255e42011-07-27 19:49:51 -07001410 void setSuspended(bool suspended);
Glenn Kastena3a85482012-01-04 11:01:11 -08001411 bool suspended() const;
Eric Laurent59255e42011-07-27 19:49:51 -07001412
1413 sp<EffectHandle> controlHandle();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001414
Glenn Kastenc59c0042012-02-02 14:06:11 -08001415 bool isPinned() const { return mPinned; }
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001416 void unPin() { mPinned = false; }
1417
Mathias Agopian65ab4712010-07-14 17:59:35 -07001418 status_t dump(int fd, const Vector<String16>& args);
1419
1420 protected:
Glenn Kasten19986612012-03-09 12:07:30 -08001421 friend class AudioFlinger; // for mHandles
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001422 bool mPinned;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001423
1424 // Maximum time allocated to effect engines to complete the turn off sequence
1425 static const uint32_t MAX_DISABLE_TIME_MS = 10000;
1426
1427 EffectModule(const EffectModule&);
1428 EffectModule& operator = (const EffectModule&);
1429
1430 status_t start_l();
1431 status_t stop_l();
1432
Glenn Kastena3a85482012-01-04 11:01:11 -08001433mutable Mutex mLock; // mutex for process, commands and handles list protection
Mathias Agopian65ab4712010-07-14 17:59:35 -07001434 wp<ThreadBase> mThread; // parent thread
1435 wp<EffectChain> mChain; // parent effect chain
1436 int mId; // this instance unique ID
1437 int mSessionId; // audio session ID
1438 effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
1439 effect_config_t mConfig; // input and output audio configuration
Eric Laurente1315cf2011-05-17 19:16:02 -07001440 effect_handle_t mEffectInterface; // Effect module C API
Glenn Kasten28243dd2012-01-26 13:43:46 -08001441 status_t mStatus; // initialization status
1442 effect_state mState; // current activation state
Mathias Agopian65ab4712010-07-14 17:59:35 -07001443 Vector< wp<EffectHandle> > mHandles; // list of client handles
Glenn Kasten99e53b82012-01-19 08:59:58 -08001444 // First handle in mHandles has highest priority and controls the effect module
Mathias Agopian65ab4712010-07-14 17:59:35 -07001445 uint32_t mMaxDisableWaitCnt; // maximum grace period before forcing an effect off after
1446 // sending disable command.
1447 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
Eric Laurent59255e42011-07-27 19:49:51 -07001448 bool mSuspended; // effect is suspended: temporarily disabled by framework
Mathias Agopian65ab4712010-07-14 17:59:35 -07001449 };
1450
1451 // The EffectHandle class implements the IEffect interface. It provides resources
1452 // to receive parameter updates, keeps track of effect control
1453 // ownership and state and has a pointer to the EffectModule object it is controlling.
1454 // There is one EffectHandle object for each application controlling (or using)
1455 // an effect module.
1456 // The EffectHandle is obtained by calling AudioFlinger::createEffect().
1457 class EffectHandle: public android::BnEffect {
1458 public:
1459
1460 EffectHandle(const sp<EffectModule>& effect,
1461 const sp<AudioFlinger::Client>& client,
1462 const sp<IEffectClient>& effectClient,
1463 int32_t priority);
1464 virtual ~EffectHandle();
1465
1466 // IEffect
1467 virtual status_t enable();
1468 virtual status_t disable();
Eric Laurent25f43952010-07-28 05:40:18 -07001469 virtual status_t command(uint32_t cmdCode,
1470 uint32_t cmdSize,
1471 void *pCmdData,
1472 uint32_t *replySize,
1473 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001474 virtual void disconnect();
Glenn Kasten58123c32012-02-03 10:32:24 -08001475 private:
1476 void disconnect(bool unpinIfLast);
1477 public:
Glenn Kastenc59c0042012-02-02 14:06:11 -08001478 virtual sp<IMemory> getCblk() const { return mCblkMemory; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001479 virtual status_t onTransact(uint32_t code, const Parcel& data,
1480 Parcel* reply, uint32_t flags);
1481
1482
1483 // Give or take control of effect module
Eric Laurent59255e42011-07-27 19:49:51 -07001484 // - hasControl: true if control is given, false if removed
1485 // - signal: true client app should be signaled of change, false otherwise
1486 // - enabled: state of the effect when control is passed
1487 void setControl(bool hasControl, bool signal, bool enabled);
Eric Laurent25f43952010-07-28 05:40:18 -07001488 void commandExecuted(uint32_t cmdCode,
1489 uint32_t cmdSize,
1490 void *pCmdData,
1491 uint32_t replySize,
1492 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001493 void setEnabled(bool enabled);
Glenn Kastenc59c0042012-02-02 14:06:11 -08001494 bool enabled() const { return mEnabled; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001495
1496 // Getters
Glenn Kastenc59c0042012-02-02 14:06:11 -08001497 int id() const { return mEffect->id(); }
1498 int priority() const { return mPriority; }
1499 bool hasControl() const { return mHasControl; }
1500 sp<EffectModule> effect() const { return mEffect; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001501
1502 void dump(char* buffer, size_t size);
1503
1504 protected:
Glenn Kasten19986612012-03-09 12:07:30 -08001505 friend class AudioFlinger; // for mEffect, mHasControl, mEnabled
Mathias Agopian65ab4712010-07-14 17:59:35 -07001506 EffectHandle(const EffectHandle&);
1507 EffectHandle& operator =(const EffectHandle&);
1508
1509 sp<EffectModule> mEffect; // pointer to controlled EffectModule
1510 sp<IEffectClient> mEffectClient; // callback interface for client notifications
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001511 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
Mathias Agopian65ab4712010-07-14 17:59:35 -07001512 sp<IMemory> mCblkMemory; // shared memory for control block
1513 effect_param_cblk_t* mCblk; // control block for deferred parameter setting via shared memory
1514 uint8_t* mBuffer; // pointer to parameter area in shared memory
1515 int mPriority; // client application priority to control the effect
1516 bool mHasControl; // true if this handle is controlling the effect
Eric Laurent59255e42011-07-27 19:49:51 -07001517 bool mEnabled; // cached enable state: needed when the effect is
1518 // restored after being suspended
Mathias Agopian65ab4712010-07-14 17:59:35 -07001519 };
1520
1521 // the EffectChain class represents a group of effects associated to one audio session.
1522 // There can be any number of EffectChain objects per output mixer thread (PlaybackThread).
1523 // The EffecChain with session ID 0 contains global effects applied to the output mix.
1524 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to tracks)
1525 // are insert only. The EffectChain maintains an ordered list of effect module, the order corresponding
1526 // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
1527 // input buffer used by the track as accumulation buffer.
1528 class EffectChain: public RefBase {
1529 public:
1530 EffectChain(const wp<ThreadBase>& wThread, int sessionId);
Glenn Kasten9eaa5572012-01-20 13:32:16 -08001531 EffectChain(ThreadBase *thread, int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001532 virtual ~EffectChain();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001533
Eric Laurent59255e42011-07-27 19:49:51 -07001534 // special key used for an entry in mSuspendedEffects keyed vector
1535 // corresponding to a suspend all request.
1536 static const int kKeyForSuspendAll = 0;
1537
Eric Laurent544fe9b2011-11-11 15:42:52 -08001538 // minimum duration during which we force calling effect process when last track on
1539 // a session is stopped or removed to allow effect tail to be rendered
1540 static const int kProcessTailDurationMs = 1000;
1541
Mathias Agopian65ab4712010-07-14 17:59:35 -07001542 void process_l();
1543
1544 void lock() {
1545 mLock.lock();
1546 }
1547 void unlock() {
1548 mLock.unlock();
1549 }
1550
Eric Laurentde070132010-07-13 04:45:46 -07001551 status_t addEffect_l(const sp<EffectModule>& handle);
Eric Laurentcab11242010-07-15 12:50:15 -07001552 size_t removeEffect_l(const sp<EffectModule>& handle);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001553
Glenn Kastenc59c0042012-02-02 14:06:11 -08001554 int sessionId() const { return mSessionId; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001555 void setSessionId(int sessionId) { mSessionId = sessionId; }
Eric Laurentde070132010-07-13 04:45:46 -07001556
Eric Laurentcab11242010-07-15 12:50:15 -07001557 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1558 sp<EffectModule> getEffectFromId_l(int id);
Eric Laurent59255e42011-07-27 19:49:51 -07001559 sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type);
Eric Laurentcab11242010-07-15 12:50:15 -07001560 bool setVolume_l(uint32_t *left, uint32_t *right);
1561 void setDevice_l(uint32_t device);
Glenn Kastenf78aee72012-01-04 11:00:47 -08001562 void setMode_l(audio_mode_t mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001563
Mathias Agopian65ab4712010-07-14 17:59:35 -07001564 void setInBuffer(int16_t *buffer, bool ownsBuffer = false) {
1565 mInBuffer = buffer;
1566 mOwnInBuffer = ownsBuffer;
1567 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001568 int16_t *inBuffer() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001569 return mInBuffer;
1570 }
1571 void setOutBuffer(int16_t *buffer) {
1572 mOutBuffer = buffer;
1573 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001574 int16_t *outBuffer() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001575 return mOutBuffer;
1576 }
1577
Eric Laurentb469b942011-05-09 12:09:06 -07001578 void incTrackCnt() { android_atomic_inc(&mTrackCnt); }
1579 void decTrackCnt() { android_atomic_dec(&mTrackCnt); }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001580 int32_t trackCnt() const { return mTrackCnt;}
Eric Laurentb469b942011-05-09 12:09:06 -07001581
Eric Laurent544fe9b2011-11-11 15:42:52 -08001582 void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt);
1583 mTailBufferCount = mMaxTailBuffers; }
Eric Laurentb469b942011-05-09 12:09:06 -07001584 void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001585 int32_t activeTrackCnt() const { return mActiveTrackCnt;}
Mathias Agopian65ab4712010-07-14 17:59:35 -07001586
Glenn Kastenc59c0042012-02-02 14:06:11 -08001587 uint32_t strategy() const { return mStrategy; }
Eric Laurentde070132010-07-13 04:45:46 -07001588 void setStrategy(uint32_t strategy)
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001589 { mStrategy = strategy; }
Eric Laurentde070132010-07-13 04:45:46 -07001590
Eric Laurent59255e42011-07-27 19:49:51 -07001591 // suspend effect of the given type
1592 void setEffectSuspended_l(const effect_uuid_t *type,
1593 bool suspend);
1594 // suspend all eligible effects
1595 void setEffectSuspendedAll_l(bool suspend);
1596 // check if effects should be suspend or restored when a given effect is enable or disabled
Eric Laurenta85a74a2011-10-19 11:44:54 -07001597 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurent59255e42011-07-27 19:49:51 -07001598 bool enabled);
1599
Mathias Agopian65ab4712010-07-14 17:59:35 -07001600 status_t dump(int fd, const Vector<String16>& args);
1601
1602 protected:
Glenn Kasten19986612012-03-09 12:07:30 -08001603 friend class AudioFlinger; // for mThread, mEffects
Mathias Agopian65ab4712010-07-14 17:59:35 -07001604 EffectChain(const EffectChain&);
1605 EffectChain& operator =(const EffectChain&);
1606
Eric Laurent59255e42011-07-27 19:49:51 -07001607 class SuspendedEffectDesc : public RefBase {
1608 public:
1609 SuspendedEffectDesc() : mRefCount(0) {}
1610
1611 int mRefCount;
1612 effect_uuid_t mType;
1613 wp<EffectModule> mEffect;
1614 };
1615
1616 // get a list of effect modules to suspend when an effect of the type
1617 // passed is enabled.
Glenn Kastend0539712012-01-30 12:56:03 -08001618 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects);
1619
Eric Laurent59255e42011-07-27 19:49:51 -07001620 // get an effect module if it is currently enable
1621 sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type);
Eric Laurentdb7c0792011-08-10 10:37:50 -07001622 // true if the effect whose descriptor is passed can be suspended
1623 // OEMs can modify the rules implemented in this method to exclude specific effect
1624 // types or implementations from the suspend/restore mechanism.
1625 bool isEffectEligibleForSuspend(const effect_descriptor_t& desc);
Eric Laurent59255e42011-07-27 19:49:51 -07001626
Mathias Agopian65ab4712010-07-14 17:59:35 -07001627 wp<ThreadBase> mThread; // parent mixer thread
1628 Mutex mLock; // mutex protecting effect list
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001629 Vector< sp<EffectModule> > mEffects; // list of effect modules
Mathias Agopian65ab4712010-07-14 17:59:35 -07001630 int mSessionId; // audio session ID
1631 int16_t *mInBuffer; // chain input buffer
1632 int16_t *mOutBuffer; // chain output buffer
Eric Laurentb469b942011-05-09 12:09:06 -07001633 volatile int32_t mActiveTrackCnt; // number of active tracks connected
1634 volatile int32_t mTrackCnt; // number of tracks connected
Eric Laurent544fe9b2011-11-11 15:42:52 -08001635 int32_t mTailBufferCount; // current effect tail buffer count
1636 int32_t mMaxTailBuffers; // maximum effect tail buffers
Mathias Agopian65ab4712010-07-14 17:59:35 -07001637 bool mOwnInBuffer; // true if the chain owns its input buffer
Eric Laurentcab11242010-07-15 12:50:15 -07001638 int mVolumeCtrlIdx; // index of insert effect having control over volume
1639 uint32_t mLeftVolume; // previous volume on left channel
1640 uint32_t mRightVolume; // previous volume on right channel
Eric Laurentf997cab2010-07-19 06:24:46 -07001641 uint32_t mNewLeftVolume; // new volume on left channel
1642 uint32_t mNewRightVolume; // new volume on right channel
Eric Laurentde070132010-07-13 04:45:46 -07001643 uint32_t mStrategy; // strategy for this effect chain
Glenn Kasten17a736c2012-02-14 08:52:15 -08001644 // mSuspendedEffects lists all effects currently suspended in the chain.
1645 // Use effect type UUID timelow field as key. There is no real risk of identical
Eric Laurent59255e42011-07-27 19:49:51 -07001646 // timeLow fields among effect type UUIDs.
Glenn Kasten17a736c2012-02-14 08:52:15 -08001647 // Updated by updateSuspendedSessions_l() only.
Eric Laurent59255e42011-07-27 19:49:51 -07001648 KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001649 };
1650
Glenn Kastenaed850d2012-01-26 09:46:34 -08001651 // AudioStreamOut and AudioStreamIn are immutable, so their fields are const.
1652 // For emphasis, we could also make all pointers to them be "const *",
1653 // but that would clutter the code unnecessarily.
1654
Dima Zavin799a70e2011-04-18 16:57:27 -07001655 struct AudioStreamOut {
Glenn Kastenaed850d2012-01-26 09:46:34 -08001656 audio_hw_device_t* const hwDev;
1657 audio_stream_out_t* const stream;
Dima Zavin799a70e2011-04-18 16:57:27 -07001658
1659 AudioStreamOut(audio_hw_device_t *dev, audio_stream_out_t *out) :
1660 hwDev(dev), stream(out) {}
1661 };
1662
1663 struct AudioStreamIn {
Glenn Kastenaed850d2012-01-26 09:46:34 -08001664 audio_hw_device_t* const hwDev;
1665 audio_stream_in_t* const stream;
Dima Zavin799a70e2011-04-18 16:57:27 -07001666
1667 AudioStreamIn(audio_hw_device_t *dev, audio_stream_in_t *in) :
1668 hwDev(dev), stream(in) {}
1669 };
1670
Glenn Kasten99e53b82012-01-19 08:59:58 -08001671 // for mAudioSessionRefs only
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001672 struct AudioSessionRef {
Glenn Kasten012ca6b2012-03-06 11:22:01 -08001673 AudioSessionRef(int sessionid, pid_t pid) :
1674 mSessionid(sessionid), mPid(pid), mCnt(1) {}
1675 const int mSessionid;
1676 const pid_t mPid;
1677 int mCnt;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001678 };
1679
John Grossman4ff14ba2012-02-08 16:37:41 -08001680 enum master_volume_support {
1681 // MVS_NONE:
1682 // Audio HAL has no support for master volume, either setting or
1683 // getting. All master volume control must be implemented in SW by the
1684 // AudioFlinger mixing core.
1685 MVS_NONE,
1686
1687 // MVS_SETONLY:
1688 // Audio HAL has support for setting master volume, but not for getting
1689 // master volume (original HAL design did not include a getter).
1690 // AudioFlinger needs to keep track of the last set master volume in
1691 // addition to needing to set an initial, default, master volume at HAL
1692 // load time.
1693 MVS_SETONLY,
1694
1695 // MVS_FULL:
1696 // Audio HAL has support both for setting and getting master volume.
1697 // AudioFlinger should send all set and get master volume requests
1698 // directly to the HAL.
1699 MVS_FULL,
1700 };
1701
Mathias Agopian65ab4712010-07-14 17:59:35 -07001702 mutable Mutex mLock;
1703
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001704 DefaultKeyedVector< pid_t, wp<Client> > mClients; // see ~Client()
Mathias Agopian65ab4712010-07-14 17:59:35 -07001705
1706 mutable Mutex mHardwareLock;
Glenn Kasten2b213bc2012-02-02 14:05:20 -08001707
1708 // These two fields are immutable after onFirstRef(), so no lock needed to access
1709 audio_hw_device_t* mPrimaryHardwareDev; // mAudioHwDevs[0] or NULL
Dima Zavin799a70e2011-04-18 16:57:27 -07001710 Vector<audio_hw_device_t*> mAudioHwDevs;
Glenn Kasten2f732eb2012-01-26 09:48:03 -08001711
Glenn Kasten8abf44d2012-02-02 14:16:03 -08001712 // for dump, indicates which hardware operation is currently in progress (but not stream ops)
Glenn Kasten2f732eb2012-01-26 09:48:03 -08001713 enum hardware_call_state {
Glenn Kasten8abf44d2012-02-02 14:16:03 -08001714 AUDIO_HW_IDLE = 0, // no operation in progress
1715 AUDIO_HW_INIT, // init_check
1716 AUDIO_HW_OUTPUT_OPEN, // open_output_stream
1717 AUDIO_HW_OUTPUT_CLOSE, // unused
1718 AUDIO_HW_INPUT_OPEN, // unused
1719 AUDIO_HW_INPUT_CLOSE, // unused
1720 AUDIO_HW_STANDBY, // unused
1721 AUDIO_HW_SET_MASTER_VOLUME, // set_master_volume
1722 AUDIO_HW_GET_ROUTING, // unused
1723 AUDIO_HW_SET_ROUTING, // unused
1724 AUDIO_HW_GET_MODE, // unused
1725 AUDIO_HW_SET_MODE, // set_mode
1726 AUDIO_HW_GET_MIC_MUTE, // get_mic_mute
1727 AUDIO_HW_SET_MIC_MUTE, // set_mic_mute
1728 AUDIO_HW_SET_VOICE_VOLUME, // set_voice_volume
1729 AUDIO_HW_SET_PARAMETER, // set_parameters
1730 AUDIO_HW_GET_INPUT_BUFFER_SIZE, // get_input_buffer_size
1731 AUDIO_HW_GET_MASTER_VOLUME, // get_master_volume
1732 AUDIO_HW_GET_PARAMETER, // get_parameters
Glenn Kasten2f732eb2012-01-26 09:48:03 -08001733 };
1734
Glenn Kastena4454b42012-01-04 11:02:33 -08001735 mutable hardware_call_state mHardwareStatus; // for dump only
Mathias Agopian65ab4712010-07-14 17:59:35 -07001736
1737
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001738 DefaultKeyedVector< audio_io_handle_t, sp<PlaybackThread> > mPlaybackThreads;
Glenn Kastenb7bf7962012-02-08 12:36:25 -08001739 stream_type_t mStreamTypes[AUDIO_STREAM_CNT];
Glenn Kasten98067102011-12-13 11:47:54 -08001740
1741 // both are protected by mLock
Mathias Agopian65ab4712010-07-14 17:59:35 -07001742 float mMasterVolume;
John Grossman4ff14ba2012-02-08 16:37:41 -08001743 float mMasterVolumeSW;
1744 master_volume_support mMasterVolumeSupportLvl;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001745 bool mMasterMute;
1746
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001747 DefaultKeyedVector< audio_io_handle_t, sp<RecordThread> > mRecordThreads;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001748
1749 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
Glenn Kasten99e53b82012-01-19 08:59:58 -08001750 volatile int32_t mNextUniqueId; // updated by android_atomic_inc
Glenn Kastenf78aee72012-01-04 11:00:47 -08001751 audio_mode_t mMode;
Eric Laurentbee53372011-08-29 12:42:48 -07001752 bool mBtNrecIsOff;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001753
Glenn Kasten99e53b82012-01-19 08:59:58 -08001754 // protected by mLock
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001755 Vector<AudioSessionRef*> mAudioSessionRefs;
Glenn Kasten98067102011-12-13 11:47:54 -08001756
John Grossman4ff14ba2012-02-08 16:37:41 -08001757 float masterVolume_l() const;
1758 float masterVolumeSW_l() const { return mMasterVolumeSW; }
Glenn Kasten98067102011-12-13 11:47:54 -08001759 bool masterMute_l() const { return mMasterMute; }
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001760
Eric Laurenta011e352012-03-29 15:51:43 -07001761 Vector < sp<SyncEvent> > mPendingSyncEvents; // sync events awaiting for a session
1762 // to be created
1763
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001764private:
1765 sp<Client> registerPid_l(pid_t pid); // always returns non-0
1766
Mathias Agopian65ab4712010-07-14 17:59:35 -07001767};
1768
Dima Zavin799a70e2011-04-18 16:57:27 -07001769
Mathias Agopian65ab4712010-07-14 17:59:35 -07001770// ----------------------------------------------------------------------------
1771
1772}; // namespace android
1773
1774#endif // ANDROID_AUDIO_FLINGER_H