blob: 48a23fabad9492c6ccc3926c992916592668c65c [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
25#include <media/IAudioFlinger.h>
26#include <media/IAudioFlingerClient.h>
27#include <media/IAudioTrack.h>
28#include <media/IAudioRecord.h>
Glenn Kasten335787f2012-01-20 17:00:00 -080029#include <media/AudioSystem.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070030
31#include <utils/Atomic.h>
32#include <utils/Errors.h>
33#include <utils/threads.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070034#include <utils/SortedVector.h>
Dima Zavin799a70e2011-04-18 16:57:27 -070035#include <utils/TypeHelpers.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070036#include <utils/Vector.h>
37
Mathias Agopian5462fc92010-07-14 18:41:18 -070038#include <binder/BinderService.h>
39#include <binder/MemoryDealer.h>
40
Dima Zavin64760242011-05-11 14:15:23 -070041#include <system/audio.h>
Dima Zavin7394a4f2011-06-13 18:16:26 -070042#include <hardware/audio.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070043
44#include "AudioBufferProvider.h"
45
Eric Laurentfeb0db62011-07-22 09:04:31 -070046#include <powermanager/IPowerManager.h>
47
Mathias Agopian65ab4712010-07-14 17:59:35 -070048namespace android {
49
50class audio_track_cblk_t;
51class effect_param_cblk_t;
52class AudioMixer;
53class AudioBuffer;
54class AudioResampler;
55
Mathias Agopian65ab4712010-07-14 17:59:35 -070056// ----------------------------------------------------------------------------
57
Mathias Agopian65ab4712010-07-14 17:59:35 -070058static const nsecs_t kStandbyTimeInNsecs = seconds(3);
59
Mathias Agopian5462fc92010-07-14 18:41:18 -070060class AudioFlinger :
61 public BinderService<AudioFlinger>,
62 public BnAudioFlinger
Mathias Agopian65ab4712010-07-14 17:59:35 -070063{
Mathias Agopian5462fc92010-07-14 18:41:18 -070064 friend class BinderService<AudioFlinger>;
Mathias Agopian65ab4712010-07-14 17:59:35 -070065public:
Glenn Kasten54c3b662012-01-06 07:46:30 -080066 static const char* getServiceName() { return "media.audio_flinger"; }
Mathias Agopian65ab4712010-07-14 17:59:35 -070067
68 virtual status_t dump(int fd, const Vector<String16>& args);
69
Glenn Kasten2f732eb2012-01-26 09:48:03 -080070 // IAudioFlinger interface, in binder opcode order
Mathias Agopian65ab4712010-07-14 17:59:35 -070071 virtual sp<IAudioTrack> createTrack(
72 pid_t pid,
Glenn Kastenfff6d712012-01-12 16:38:12 -080073 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -070074 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -080075 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -070076 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -070077 int frameCount,
78 uint32_t flags,
79 const sp<IMemory>& sharedBuffer,
Glenn Kasten72ef00d2012-01-17 11:09:42 -080080 audio_io_handle_t output,
Mathias Agopian65ab4712010-07-14 17:59:35 -070081 int *sessionId,
82 status_t *status);
83
Glenn Kasten2f732eb2012-01-26 09:48:03 -080084 virtual sp<IAudioRecord> openRecord(
85 pid_t pid,
86 audio_io_handle_t input,
87 uint32_t sampleRate,
88 audio_format_t format,
89 uint32_t channelMask,
90 int frameCount,
91 uint32_t flags,
92 int *sessionId,
93 status_t *status);
94
Glenn Kasten72ef00d2012-01-17 11:09:42 -080095 virtual uint32_t sampleRate(audio_io_handle_t output) const;
96 virtual int channelCount(audio_io_handle_t output) const;
97 virtual audio_format_t format(audio_io_handle_t output) const;
98 virtual size_t frameCount(audio_io_handle_t output) const;
99 virtual uint32_t latency(audio_io_handle_t output) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700100
101 virtual status_t setMasterVolume(float value);
102 virtual status_t setMasterMute(bool muted);
103
104 virtual float masterVolume() const;
105 virtual bool masterMute() const;
106
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800107 virtual status_t setStreamVolume(audio_stream_type_t stream, float value,
108 audio_io_handle_t output);
Glenn Kastenfff6d712012-01-12 16:38:12 -0800109 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700110
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800111 virtual float streamVolume(audio_stream_type_t stream,
112 audio_io_handle_t output) const;
Glenn Kastenfff6d712012-01-12 16:38:12 -0800113 virtual bool streamMute(audio_stream_type_t stream) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700114
Glenn Kastenf78aee72012-01-04 11:00:47 -0800115 virtual status_t setMode(audio_mode_t mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700116
117 virtual status_t setMicMute(bool state);
118 virtual bool getMicMute() const;
119
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800120 virtual status_t setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs);
121 virtual String8 getParameters(audio_io_handle_t ioHandle, const String8& keys) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700122
123 virtual void registerClient(const sp<IAudioFlingerClient>& client);
124
Glenn Kastenf587ba52012-01-26 16:25:10 -0800125 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700126
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800127 virtual audio_io_handle_t openOutput(uint32_t *pDevices,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700128 uint32_t *pSamplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800129 audio_format_t *pFormat,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700130 uint32_t *pChannels,
131 uint32_t *pLatencyMs,
132 uint32_t flags);
133
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800134 virtual audio_io_handle_t openDuplicateOutput(audio_io_handle_t output1,
135 audio_io_handle_t output2);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700136
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800137 virtual status_t closeOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700138
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800139 virtual status_t suspendOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700140
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800141 virtual status_t restoreOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700142
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800143 virtual audio_io_handle_t openInput(uint32_t *pDevices,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700144 uint32_t *pSamplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800145 audio_format_t *pFormat,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700146 uint32_t *pChannels,
Glenn Kastende9719b2012-01-27 12:32:34 -0800147 audio_in_acoustics_t acoustics);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700148
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800149 virtual status_t closeInput(audio_io_handle_t input);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700150
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800151 virtual status_t setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700152
153 virtual status_t setVoiceVolume(float volume);
154
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800155 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
156 audio_io_handle_t output) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700157
Glenn Kasten2f732eb2012-01-26 09:48:03 -0800158 virtual unsigned int getInputFramesLost(audio_io_handle_t ioHandle) const;
159
Mathias Agopian65ab4712010-07-14 17:59:35 -0700160 virtual int newAudioSessionId();
161
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700162 virtual void acquireAudioSessionId(int audioSession);
163
164 virtual void releaseAudioSessionId(int audioSession);
165
Glenn Kastenf587ba52012-01-26 16:25:10 -0800166 virtual status_t queryNumberEffects(uint32_t *numEffects) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700167
Glenn Kastenf587ba52012-01-26 16:25:10 -0800168 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700169
Glenn Kasten5e92a782012-01-30 07:40:52 -0800170 virtual status_t getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kastenf587ba52012-01-26 16:25:10 -0800171 effect_descriptor_t *descriptor) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700172
173 virtual sp<IEffect> createEffect(pid_t pid,
174 effect_descriptor_t *pDesc,
175 const sp<IEffectClient>& effectClient,
176 int32_t priority,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800177 audio_io_handle_t io,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700178 int sessionId,
179 status_t *status,
180 int *id,
181 int *enabled);
182
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800183 virtual status_t moveEffects(int sessionId, audio_io_handle_t srcOutput,
184 audio_io_handle_t dstOutput);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700185
Mathias Agopian65ab4712010-07-14 17:59:35 -0700186 virtual status_t onTransact(
187 uint32_t code,
188 const Parcel& data,
189 Parcel* reply,
190 uint32_t flags);
191
Glenn Kasten2f732eb2012-01-26 09:48:03 -0800192 // end of IAudioFlinger interface
193
194private:
Glenn Kastenf78aee72012-01-04 11:00:47 -0800195 audio_mode_t getMode() const { return mMode; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700196
Glenn Kastenc59c0042012-02-02 14:06:11 -0800197 bool btNrecIsOff() const { return mBtNrecIsOff; }
Eric Laurent59bd0da2011-08-01 09:52:20 -0700198
Mathias Agopian65ab4712010-07-14 17:59:35 -0700199 AudioFlinger();
200 virtual ~AudioFlinger();
201
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800202 // call in any IAudioFlinger method that accesses mPrimaryHardwareDev
203 status_t initCheck() const { return mPrimaryHardwareDev == NULL ? NO_INIT : NO_ERROR; }
204
Dima Zavin5a61d2f2011-04-19 19:04:32 -0700205 virtual void onFirstRef();
Dima Zavin799a70e2011-04-18 16:57:27 -0700206 audio_hw_device_t* findSuitableHwDev_l(uint32_t devices);
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700207 void purgeStaleEffects_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700208
209 // Internal dump utilites.
210 status_t dumpPermissionDenial(int fd, const Vector<String16>& args);
211 status_t dumpClients(int fd, const Vector<String16>& args);
212 status_t dumpInternals(int fd, const Vector<String16>& args);
213
214 // --- Client ---
215 class Client : public RefBase {
216 public:
217 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
218 virtual ~Client();
Glenn Kasten435dbe62012-01-30 10:15:48 -0800219 sp<MemoryDealer> heap() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700220 pid_t pid() const { return mPid; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800221 sp<AudioFlinger> audioFlinger() const { return mAudioFlinger; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700222
223 private:
224 Client(const Client&);
225 Client& operator = (const Client&);
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800226 const sp<AudioFlinger> mAudioFlinger;
227 const sp<MemoryDealer> mMemoryDealer;
228 const pid_t mPid;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700229 };
230
231 // --- Notification Client ---
232 class NotificationClient : public IBinder::DeathRecipient {
233 public:
234 NotificationClient(const sp<AudioFlinger>& audioFlinger,
235 const sp<IAudioFlingerClient>& client,
236 pid_t pid);
237 virtual ~NotificationClient();
238
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800239 sp<IAudioFlingerClient> audioFlingerClient() const { return mAudioFlingerClient; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700240
241 // IBinder::DeathRecipient
242 virtual void binderDied(const wp<IBinder>& who);
243
244 private:
245 NotificationClient(const NotificationClient&);
246 NotificationClient& operator = (const NotificationClient&);
247
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800248 const sp<AudioFlinger> mAudioFlinger;
249 const pid_t mPid;
250 const sp<IAudioFlingerClient> mAudioFlingerClient;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700251 };
252
253 class TrackHandle;
254 class RecordHandle;
255 class RecordThread;
256 class PlaybackThread;
257 class MixerThread;
258 class DirectOutputThread;
259 class DuplicatingThread;
260 class Track;
261 class RecordTrack;
262 class EffectModule;
263 class EffectHandle;
264 class EffectChain;
Dima Zavin799a70e2011-04-18 16:57:27 -0700265 struct AudioStreamOut;
266 struct AudioStreamIn;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700267
268 class ThreadBase : public Thread {
269 public:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700270
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800271 enum type_t {
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700272 MIXER, // Thread class is MixerThread
273 DIRECT, // Thread class is DirectOutputThread
274 DUPLICATING, // Thread class is DuplicatingThread
275 RECORD // Thread class is RecordThread
276 };
277
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800278 ThreadBase (const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id, uint32_t device, type_t type);
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800279 virtual ~ThreadBase();
280
Mathias Agopian65ab4712010-07-14 17:59:35 -0700281 status_t dumpBase(int fd, const Vector<String16>& args);
Eric Laurent1d2bff02011-07-24 17:49:51 -0700282 status_t dumpEffectChains(int fd, const Vector<String16>& args);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700283
Eric Laurentfeb0db62011-07-22 09:04:31 -0700284 void clearPowerManager();
285
Mathias Agopian65ab4712010-07-14 17:59:35 -0700286 // base for record and playback
287 class TrackBase : public AudioBufferProvider, public RefBase {
288
289 public:
290 enum track_state {
291 IDLE,
292 TERMINATED,
Glenn Kasten99e53b82012-01-19 08:59:58 -0800293 // These are order-sensitive; do not change order without reviewing the impact.
294 // In particular there are assumptions about > STOPPED.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700295 STOPPED,
296 RESUMING,
297 ACTIVE,
298 PAUSING,
299 PAUSED
300 };
301
302 enum track_flags {
303 STEPSERVER_FAILED = 0x01, // StepServer could not acquire cblk->lock mutex
304 SYSTEM_FLAGS_MASK = 0x0000ffffUL,
305 // The upper 16 bits are used for track-specific flags.
306 };
307
308 TrackBase(const wp<ThreadBase>& thread,
309 const sp<Client>& client,
310 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800311 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700312 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700313 int frameCount,
314 uint32_t flags,
315 const sp<IMemory>& sharedBuffer,
316 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800317 virtual ~TrackBase();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700318
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800319 virtual status_t start(pid_t tid) = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700320 virtual void stop() = 0;
Glenn Kastenc59c0042012-02-02 14:06:11 -0800321 sp<IMemory> getCblk() const { return mCblkMemory; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700322 audio_track_cblk_t* cblk() const { return mCblk; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800323 int sessionId() const { return mSessionId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700324
325 protected:
326 friend class ThreadBase;
327 friend class RecordHandle;
328 friend class PlaybackThread;
329 friend class RecordThread;
330 friend class MixerThread;
331 friend class DirectOutputThread;
332
333 TrackBase(const TrackBase&);
334 TrackBase& operator = (const TrackBase&);
335
336 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer) = 0;
337 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
338
Glenn Kasten58f30212012-01-12 12:27:51 -0800339 audio_format_t format() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700340 return mFormat;
341 }
342
Glenn Kastenc59c0042012-02-02 14:06:11 -0800343 int channelCount() const { return mChannelCount; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700344
Glenn Kastenc59c0042012-02-02 14:06:11 -0800345 uint32_t channelMask() const { return mChannelMask; }
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700346
Glenn Kastenc59c0042012-02-02 14:06:11 -0800347 int sampleRate() const; // FIXME inline after cblk sr moved
Mathias Agopian65ab4712010-07-14 17:59:35 -0700348
349 void* getBuffer(uint32_t offset, uint32_t frames) const;
350
351 bool isStopped() const {
352 return mState == STOPPED;
353 }
354
355 bool isTerminated() const {
356 return mState == TERMINATED;
357 }
358
359 bool step();
360 void reset();
361
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800362 const wp<ThreadBase> mThread;
363 /*const*/ sp<Client> mClient; // see explanation at ~TrackBase() why not const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700364 sp<IMemory> mCblkMemory;
365 audio_track_cblk_t* mCblk;
366 void* mBuffer;
367 void* mBufferEnd;
368 uint32_t mFrameCount;
369 // we don't really need a lock for these
Glenn Kastenb853e982012-01-26 13:39:18 -0800370 track_state mState;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800371 const audio_format_t mFormat;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700372 uint32_t mFlags;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800373 const int mSessionId;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700374 uint8_t mChannelCount;
375 uint32_t mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700376 };
377
378 class ConfigEvent {
379 public:
380 ConfigEvent() : mEvent(0), mParam(0) {}
381
382 int mEvent;
383 int mParam;
384 };
385
Eric Laurentfeb0db62011-07-22 09:04:31 -0700386 class PMDeathRecipient : public IBinder::DeathRecipient {
387 public:
388 PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
389 virtual ~PMDeathRecipient() {}
390
391 // IBinder::DeathRecipient
392 virtual void binderDied(const wp<IBinder>& who);
393
394 private:
395 PMDeathRecipient(const PMDeathRecipient&);
396 PMDeathRecipient& operator = (const PMDeathRecipient&);
397
398 wp<ThreadBase> mThread;
399 };
400
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700401 virtual status_t initCheck() const = 0;
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800402 type_t type() const { return mType; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800403 uint32_t sampleRate() const { return mSampleRate; }
404 int channelCount() const { return mChannelCount; }
405 audio_format_t format() const { return mFormat; }
406 size_t frameCount() const { return mFrameCount; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700407 void wakeUp() { mWaitWorkCV.broadcast(); }
Glenn Kastenb28686f2012-01-06 08:39:38 -0800408 // Should be "virtual status_t requestExitAndWait()" and override same
409 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700410 void exit();
411 virtual bool checkForNewParameters_l() = 0;
412 virtual status_t setParameters(const String8& keyValuePairs);
413 virtual String8 getParameters(const String8& keys) = 0;
414 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
415 void sendConfigEvent(int event, int param = 0);
416 void sendConfigEvent_l(int event, int param = 0);
417 void processConfigEvents();
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800418 audio_io_handle_t id() const { return mId;}
Mathias Agopian65ab4712010-07-14 17:59:35 -0700419 bool standby() { return mStandby; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700420 uint32_t device() { return mDevice; }
421 virtual audio_stream_t* stream() = 0;
422
423 sp<EffectHandle> createEffect_l(
424 const sp<AudioFlinger::Client>& client,
425 const sp<IEffectClient>& effectClient,
426 int32_t priority,
427 int sessionId,
428 effect_descriptor_t *desc,
429 int *enabled,
430 status_t *status);
431 void disconnectEffect(const sp< EffectModule>& effect,
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700432 const wp<EffectHandle>& handle,
Glenn Kasten58123c32012-02-03 10:32:24 -0800433 bool unpinIfLast);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700434
435 // return values for hasAudioSession (bit field)
436 enum effect_state {
437 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
438 // effect
439 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
440 // track
441 };
442
443 // get effect chain corresponding to session Id.
444 sp<EffectChain> getEffectChain(int sessionId);
445 // same as getEffectChain() but must be called with ThreadBase mutex locked
446 sp<EffectChain> getEffectChain_l(int sessionId);
447 // add an effect chain to the chain list (mEffectChains)
448 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
449 // remove an effect chain from the chain list (mEffectChains)
450 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
451 // lock mall effect chains Mutexes. Must be called before releasing the
452 // ThreadBase mutex before processing the mixer and effects. This guarantees the
453 // integrity of the chains during the process.
454 void lockEffectChains_l(Vector<sp <EffectChain> >& effectChains);
455 // unlock effect chains after process
456 void unlockEffectChains(Vector<sp <EffectChain> >& effectChains);
457 // set audio mode to all effect chains
Glenn Kastenf78aee72012-01-04 11:00:47 -0800458 void setMode(audio_mode_t mode);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700459 // get effect module with corresponding ID on specified audio session
460 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
461 // add and effect module. Also creates the effect chain is none exists for
462 // the effects audio session
463 status_t addEffect_l(const sp< EffectModule>& effect);
464 // remove and effect module. Also removes the effect chain is this was the last
465 // effect
466 void removeEffect_l(const sp< EffectModule>& effect);
467 // detach all tracks connected to an auxiliary effect
468 virtual void detachAuxEffect_l(int effectId) {}
469 // returns either EFFECT_SESSION if effects on this audio session exist in one
470 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
471 virtual uint32_t hasAudioSession(int sessionId) = 0;
472 // the value returned by default implementation is not important as the
473 // strategy is only meaningful for PlaybackThread which implements this method
474 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700475
Eric Laurent59255e42011-07-27 19:49:51 -0700476 // suspend or restore effect according to the type of effect passed. a NULL
477 // type pointer means suspend all effects in the session
478 void setEffectSuspended(const effect_uuid_t *type,
479 bool suspend,
480 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
481 // check if some effects must be suspended/restored when an effect is enabled
482 // or disabled
Eric Laurenta85a74a2011-10-19 11:44:54 -0700483 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurent59255e42011-07-27 19:49:51 -0700484 bool enabled,
485 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurenta85a74a2011-10-19 11:44:54 -0700486 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
487 bool enabled,
488 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700489 mutable Mutex mLock;
490
491 protected:
492
Eric Laurent59255e42011-07-27 19:49:51 -0700493 // entry describing an effect being suspended in mSuspendedSessions keyed vector
494 class SuspendedSessionDesc : public RefBase {
495 public:
496 SuspendedSessionDesc() : mRefCount(0) {}
497
498 int mRefCount; // number of active suspend requests
499 effect_uuid_t mType; // effect type UUID
500 };
501
Eric Laurentfeb0db62011-07-22 09:04:31 -0700502 void acquireWakeLock();
503 void acquireWakeLock_l();
504 void releaseWakeLock();
505 void releaseWakeLock_l();
Eric Laurent59255e42011-07-27 19:49:51 -0700506 void setEffectSuspended_l(const effect_uuid_t *type,
507 bool suspend,
508 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
509 // updated mSuspendedSessions when an effect suspended or restored
510 void updateSuspendedSessions_l(const effect_uuid_t *type,
511 bool suspend,
512 int sessionId);
513 // check if some effects must be suspended when an effect chain is added
514 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
Eric Laurentfeb0db62011-07-22 09:04:31 -0700515
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700516 friend class AudioFlinger;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700517 friend class Track;
518 friend class TrackBase;
519 friend class PlaybackThread;
520 friend class MixerThread;
521 friend class DirectOutputThread;
522 friend class DuplicatingThread;
523 friend class RecordThread;
524 friend class RecordTrack;
525
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800526 const type_t mType;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700527 Condition mWaitWorkCV;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800528 const sp<AudioFlinger> mAudioFlinger;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700529 uint32_t mSampleRate;
530 size_t mFrameCount;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700531 uint32_t mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700532 uint16_t mChannelCount;
Glenn Kastenb9980652012-01-11 09:48:27 -0800533 size_t mFrameSize;
Glenn Kasten58f30212012-01-12 12:27:51 -0800534 audio_format_t mFormat;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700535 Condition mParamCond;
536 Vector<String8> mNewParameters;
537 status_t mParamStatus;
Glenn Kastenf3990f22011-12-13 11:50:00 -0800538 Vector<ConfigEvent> mConfigEvents;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700539 bool mStandby;
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800540 const audio_io_handle_t mId;
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700541 Vector< sp<EffectChain> > mEffectChains;
542 uint32_t mDevice; // output device for PlaybackThread
543 // input + output devices for RecordThread
Eric Laurentfeb0db62011-07-22 09:04:31 -0700544 static const int kNameLength = 32;
545 char mName[kNameLength];
546 sp<IPowerManager> mPowerManager;
547 sp<IBinder> mWakeLockToken;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800548 const sp<PMDeathRecipient> mDeathRecipient;
Eric Laurent59255e42011-07-27 19:49:51 -0700549 // list of suspended effects per session and per type. The first vector is
550 // keyed by session ID, the second by type UUID timeLow field
551 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > > mSuspendedSessions;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700552 };
553
Glenn Kastenb7bf7962012-02-08 12:36:25 -0800554 struct stream_type_t {
555 stream_type_t()
556 : volume(1.0f),
557 mute(false),
558 valid(true)
559 {
560 }
561 float volume;
562 bool mute;
563 bool valid;
564 };
565
Mathias Agopian65ab4712010-07-14 17:59:35 -0700566 // --- PlaybackThread ---
567 class PlaybackThread : public ThreadBase {
568 public:
569
Mathias Agopian65ab4712010-07-14 17:59:35 -0700570 enum mixer_state {
571 MIXER_IDLE,
572 MIXER_TRACKS_ENABLED,
573 MIXER_TRACKS_READY
574 };
575
576 // playback track
577 class Track : public TrackBase {
578 public:
579 Track( const wp<ThreadBase>& thread,
580 const sp<Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800581 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700582 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800583 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700584 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700585 int frameCount,
586 const sp<IMemory>& sharedBuffer,
587 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800588 virtual ~Track();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700589
590 void dump(char* buffer, size_t size);
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800591 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700592 virtual void stop();
593 void pause();
594
595 void flush();
596 void destroy();
597 void mute(bool);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700598 int name() const {
599 return mName;
600 }
601
Glenn Kasten02bbd202012-02-08 12:35:35 -0800602 audio_stream_type_t streamType() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700603 return mStreamType;
604 }
605 status_t attachAuxEffect(int EffectId);
606 void setAuxBuffer(int EffectId, int32_t *buffer);
Glenn Kastenc59c0042012-02-02 14:06:11 -0800607 int32_t *auxBuffer() const { return mAuxBuffer; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700608 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800609 int16_t *mainBuffer() const { return mMainBuffer; }
610 int auxEffectId() const { return mAuxEffectId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700611
612
613 protected:
614 friend class ThreadBase;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700615 friend class TrackHandle;
616 friend class PlaybackThread;
617 friend class MixerThread;
618 friend class DirectOutputThread;
619
620 Track(const Track&);
621 Track& operator = (const Track&);
622
623 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kastenc59c0042012-02-02 14:06:11 -0800624 bool isMuted() const { return mMute; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700625 bool isPausing() const {
626 return mState == PAUSING;
627 }
628 bool isPaused() const {
629 return mState == PAUSED;
630 }
631 bool isReady() const;
632 void setPaused() { mState = PAUSED; }
633 void reset();
634
635 bool isOutputTrack() const {
Dima Zavinfce7a472011-04-19 22:30:36 -0700636 return (mStreamType == AUDIO_STREAM_CNT);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700637 }
638
639 // we don't really need a lock for these
Mathias Agopian65ab4712010-07-14 17:59:35 -0700640 volatile bool mMute;
641 // FILLED state is used for suppressing volume ramp at begin of playing
642 enum {FS_FILLING, FS_FILLED, FS_ACTIVE};
643 mutable uint8_t mFillingUpStatus;
644 int8_t mRetryCount;
645 sp<IMemory> mSharedBuffer;
646 bool mResetDone;
Glenn Kastenfff6d712012-01-12 16:38:12 -0800647 audio_stream_type_t mStreamType;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700648 int mName;
649 int16_t *mMainBuffer;
650 int32_t *mAuxBuffer;
651 int mAuxEffectId;
Eric Laurent8f45bd72010-08-31 13:50:07 -0700652 bool mHasVolumeController;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700653 }; // end of Track
654
655
656 // playback track
657 class OutputTrack : public Track {
658 public:
659
660 class Buffer: public AudioBufferProvider::Buffer {
661 public:
662 int16_t *mBuffer;
663 };
664
665 OutputTrack( const wp<ThreadBase>& thread,
666 DuplicatingThread *sourceThread,
667 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800668 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700669 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700670 int frameCount);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800671 virtual ~OutputTrack();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700672
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800673 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700674 virtual void stop();
675 bool write(int16_t* data, uint32_t frames);
Glenn Kastenc59c0042012-02-02 14:06:11 -0800676 bool bufferQueueEmpty() const { return (mBufferQueue.size() == 0) ? true : false; }
677 bool isActive() const { return mActive; }
678 const wp<ThreadBase>& thread() const { return mThread; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700679
680 private:
681
Glenn Kasten335787f2012-01-20 17:00:00 -0800682 enum {
683 NO_MORE_BUFFERS = 0x80000001, // same in AudioTrack.h, ok to be different value
684 };
685
Mathias Agopian65ab4712010-07-14 17:59:35 -0700686 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
687 void clearBufferQueue();
688
689 // Maximum number of pending buffers allocated by OutputTrack::write()
690 static const uint8_t kMaxOverFlowBuffers = 10;
691
692 Vector < Buffer* > mBufferQueue;
693 AudioBufferProvider::Buffer mOutBuffer;
694 bool mActive;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800695 DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
Mathias Agopian65ab4712010-07-14 17:59:35 -0700696 }; // end of OutputTrack
697
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800698 PlaybackThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
699 audio_io_handle_t id, uint32_t device, type_t type);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700700 virtual ~PlaybackThread();
701
702 virtual status_t dump(int fd, const Vector<String16>& args);
703
704 // Thread virtuals
705 virtual status_t readyToRun();
706 virtual void onFirstRef();
707
Glenn Kastene0feee32011-12-13 11:53:26 -0800708 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700709
Mathias Agopian65ab4712010-07-14 17:59:35 -0700710 virtual uint32_t latency() const;
711
712 virtual status_t setMasterVolume(float value);
713 virtual status_t setMasterMute(bool muted);
714
Glenn Kastenc59c0042012-02-02 14:06:11 -0800715 virtual float masterVolume() const { return mMasterVolume; }
716 virtual bool masterMute() const { return mMasterMute; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700717
Glenn Kastenfff6d712012-01-12 16:38:12 -0800718 virtual status_t setStreamVolume(audio_stream_type_t stream, float value);
719 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700720
Glenn Kastenfff6d712012-01-12 16:38:12 -0800721 virtual float streamVolume(audio_stream_type_t stream) const;
722 virtual bool streamMute(audio_stream_type_t stream) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700723
Mathias Agopian65ab4712010-07-14 17:59:35 -0700724 sp<Track> createTrack_l(
725 const sp<AudioFlinger::Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800726 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700727 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800728 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700729 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700730 int frameCount,
731 const sp<IMemory>& sharedBuffer,
732 int sessionId,
733 status_t *status);
734
Glenn Kastenaed850d2012-01-26 09:46:34 -0800735 AudioStreamOut* getOutput() const;
Eric Laurentb8ba0a92011-08-07 16:32:26 -0700736 AudioStreamOut* clearOutput();
737 virtual audio_stream_t* stream();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700738
Mathias Agopian65ab4712010-07-14 17:59:35 -0700739 void suspend() { mSuspended++; }
740 void restore() { if (mSuspended) mSuspended--; }
Glenn Kastena3a85482012-01-04 11:01:11 -0800741 bool isSuspended() const { return (mSuspended != 0); }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700742 virtual String8 getParameters(const String8& keys);
743 virtual void audioConfigChanged_l(int event, int param = 0);
744 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
Glenn Kastenc59c0042012-02-02 14:06:11 -0800745 int16_t *mixBuffer() const { return mMixBuffer; };
Mathias Agopian65ab4712010-07-14 17:59:35 -0700746
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700747 virtual void detachAuxEffect_l(int effectId);
Eric Laurentde070132010-07-13 04:45:46 -0700748 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
749 int EffectId);
750 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
751 int EffectId);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700752
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700753 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
754 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
755 virtual uint32_t hasAudioSession(int sessionId);
756 virtual uint32_t getStrategyForSession_l(int sessionId);
Eric Laurentde070132010-07-13 04:45:46 -0700757
Glenn Kastenfff6d712012-01-12 16:38:12 -0800758 void setStreamValid(audio_stream_type_t streamType, bool valid);
Eric Laurent9f6530f2011-08-30 10:18:54 -0700759
Mathias Agopian65ab4712010-07-14 17:59:35 -0700760 protected:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700761 int16_t* mMixBuffer;
762 int mSuspended;
763 int mBytesWritten;
Glenn Kasten98067102011-12-13 11:47:54 -0800764 private:
Glenn Kasten99e53b82012-01-19 08:59:58 -0800765 // mMasterMute is in both PlaybackThread and in AudioFlinger. When a
766 // PlaybackThread needs to find out if master-muted, it checks it's local
767 // copy rather than the one in AudioFlinger. This optimization saves a lock.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700768 bool mMasterMute;
Glenn Kasten98067102011-12-13 11:47:54 -0800769 protected:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700770 SortedVector< wp<Track> > mActiveTracks;
771
772 virtual int getTrackName_l() = 0;
773 virtual void deleteTrackName_l(int name) = 0;
Eric Laurent162b40b2011-12-05 09:47:19 -0800774 virtual uint32_t activeSleepTimeUs();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700775 virtual uint32_t idleSleepTimeUs() = 0;
Eric Laurent25cbe0e2010-08-18 18:13:17 -0700776 virtual uint32_t suspendSleepTimeUs() = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700777
778 private:
779
780 friend class AudioFlinger;
781 friend class OutputTrack;
782 friend class Track;
783 friend class TrackBase;
784 friend class MixerThread;
785 friend class DirectOutputThread;
786 friend class DuplicatingThread;
787
788 PlaybackThread(const Client&);
789 PlaybackThread& operator = (const PlaybackThread&);
790
791 status_t addTrack_l(const sp<Track>& track);
792 void destroyTrack_l(const sp<Track>& track);
Eric Laurentb469b942011-05-09 12:09:06 -0700793 void removeTrack_l(const sp<Track>& track);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700794
795 void readOutputParameters();
796
Mathias Agopian65ab4712010-07-14 17:59:35 -0700797 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
798 status_t dumpTracks(int fd, const Vector<String16>& args);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700799
800 SortedVector< sp<Track> > mTracks;
Glenn Kasten263709e2012-01-06 08:40:01 -0800801 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by DuplicatingThread
Dima Zavinfce7a472011-04-19 22:30:36 -0700802 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
Glenn Kastenaed850d2012-01-26 09:46:34 -0800803 AudioStreamOut *mOutput;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700804 float mMasterVolume;
805 nsecs_t mLastWriteTime;
806 int mNumWrites;
807 int mNumDelayedWrites;
808 bool mInWrite;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700809 };
810
811 class MixerThread : public PlaybackThread {
812 public:
Eric Laurentde070132010-07-13 04:45:46 -0700813 MixerThread (const sp<AudioFlinger>& audioFlinger,
Dima Zavin799a70e2011-04-18 16:57:27 -0700814 AudioStreamOut* output,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800815 audio_io_handle_t id,
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800816 uint32_t device,
817 type_t type = MIXER);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700818 virtual ~MixerThread();
819
820 // Thread virtuals
821 virtual bool threadLoop();
822
Glenn Kastenfff6d712012-01-12 16:38:12 -0800823 void invalidateTracks(audio_stream_type_t streamType);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700824 virtual bool checkForNewParameters_l();
825 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
826
827 protected:
Glenn Kasten29c23c32012-01-26 13:37:52 -0800828 mixer_state prepareTracks_l(const SortedVector< wp<Track> >& activeTracks,
Eric Laurentde070132010-07-13 04:45:46 -0700829 Vector< sp<Track> > *tracksToRemove);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700830 virtual int getTrackName_l();
831 virtual void deleteTrackName_l(int name);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700832 virtual uint32_t idleSleepTimeUs();
Eric Laurent25cbe0e2010-08-18 18:13:17 -0700833 virtual uint32_t suspendSleepTimeUs();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700834
Eric Laurent27741442012-01-17 19:20:12 -0800835 AudioMixer* mAudioMixer;
Glenn Kasten29c23c32012-01-26 13:37:52 -0800836 mixer_state mPrevMixerStatus; // previous status returned by prepareTracks_l()
Mathias Agopian65ab4712010-07-14 17:59:35 -0700837 };
838
839 class DirectOutputThread : public PlaybackThread {
840 public:
841
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800842 DirectOutputThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
843 audio_io_handle_t id, uint32_t device);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800844 virtual ~DirectOutputThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700845
846 // Thread virtuals
847 virtual bool threadLoop();
848
849 virtual bool checkForNewParameters_l();
850
851 protected:
852 virtual int getTrackName_l();
853 virtual void deleteTrackName_l(int name);
854 virtual uint32_t activeSleepTimeUs();
855 virtual uint32_t idleSleepTimeUs();
Eric Laurent25cbe0e2010-08-18 18:13:17 -0700856 virtual uint32_t suspendSleepTimeUs();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700857
858 private:
859 void applyVolume(uint16_t leftVol, uint16_t rightVol, bool ramp);
860
Glenn Kasten99e53b82012-01-19 08:59:58 -0800861 // volumes last sent to audio HAL with stream->set_volume()
862 // FIXME use standard representation and names
Mathias Agopian65ab4712010-07-14 17:59:35 -0700863 float mLeftVolFloat;
864 float mRightVolFloat;
865 uint16_t mLeftVolShort;
866 uint16_t mRightVolShort;
867 };
868
869 class DuplicatingThread : public MixerThread {
870 public:
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800871 DuplicatingThread (const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
872 audio_io_handle_t id);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800873 virtual ~DuplicatingThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700874
875 // Thread virtuals
876 virtual bool threadLoop();
877 void addOutputTrack(MixerThread* thread);
878 void removeOutputTrack(MixerThread* thread);
879 uint32_t waitTimeMs() { return mWaitTimeMs; }
880 protected:
881 virtual uint32_t activeSleepTimeUs();
882
883 private:
884 bool outputsReady(SortedVector< sp<OutputTrack> > &outputTracks);
885 void updateWaitTime();
886
887 SortedVector < sp<OutputTrack> > mOutputTracks;
888 uint32_t mWaitTimeMs;
889 };
890
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800891 PlaybackThread *checkPlaybackThread_l(audio_io_handle_t output) const;
892 MixerThread *checkMixerThread_l(audio_io_handle_t output) const;
893 RecordThread *checkRecordThread_l(audio_io_handle_t input) const;
894 float streamVolumeInternal(audio_stream_type_t stream) const
895 { return mStreamTypes[stream].volume; }
896 void audioConfigChanged_l(int event, audio_io_handle_t ioHandle, void *param2);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700897
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800898 // allocate an audio_io_handle_t, session ID, or effect ID
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700899 uint32_t nextUniqueId();
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800900
Eric Laurent59255e42011-07-27 19:49:51 -0700901 status_t moveEffectChain_l(int sessionId,
Eric Laurentde070132010-07-13 04:45:46 -0700902 AudioFlinger::PlaybackThread *srcThread,
Eric Laurent39e94f82010-07-28 01:32:47 -0700903 AudioFlinger::PlaybackThread *dstThread,
904 bool reRegister);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700905 PlaybackThread *primaryPlaybackThread_l();
906 uint32_t primaryOutputDevice_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700907
908 friend class AudioBuffer;
909
Glenn Kasten99e53b82012-01-19 08:59:58 -0800910 // server side of the client's IAudioTrack
Mathias Agopian65ab4712010-07-14 17:59:35 -0700911 class TrackHandle : public android::BnAudioTrack {
912 public:
913 TrackHandle(const sp<PlaybackThread::Track>& track);
914 virtual ~TrackHandle();
Glenn Kasten90716c52012-01-26 13:40:12 -0800915 virtual sp<IMemory> getCblk() const;
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800916 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700917 virtual void stop();
918 virtual void flush();
919 virtual void mute(bool);
920 virtual void pause();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700921 virtual status_t attachAuxEffect(int effectId);
922 virtual status_t onTransact(
923 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
924 private:
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800925 const sp<PlaybackThread::Track> mTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700926 };
927
928 friend class Client;
929 friend class PlaybackThread::Track;
930
931
932 void removeClient_l(pid_t pid);
933 void removeNotificationClient(pid_t pid);
934
935
936 // record thread
937 class RecordThread : public ThreadBase, public AudioBufferProvider
938 {
939 public:
940
941 // record track
942 class RecordTrack : public TrackBase {
943 public:
944 RecordTrack(const wp<ThreadBase>& thread,
945 const sp<Client>& client,
946 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800947 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700948 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700949 int frameCount,
950 uint32_t flags,
951 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800952 virtual ~RecordTrack();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700953
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800954 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700955 virtual void stop();
956
957 bool overflow() { bool tmp = mOverflow; mOverflow = false; return tmp; }
958 bool setOverflow() { bool tmp = mOverflow; mOverflow = true; return tmp; }
959
960 void dump(char* buffer, size_t size);
Eric Laurent59255e42011-07-27 19:49:51 -0700961
Mathias Agopian65ab4712010-07-14 17:59:35 -0700962 private:
963 friend class AudioFlinger;
964 friend class RecordThread;
965
966 RecordTrack(const RecordTrack&);
967 RecordTrack& operator = (const RecordTrack&);
968
969 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
970
971 bool mOverflow;
972 };
973
974
975 RecordThread(const sp<AudioFlinger>& audioFlinger,
Dima Zavin799a70e2011-04-18 16:57:27 -0700976 AudioStreamIn *input,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700977 uint32_t sampleRate,
978 uint32_t channels,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800979 audio_io_handle_t id,
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700980 uint32_t device);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800981 virtual ~RecordThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700982
983 virtual bool threadLoop();
Eric Laurentb8ba0a92011-08-07 16:32:26 -0700984 virtual status_t readyToRun();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700985 virtual void onFirstRef();
986
Glenn Kastene0feee32011-12-13 11:53:26 -0800987 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700988 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
989 const sp<AudioFlinger::Client>& client,
990 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800991 audio_format_t format,
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700992 int channelMask,
993 int frameCount,
994 uint32_t flags,
995 int sessionId,
996 status_t *status);
997
Mathias Agopian65ab4712010-07-14 17:59:35 -0700998 status_t start(RecordTrack* recordTrack);
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800999 status_t start(RecordTrack* recordTrack, pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001000 void stop(RecordTrack* recordTrack);
1001 status_t dump(int fd, const Vector<String16>& args);
Glenn Kastenaed850d2012-01-26 09:46:34 -08001002 AudioStreamIn* getInput() const;
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001003 AudioStreamIn* clearInput();
1004 virtual audio_stream_t* stream();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001005
1006 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
1007 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
1008 virtual bool checkForNewParameters_l();
1009 virtual String8 getParameters(const String8& keys);
1010 virtual void audioConfigChanged_l(int event, int param = 0);
1011 void readInputParameters();
1012 virtual unsigned int getInputFramesLost();
1013
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001014 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
1015 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
1016 virtual uint32_t hasAudioSession(int sessionId);
Eric Laurent59bd0da2011-08-01 09:52:20 -07001017 RecordTrack* track();
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001018
Mathias Agopian65ab4712010-07-14 17:59:35 -07001019 private:
1020 RecordThread();
Dima Zavin799a70e2011-04-18 16:57:27 -07001021 AudioStreamIn *mInput;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001022 RecordTrack* mTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001023 sp<RecordTrack> mActiveTrack;
1024 Condition mStartStopCond;
1025 AudioResampler *mResampler;
1026 int32_t *mRsmpOutBuffer;
1027 int16_t *mRsmpInBuffer;
1028 size_t mRsmpInIndex;
1029 size_t mInputBytes;
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001030 const int mReqChannelCount;
1031 const uint32_t mReqSampleRate;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001032 ssize_t mBytesRead;
1033 };
1034
Glenn Kasten99e53b82012-01-19 08:59:58 -08001035 // server side of the client's IAudioRecord
Mathias Agopian65ab4712010-07-14 17:59:35 -07001036 class RecordHandle : public android::BnAudioRecord {
1037 public:
1038 RecordHandle(const sp<RecordThread::RecordTrack>& recordTrack);
1039 virtual ~RecordHandle();
Glenn Kasten90716c52012-01-26 13:40:12 -08001040 virtual sp<IMemory> getCblk() const;
Glenn Kasten6dbc1352012-02-02 10:56:47 -08001041 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001042 virtual void stop();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001043 virtual status_t onTransact(
1044 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1045 private:
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001046 const sp<RecordThread::RecordTrack> mRecordTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001047 };
1048
1049 //--- Audio Effect Management
1050
1051 // EffectModule and EffectChain classes both have their own mutex to protect
1052 // state changes or resource modifications. Always respect the following order
1053 // if multiple mutexes must be acquired to avoid cross deadlock:
1054 // AudioFlinger -> ThreadBase -> EffectChain -> EffectModule
1055
1056 // The EffectModule class is a wrapper object controlling the effect engine implementation
1057 // in the effect library. It prevents concurrent calls to process() and command() functions
1058 // from different client threads. It keeps a list of EffectHandle objects corresponding
1059 // to all client applications using this effect and notifies applications of effect state,
1060 // control or parameter changes. It manages the activation state machine to send appropriate
1061 // reset, enable, disable commands to effect engine and provide volume
1062 // ramping when effects are activated/deactivated.
1063 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
1064 // the attached track(s) to accumulate their auxiliary channel.
1065 class EffectModule: public RefBase {
1066 public:
1067 EffectModule(const wp<ThreadBase>& wThread,
1068 const wp<AudioFlinger::EffectChain>& chain,
1069 effect_descriptor_t *desc,
1070 int id,
1071 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001072 virtual ~EffectModule();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001073
1074 enum effect_state {
1075 IDLE,
1076 RESTART,
1077 STARTING,
1078 ACTIVE,
1079 STOPPING,
Eric Laurentec437d82011-07-26 20:54:46 -07001080 STOPPED,
1081 DESTROYED
Mathias Agopian65ab4712010-07-14 17:59:35 -07001082 };
1083
Glenn Kastenc59c0042012-02-02 14:06:11 -08001084 int id() const { return mId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001085 void process();
1086 void updateState();
Eric Laurent25f43952010-07-28 05:40:18 -07001087 status_t command(uint32_t cmdCode,
1088 uint32_t cmdSize,
1089 void *pCmdData,
1090 uint32_t *replySize,
1091 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001092
1093 void reset_l();
1094 status_t configure();
1095 status_t init();
Glenn Kasten28243dd2012-01-26 13:43:46 -08001096 effect_state state() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001097 return mState;
1098 }
1099 uint32_t status() {
1100 return mStatus;
1101 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001102 int sessionId() const {
Eric Laurentde070132010-07-13 04:45:46 -07001103 return mSessionId;
1104 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001105 status_t setEnabled(bool enabled);
Glenn Kastenc59c0042012-02-02 14:06:11 -08001106 bool isEnabled() const;
1107 bool isProcessEnabled() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001108
1109 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
1110 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
1111 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
1112 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
Eric Laurentde070132010-07-13 04:45:46 -07001113 void setChain(const wp<EffectChain>& chain) { mChain = chain; }
1114 void setThread(const wp<ThreadBase>& thread) { mThread = thread; }
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001115 const wp<ThreadBase>& thread() { return mThread; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001116
Glenn Kasten435dbe62012-01-30 10:15:48 -08001117 status_t addHandle(const sp<EffectHandle>& handle);
Glenn Kasten58123c32012-02-03 10:32:24 -08001118 void disconnect(const wp<EffectHandle>& handle, bool unpinIfLast);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001119 size_t removeHandle (const wp<EffectHandle>& handle);
1120
1121 effect_descriptor_t& desc() { return mDescriptor; }
1122 wp<EffectChain>& chain() { return mChain; }
1123
1124 status_t setDevice(uint32_t device);
1125 status_t setVolume(uint32_t *left, uint32_t *right, bool controller);
Glenn Kastenf78aee72012-01-04 11:00:47 -08001126 status_t setMode(audio_mode_t mode);
Eric Laurentec35a142011-10-05 17:42:25 -07001127 status_t start();
Eric Laurentec437d82011-07-26 20:54:46 -07001128 status_t stop();
Eric Laurent59255e42011-07-27 19:49:51 -07001129 void setSuspended(bool suspended);
Glenn Kastena3a85482012-01-04 11:01:11 -08001130 bool suspended() const;
Eric Laurent59255e42011-07-27 19:49:51 -07001131
1132 sp<EffectHandle> controlHandle();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001133
Glenn Kastenc59c0042012-02-02 14:06:11 -08001134 bool isPinned() const { return mPinned; }
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001135 void unPin() { mPinned = false; }
1136
Mathias Agopian65ab4712010-07-14 17:59:35 -07001137 status_t dump(int fd, const Vector<String16>& args);
1138
1139 protected:
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001140 friend class EffectHandle;
1141 friend class AudioFlinger;
1142 bool mPinned;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001143
1144 // Maximum time allocated to effect engines to complete the turn off sequence
1145 static const uint32_t MAX_DISABLE_TIME_MS = 10000;
1146
1147 EffectModule(const EffectModule&);
1148 EffectModule& operator = (const EffectModule&);
1149
1150 status_t start_l();
1151 status_t stop_l();
1152
Glenn Kastena3a85482012-01-04 11:01:11 -08001153mutable Mutex mLock; // mutex for process, commands and handles list protection
Mathias Agopian65ab4712010-07-14 17:59:35 -07001154 wp<ThreadBase> mThread; // parent thread
1155 wp<EffectChain> mChain; // parent effect chain
1156 int mId; // this instance unique ID
1157 int mSessionId; // audio session ID
1158 effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
1159 effect_config_t mConfig; // input and output audio configuration
Eric Laurente1315cf2011-05-17 19:16:02 -07001160 effect_handle_t mEffectInterface; // Effect module C API
Glenn Kasten28243dd2012-01-26 13:43:46 -08001161 status_t mStatus; // initialization status
1162 effect_state mState; // current activation state
Mathias Agopian65ab4712010-07-14 17:59:35 -07001163 Vector< wp<EffectHandle> > mHandles; // list of client handles
Glenn Kasten99e53b82012-01-19 08:59:58 -08001164 // First handle in mHandles has highest priority and controls the effect module
Mathias Agopian65ab4712010-07-14 17:59:35 -07001165 uint32_t mMaxDisableWaitCnt; // maximum grace period before forcing an effect off after
1166 // sending disable command.
1167 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
Eric Laurent59255e42011-07-27 19:49:51 -07001168 bool mSuspended; // effect is suspended: temporarily disabled by framework
Mathias Agopian65ab4712010-07-14 17:59:35 -07001169 };
1170
1171 // The EffectHandle class implements the IEffect interface. It provides resources
1172 // to receive parameter updates, keeps track of effect control
1173 // ownership and state and has a pointer to the EffectModule object it is controlling.
1174 // There is one EffectHandle object for each application controlling (or using)
1175 // an effect module.
1176 // The EffectHandle is obtained by calling AudioFlinger::createEffect().
1177 class EffectHandle: public android::BnEffect {
1178 public:
1179
1180 EffectHandle(const sp<EffectModule>& effect,
1181 const sp<AudioFlinger::Client>& client,
1182 const sp<IEffectClient>& effectClient,
1183 int32_t priority);
1184 virtual ~EffectHandle();
1185
1186 // IEffect
1187 virtual status_t enable();
1188 virtual status_t disable();
Eric Laurent25f43952010-07-28 05:40:18 -07001189 virtual status_t command(uint32_t cmdCode,
1190 uint32_t cmdSize,
1191 void *pCmdData,
1192 uint32_t *replySize,
1193 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001194 virtual void disconnect();
Glenn Kasten58123c32012-02-03 10:32:24 -08001195 private:
1196 void disconnect(bool unpinIfLast);
1197 public:
Glenn Kastenc59c0042012-02-02 14:06:11 -08001198 virtual sp<IMemory> getCblk() const { return mCblkMemory; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001199 virtual status_t onTransact(uint32_t code, const Parcel& data,
1200 Parcel* reply, uint32_t flags);
1201
1202
1203 // Give or take control of effect module
Eric Laurent59255e42011-07-27 19:49:51 -07001204 // - hasControl: true if control is given, false if removed
1205 // - signal: true client app should be signaled of change, false otherwise
1206 // - enabled: state of the effect when control is passed
1207 void setControl(bool hasControl, bool signal, bool enabled);
Eric Laurent25f43952010-07-28 05:40:18 -07001208 void commandExecuted(uint32_t cmdCode,
1209 uint32_t cmdSize,
1210 void *pCmdData,
1211 uint32_t replySize,
1212 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001213 void setEnabled(bool enabled);
Glenn Kastenc59c0042012-02-02 14:06:11 -08001214 bool enabled() const { return mEnabled; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001215
1216 // Getters
Glenn Kastenc59c0042012-02-02 14:06:11 -08001217 int id() const { return mEffect->id(); }
1218 int priority() const { return mPriority; }
1219 bool hasControl() const { return mHasControl; }
1220 sp<EffectModule> effect() const { return mEffect; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001221
1222 void dump(char* buffer, size_t size);
1223
1224 protected:
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001225 friend class AudioFlinger;
1226 friend class EffectModule;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001227 EffectHandle(const EffectHandle&);
1228 EffectHandle& operator =(const EffectHandle&);
1229
1230 sp<EffectModule> mEffect; // pointer to controlled EffectModule
1231 sp<IEffectClient> mEffectClient; // callback interface for client notifications
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001232 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
Mathias Agopian65ab4712010-07-14 17:59:35 -07001233 sp<IMemory> mCblkMemory; // shared memory for control block
1234 effect_param_cblk_t* mCblk; // control block for deferred parameter setting via shared memory
1235 uint8_t* mBuffer; // pointer to parameter area in shared memory
1236 int mPriority; // client application priority to control the effect
1237 bool mHasControl; // true if this handle is controlling the effect
Eric Laurent59255e42011-07-27 19:49:51 -07001238 bool mEnabled; // cached enable state: needed when the effect is
1239 // restored after being suspended
Mathias Agopian65ab4712010-07-14 17:59:35 -07001240 };
1241
1242 // the EffectChain class represents a group of effects associated to one audio session.
1243 // There can be any number of EffectChain objects per output mixer thread (PlaybackThread).
1244 // The EffecChain with session ID 0 contains global effects applied to the output mix.
1245 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to tracks)
1246 // are insert only. The EffectChain maintains an ordered list of effect module, the order corresponding
1247 // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
1248 // input buffer used by the track as accumulation buffer.
1249 class EffectChain: public RefBase {
1250 public:
1251 EffectChain(const wp<ThreadBase>& wThread, int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001252 virtual ~EffectChain();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001253
Eric Laurent59255e42011-07-27 19:49:51 -07001254 // special key used for an entry in mSuspendedEffects keyed vector
1255 // corresponding to a suspend all request.
1256 static const int kKeyForSuspendAll = 0;
1257
Eric Laurent544fe9b2011-11-11 15:42:52 -08001258 // minimum duration during which we force calling effect process when last track on
1259 // a session is stopped or removed to allow effect tail to be rendered
1260 static const int kProcessTailDurationMs = 1000;
1261
Mathias Agopian65ab4712010-07-14 17:59:35 -07001262 void process_l();
1263
1264 void lock() {
1265 mLock.lock();
1266 }
1267 void unlock() {
1268 mLock.unlock();
1269 }
1270
Eric Laurentde070132010-07-13 04:45:46 -07001271 status_t addEffect_l(const sp<EffectModule>& handle);
Eric Laurentcab11242010-07-15 12:50:15 -07001272 size_t removeEffect_l(const sp<EffectModule>& handle);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001273
Glenn Kastenc59c0042012-02-02 14:06:11 -08001274 int sessionId() const { return mSessionId; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001275 void setSessionId(int sessionId) { mSessionId = sessionId; }
Eric Laurentde070132010-07-13 04:45:46 -07001276
Eric Laurentcab11242010-07-15 12:50:15 -07001277 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1278 sp<EffectModule> getEffectFromId_l(int id);
Eric Laurent59255e42011-07-27 19:49:51 -07001279 sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type);
Eric Laurentcab11242010-07-15 12:50:15 -07001280 bool setVolume_l(uint32_t *left, uint32_t *right);
1281 void setDevice_l(uint32_t device);
Glenn Kastenf78aee72012-01-04 11:00:47 -08001282 void setMode_l(audio_mode_t mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001283
Mathias Agopian65ab4712010-07-14 17:59:35 -07001284 void setInBuffer(int16_t *buffer, bool ownsBuffer = false) {
1285 mInBuffer = buffer;
1286 mOwnInBuffer = ownsBuffer;
1287 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001288 int16_t *inBuffer() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001289 return mInBuffer;
1290 }
1291 void setOutBuffer(int16_t *buffer) {
1292 mOutBuffer = buffer;
1293 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001294 int16_t *outBuffer() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001295 return mOutBuffer;
1296 }
1297
Eric Laurentb469b942011-05-09 12:09:06 -07001298 void incTrackCnt() { android_atomic_inc(&mTrackCnt); }
1299 void decTrackCnt() { android_atomic_dec(&mTrackCnt); }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001300 int32_t trackCnt() const { return mTrackCnt;}
Eric Laurentb469b942011-05-09 12:09:06 -07001301
Eric Laurent544fe9b2011-11-11 15:42:52 -08001302 void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt);
1303 mTailBufferCount = mMaxTailBuffers; }
Eric Laurentb469b942011-05-09 12:09:06 -07001304 void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001305 int32_t activeTrackCnt() const { return mActiveTrackCnt;}
Mathias Agopian65ab4712010-07-14 17:59:35 -07001306
Glenn Kastenc59c0042012-02-02 14:06:11 -08001307 uint32_t strategy() const { return mStrategy; }
Eric Laurentde070132010-07-13 04:45:46 -07001308 void setStrategy(uint32_t strategy)
1309 { mStrategy = strategy; }
1310
Eric Laurent59255e42011-07-27 19:49:51 -07001311 // suspend effect of the given type
1312 void setEffectSuspended_l(const effect_uuid_t *type,
1313 bool suspend);
1314 // suspend all eligible effects
1315 void setEffectSuspendedAll_l(bool suspend);
1316 // check if effects should be suspend or restored when a given effect is enable or disabled
Eric Laurenta85a74a2011-10-19 11:44:54 -07001317 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurent59255e42011-07-27 19:49:51 -07001318 bool enabled);
1319
Mathias Agopian65ab4712010-07-14 17:59:35 -07001320 status_t dump(int fd, const Vector<String16>& args);
1321
1322 protected:
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001323 friend class AudioFlinger;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001324 EffectChain(const EffectChain&);
1325 EffectChain& operator =(const EffectChain&);
1326
Eric Laurent59255e42011-07-27 19:49:51 -07001327 class SuspendedEffectDesc : public RefBase {
1328 public:
1329 SuspendedEffectDesc() : mRefCount(0) {}
1330
1331 int mRefCount;
1332 effect_uuid_t mType;
1333 wp<EffectModule> mEffect;
1334 };
1335
1336 // get a list of effect modules to suspend when an effect of the type
1337 // passed is enabled.
Glenn Kastend0539712012-01-30 12:56:03 -08001338 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects);
1339
Eric Laurent59255e42011-07-27 19:49:51 -07001340 // get an effect module if it is currently enable
1341 sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type);
Eric Laurentdb7c0792011-08-10 10:37:50 -07001342 // true if the effect whose descriptor is passed can be suspended
1343 // OEMs can modify the rules implemented in this method to exclude specific effect
1344 // types or implementations from the suspend/restore mechanism.
1345 bool isEffectEligibleForSuspend(const effect_descriptor_t& desc);
Eric Laurent59255e42011-07-27 19:49:51 -07001346
Mathias Agopian65ab4712010-07-14 17:59:35 -07001347 wp<ThreadBase> mThread; // parent mixer thread
1348 Mutex mLock; // mutex protecting effect list
1349 Vector<sp<EffectModule> > mEffects; // list of effect modules
1350 int mSessionId; // audio session ID
1351 int16_t *mInBuffer; // chain input buffer
1352 int16_t *mOutBuffer; // chain output buffer
Eric Laurentb469b942011-05-09 12:09:06 -07001353 volatile int32_t mActiveTrackCnt; // number of active tracks connected
1354 volatile int32_t mTrackCnt; // number of tracks connected
Eric Laurent544fe9b2011-11-11 15:42:52 -08001355 int32_t mTailBufferCount; // current effect tail buffer count
1356 int32_t mMaxTailBuffers; // maximum effect tail buffers
Mathias Agopian65ab4712010-07-14 17:59:35 -07001357 bool mOwnInBuffer; // true if the chain owns its input buffer
Eric Laurentcab11242010-07-15 12:50:15 -07001358 int mVolumeCtrlIdx; // index of insert effect having control over volume
1359 uint32_t mLeftVolume; // previous volume on left channel
1360 uint32_t mRightVolume; // previous volume on right channel
Eric Laurentf997cab2010-07-19 06:24:46 -07001361 uint32_t mNewLeftVolume; // new volume on left channel
1362 uint32_t mNewRightVolume; // new volume on right channel
Eric Laurentde070132010-07-13 04:45:46 -07001363 uint32_t mStrategy; // strategy for this effect chain
Eric Laurent59255e42011-07-27 19:49:51 -07001364 // mSuspendedEffects lists all effect currently suspended in the chain
1365 // use effect type UUID timelow field as key. There is no real risk of identical
1366 // timeLow fields among effect type UUIDs.
1367 KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001368 };
1369
Glenn Kastenaed850d2012-01-26 09:46:34 -08001370 // AudioStreamOut and AudioStreamIn are immutable, so their fields are const.
1371 // For emphasis, we could also make all pointers to them be "const *",
1372 // but that would clutter the code unnecessarily.
1373
Dima Zavin799a70e2011-04-18 16:57:27 -07001374 struct AudioStreamOut {
Glenn Kastenaed850d2012-01-26 09:46:34 -08001375 audio_hw_device_t* const hwDev;
1376 audio_stream_out_t* const stream;
Dima Zavin799a70e2011-04-18 16:57:27 -07001377
1378 AudioStreamOut(audio_hw_device_t *dev, audio_stream_out_t *out) :
1379 hwDev(dev), stream(out) {}
1380 };
1381
1382 struct AudioStreamIn {
Glenn Kastenaed850d2012-01-26 09:46:34 -08001383 audio_hw_device_t* const hwDev;
1384 audio_stream_in_t* const stream;
Dima Zavin799a70e2011-04-18 16:57:27 -07001385
1386 AudioStreamIn(audio_hw_device_t *dev, audio_stream_in_t *in) :
1387 hwDev(dev), stream(in) {}
1388 };
1389
Glenn Kasten99e53b82012-01-19 08:59:58 -08001390 // for mAudioSessionRefs only
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001391 struct AudioSessionRef {
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001392 // FIXME rename parameter names when fields get "m" prefix
1393 AudioSessionRef(int sessionid_, pid_t pid_) :
1394 sessionid(sessionid_), pid(pid_), cnt(1) {}
1395 const int sessionid;
1396 const pid_t pid;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001397 int cnt;
1398 };
1399
Mathias Agopian65ab4712010-07-14 17:59:35 -07001400 friend class RecordThread;
1401 friend class PlaybackThread;
1402
Mathias Agopian65ab4712010-07-14 17:59:35 -07001403 mutable Mutex mLock;
1404
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001405 DefaultKeyedVector< pid_t, wp<Client> > mClients; // see ~Client()
Mathias Agopian65ab4712010-07-14 17:59:35 -07001406
1407 mutable Mutex mHardwareLock;
Glenn Kasten2b213bc2012-02-02 14:05:20 -08001408
1409 // These two fields are immutable after onFirstRef(), so no lock needed to access
1410 audio_hw_device_t* mPrimaryHardwareDev; // mAudioHwDevs[0] or NULL
Dima Zavin799a70e2011-04-18 16:57:27 -07001411 Vector<audio_hw_device_t*> mAudioHwDevs;
Glenn Kasten2f732eb2012-01-26 09:48:03 -08001412
1413 enum hardware_call_state {
1414 AUDIO_HW_IDLE = 0,
1415 AUDIO_HW_INIT,
1416 AUDIO_HW_OUTPUT_OPEN,
1417 AUDIO_HW_OUTPUT_CLOSE,
1418 AUDIO_HW_INPUT_OPEN,
1419 AUDIO_HW_INPUT_CLOSE,
1420 AUDIO_HW_STANDBY,
1421 AUDIO_HW_SET_MASTER_VOLUME,
1422 AUDIO_HW_GET_ROUTING,
1423 AUDIO_HW_SET_ROUTING,
1424 AUDIO_HW_GET_MODE,
1425 AUDIO_HW_SET_MODE,
1426 AUDIO_HW_GET_MIC_MUTE,
1427 AUDIO_HW_SET_MIC_MUTE,
1428 AUDIO_SET_VOICE_VOLUME,
1429 AUDIO_SET_PARAMETER,
Glenn Kasten2b213bc2012-02-02 14:05:20 -08001430 AUDIO_HW_GET_INPUT_BUFFER_SIZE,
Glenn Kasten2f732eb2012-01-26 09:48:03 -08001431 };
1432
Glenn Kastena4454b42012-01-04 11:02:33 -08001433 mutable hardware_call_state mHardwareStatus; // for dump only
Mathias Agopian65ab4712010-07-14 17:59:35 -07001434
1435
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001436 DefaultKeyedVector< audio_io_handle_t, sp<PlaybackThread> > mPlaybackThreads;
Glenn Kastenb7bf7962012-02-08 12:36:25 -08001437 stream_type_t mStreamTypes[AUDIO_STREAM_CNT];
Glenn Kasten98067102011-12-13 11:47:54 -08001438
1439 // both are protected by mLock
Mathias Agopian65ab4712010-07-14 17:59:35 -07001440 float mMasterVolume;
1441 bool mMasterMute;
1442
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001443 DefaultKeyedVector< audio_io_handle_t, sp<RecordThread> > mRecordThreads;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001444
1445 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
Glenn Kasten99e53b82012-01-19 08:59:58 -08001446 volatile int32_t mNextUniqueId; // updated by android_atomic_inc
Glenn Kastenf78aee72012-01-04 11:00:47 -08001447 audio_mode_t mMode;
Eric Laurentbee53372011-08-29 12:42:48 -07001448 bool mBtNrecIsOff;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001449
Glenn Kasten99e53b82012-01-19 08:59:58 -08001450 // protected by mLock
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001451 Vector<AudioSessionRef*> mAudioSessionRefs;
Glenn Kasten98067102011-12-13 11:47:54 -08001452
1453 float masterVolume_l() const { return mMasterVolume; }
1454 bool masterMute_l() const { return mMasterMute; }
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001455
1456private:
1457 sp<Client> registerPid_l(pid_t pid); // always returns non-0
1458
Mathias Agopian65ab4712010-07-14 17:59:35 -07001459};
1460
Dima Zavin799a70e2011-04-18 16:57:27 -07001461
Mathias Agopian65ab4712010-07-14 17:59:35 -07001462// ----------------------------------------------------------------------------
1463
1464}; // namespace android
1465
1466#endif // ANDROID_AUDIO_FLINGER_H