blob: f80750b9fae70d1840611a869e6a744e3e675fbe [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/* //device/include/server/AudioFlinger/AudioFlinger.h
2**
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>
Eric Laurent8ac9f8d2009-12-18 05:47:48 -080023#include <limits.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024
25#include <media/IAudioFlinger.h>
26#include <media/IAudioFlingerClient.h>
27#include <media/IAudioTrack.h>
28#include <media/IAudioRecord.h>
Glenn Kasten34f9f8b2012-01-20 17:00:00 -080029#include <media/AudioSystem.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030
31#include <utils/Atomic.h>
32#include <utils/Errors.h>
33#include <utils/threads.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034#include <utils/SortedVector.h>
Dima Zavin31f188892011-04-18 16:57:27 -070035#include <utils/TypeHelpers.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036#include <utils/Vector.h>
37
Mathias Agopian24651682010-07-14 18:41:18 -070038#include <binder/BinderService.h>
39#include <binder/MemoryDealer.h>
40
Dima Zavin34bb4192011-05-11 14:15:23 -070041#include <system/audio.h>
Dima Zavin290029d2011-06-13 18:16:26 -070042#include <hardware/audio.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043
44#include "AudioBufferProvider.h"
45
Eric Laurent6dbdc402011-07-22 09:04:31 -070046#include <powermanager/IPowerManager.h>
47
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048namespace android {
49
50class audio_track_cblk_t;
Eric Laurent65b65452010-06-01 23:49:17 -070051class effect_param_cblk_t;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052class AudioMixer;
53class AudioBuffer;
Eric Laurenta553c252009-07-17 12:17:14 -070054class AudioResampler;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056// ----------------------------------------------------------------------------
57
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058static const nsecs_t kStandbyTimeInNsecs = seconds(3);
59
Mathias Agopian24651682010-07-14 18:41:18 -070060class AudioFlinger :
61 public BinderService<AudioFlinger>,
62 public BnAudioFlinger
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063{
Mathias Agopian24651682010-07-14 18:41:18 -070064 friend class BinderService<AudioFlinger>;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065public:
Glenn Kasten99c2fd32012-01-06 07:46:30 -080066 static const char* getServiceName() { return "media.audio_flinger"; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067
68 virtual status_t dump(int fd, const Vector<String16>& args);
69
70 // IAudioFlinger interface
71 virtual sp<IAudioTrack> createTrack(
72 pid_t pid,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -080073 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -080075 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -070076 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 int frameCount,
78 uint32_t flags,
79 const sp<IMemory>& sharedBuffer,
Glenn Kasten39d00cb2012-01-17 11:09:42 -080080 audio_io_handle_t output,
Eric Laurent65b65452010-06-01 23:49:17 -070081 int *sessionId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 status_t *status);
83
Glenn Kasten39d00cb2012-01-17 11:09:42 -080084 virtual uint32_t sampleRate(audio_io_handle_t output) const;
85 virtual int channelCount(audio_io_handle_t output) const;
86 virtual audio_format_t format(audio_io_handle_t output) const;
87 virtual size_t frameCount(audio_io_handle_t output) const;
88 virtual uint32_t latency(audio_io_handle_t output) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089
90 virtual status_t setMasterVolume(float value);
91 virtual status_t setMasterMute(bool muted);
92
93 virtual float masterVolume() const;
94 virtual bool masterMute() const;
95
Glenn Kasten39d00cb2012-01-17 11:09:42 -080096 virtual status_t setStreamVolume(audio_stream_type_t stream, float value,
97 audio_io_handle_t output);
Glenn Kastenbc1d77b2012-01-12 16:38:12 -080098 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800100 virtual float streamVolume(audio_stream_type_t stream,
101 audio_io_handle_t output) const;
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800102 virtual bool streamMute(audio_stream_type_t stream) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103
Glenn Kastenaccb1142012-01-04 11:00:47 -0800104 virtual status_t setMode(audio_mode_t mode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105
106 virtual status_t setMicMute(bool state);
107 virtual bool getMicMute() const;
108
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800109 virtual status_t setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs);
110 virtual String8 getParameters(audio_io_handle_t ioHandle, const String8& keys) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111
112 virtual void registerClient(const sp<IAudioFlingerClient>& client);
Eric Laurenta553c252009-07-17 12:17:14 -0700113
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800114 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount) const;
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800115 virtual unsigned int getInputFramesLost(audio_io_handle_t ioHandle) const;
Eric Laurenta553c252009-07-17 12:17:14 -0700116
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800117 virtual audio_io_handle_t openOutput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -0700118 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800119 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -0700120 uint32_t *pChannels,
121 uint32_t *pLatencyMs,
122 uint32_t flags);
123
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800124 virtual audio_io_handle_t openDuplicateOutput(audio_io_handle_t output1,
125 audio_io_handle_t output2);
Eric Laurenta553c252009-07-17 12:17:14 -0700126
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800127 virtual status_t closeOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700128
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800129 virtual status_t suspendOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700130
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800131 virtual status_t restoreOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700132
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800133 virtual audio_io_handle_t openInput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -0700134 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800135 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -0700136 uint32_t *pChannels,
Glenn Kasten882c0a22012-01-27 12:32:34 -0800137 audio_in_acoustics_t acoustics);
Eric Laurenta553c252009-07-17 12:17:14 -0700138
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800139 virtual status_t closeInput(audio_io_handle_t input);
Eric Laurenta553c252009-07-17 12:17:14 -0700140
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800141 virtual status_t setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700142
Eric Laurent415f3e22009-10-21 08:14:22 -0700143 virtual status_t setVoiceVolume(float volume);
144
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800145 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
146 audio_io_handle_t output) const;
Eric Laurent0986e792010-01-19 17:37:09 -0800147
Eric Laurent65b65452010-06-01 23:49:17 -0700148 virtual int newAudioSessionId();
149
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700150 virtual void acquireAudioSessionId(int audioSession);
151
152 virtual void releaseAudioSessionId(int audioSession);
153
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800154 virtual status_t queryNumberEffects(uint32_t *numEffects) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700155
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800156 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700157
Glenn Kasten67313332012-01-30 07:40:52 -0800158 virtual status_t getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800159 effect_descriptor_t *descriptor) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700160
161 virtual sp<IEffect> createEffect(pid_t pid,
162 effect_descriptor_t *pDesc,
163 const sp<IEffectClient>& effectClient,
164 int32_t priority,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800165 audio_io_handle_t io,
Eric Laurent65b65452010-06-01 23:49:17 -0700166 int sessionId,
167 status_t *status,
168 int *id,
169 int *enabled);
170
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800171 virtual status_t moveEffects(int sessionId, audio_io_handle_t srcOutput,
172 audio_io_handle_t dstOutput);
Eric Laurent53334cd2010-06-23 17:38:20 -0700173
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174 enum hardware_call_state {
175 AUDIO_HW_IDLE = 0,
176 AUDIO_HW_INIT,
177 AUDIO_HW_OUTPUT_OPEN,
178 AUDIO_HW_OUTPUT_CLOSE,
179 AUDIO_HW_INPUT_OPEN,
180 AUDIO_HW_INPUT_CLOSE,
181 AUDIO_HW_STANDBY,
182 AUDIO_HW_SET_MASTER_VOLUME,
183 AUDIO_HW_GET_ROUTING,
184 AUDIO_HW_SET_ROUTING,
185 AUDIO_HW_GET_MODE,
186 AUDIO_HW_SET_MODE,
187 AUDIO_HW_GET_MIC_MUTE,
188 AUDIO_HW_SET_MIC_MUTE,
189 AUDIO_SET_VOICE_VOLUME,
190 AUDIO_SET_PARAMETER,
191 };
192
193 // record interface
194 virtual sp<IAudioRecord> openRecord(
195 pid_t pid,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800196 audio_io_handle_t input,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800198 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700199 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200 int frameCount,
201 uint32_t flags,
Eric Laurent65b65452010-06-01 23:49:17 -0700202 int *sessionId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800203 status_t *status);
204
205 virtual status_t onTransact(
206 uint32_t code,
207 const Parcel& data,
208 Parcel* reply,
209 uint32_t flags);
210
Glenn Kastenaccb1142012-01-04 11:00:47 -0800211 audio_mode_t getMode() const { return mMode; }
Eric Laurent53334cd2010-06-23 17:38:20 -0700212
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800213 bool btNrecIsOff() const { return mBtNrecIsOff; }
Eric Laurent6639b552011-08-01 09:52:20 -0700214
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215private:
Glenn Kasten34f9f8b2012-01-20 17:00:00 -0800216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 AudioFlinger();
218 virtual ~AudioFlinger();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800219
Dima Zavin2986f5b2011-04-19 19:04:32 -0700220 status_t initCheck() const;
221 virtual void onFirstRef();
Dima Zavin31f188892011-04-18 16:57:27 -0700222 audio_hw_device_t* findSuitableHwDev_l(uint32_t devices);
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700223 void purgeStaleEffects_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800224
225 // Internal dump utilites.
226 status_t dumpPermissionDenial(int fd, const Vector<String16>& args);
227 status_t dumpClients(int fd, const Vector<String16>& args);
228 status_t dumpInternals(int fd, const Vector<String16>& args);
229
230 // --- Client ---
231 class Client : public RefBase {
232 public:
233 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
234 virtual ~Client();
Glenn Kasten1f812f72012-01-30 10:15:48 -0800235 sp<MemoryDealer> heap() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236 pid_t pid() const { return mPid; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800237 sp<AudioFlinger> audioFlinger() const { return mAudioFlinger; }
Eric Laurentb9481d82009-09-17 05:12:56 -0700238
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 private:
240 Client(const Client&);
241 Client& operator = (const Client&);
Glenn Kastendc3ac852012-01-25 15:28:08 -0800242 const sp<AudioFlinger> mAudioFlinger;
243 const sp<MemoryDealer> mMemoryDealer;
244 const pid_t mPid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800245 };
246
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700247 // --- Notification Client ---
248 class NotificationClient : public IBinder::DeathRecipient {
249 public:
250 NotificationClient(const sp<AudioFlinger>& audioFlinger,
251 const sp<IAudioFlingerClient>& client,
252 pid_t pid);
253 virtual ~NotificationClient();
254
Glenn Kastendc3ac852012-01-25 15:28:08 -0800255 sp<IAudioFlingerClient> audioFlingerClient() const { return mAudioFlingerClient; }
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700256
257 // IBinder::DeathRecipient
258 virtual void binderDied(const wp<IBinder>& who);
259
260 private:
261 NotificationClient(const NotificationClient&);
262 NotificationClient& operator = (const NotificationClient&);
263
Glenn Kastendc3ac852012-01-25 15:28:08 -0800264 const sp<AudioFlinger> mAudioFlinger;
265 const pid_t mPid;
266 const sp<IAudioFlingerClient> mAudioFlingerClient;
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700267 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268
269 class TrackHandle;
270 class RecordHandle;
Eric Laurenta553c252009-07-17 12:17:14 -0700271 class RecordThread;
272 class PlaybackThread;
273 class MixerThread;
274 class DirectOutputThread;
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800275 class DuplicatingThread;
Eric Laurenta553c252009-07-17 12:17:14 -0700276 class Track;
277 class RecordTrack;
Eric Laurent65b65452010-06-01 23:49:17 -0700278 class EffectModule;
279 class EffectHandle;
280 class EffectChain;
Dima Zavin31f188892011-04-18 16:57:27 -0700281 struct AudioStreamOut;
282 struct AudioStreamIn;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283
Eric Laurenta553c252009-07-17 12:17:14 -0700284 class ThreadBase : public Thread {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 public:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800286
Glenn Kastenefd511a2012-01-26 10:38:26 -0800287 enum type_t {
Eric Laurent464d5b32011-06-17 21:29:58 -0700288 MIXER, // Thread class is MixerThread
289 DIRECT, // Thread class is DirectOutputThread
290 DUPLICATING, // Thread class is DuplicatingThread
291 RECORD // Thread class is RecordThread
292 };
293
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800294 ThreadBase (const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id, uint32_t device, type_t type);
Glenn Kastenefd511a2012-01-26 10:38:26 -0800295 virtual ~ThreadBase();
296
Eric Laurent3fdb1262009-11-07 00:01:32 -0800297 status_t dumpBase(int fd, const Vector<String16>& args);
Eric Laurent1345d332011-07-24 17:49:51 -0700298 status_t dumpEffectChains(int fd, const Vector<String16>& args);
Eric Laurent3fdb1262009-11-07 00:01:32 -0800299
Eric Laurent6dbdc402011-07-22 09:04:31 -0700300 void clearPowerManager();
301
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302 // base for record and playback
303 class TrackBase : public AudioBufferProvider, public RefBase {
304
305 public:
306 enum track_state {
307 IDLE,
308 TERMINATED,
309 STOPPED,
310 RESUMING,
311 ACTIVE,
312 PAUSING,
313 PAUSED
314 };
315
316 enum track_flags {
317 STEPSERVER_FAILED = 0x01, // StepServer could not acquire cblk->lock mutex
318 SYSTEM_FLAGS_MASK = 0x0000ffffUL,
319 // The upper 16 bits are used for track-specific flags.
320 };
321
Eric Laurenta553c252009-07-17 12:17:14 -0700322 TrackBase(const wp<ThreadBase>& thread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800323 const sp<Client>& client,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800324 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800325 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700326 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800327 int frameCount,
328 uint32_t flags,
Eric Laurent65b65452010-06-01 23:49:17 -0700329 const sp<IMemory>& sharedBuffer,
330 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800331 virtual ~TrackBase();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332
333 virtual status_t start() = 0;
334 virtual void stop() = 0;
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800335 sp<IMemory> getCblk() const { return mCblkMemory; }
Eric Laurent6c30a712009-08-10 23:22:32 -0700336 audio_track_cblk_t* cblk() const { return mCblk; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800337 int sessionId() const { return mSessionId; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338
339 protected:
Eric Laurenta553c252009-07-17 12:17:14 -0700340 friend class ThreadBase;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 friend class RecordHandle;
Eric Laurent2c817f52009-07-23 13:17:39 -0700342 friend class PlaybackThread;
343 friend class RecordThread;
344 friend class MixerThread;
345 friend class DirectOutputThread;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346
347 TrackBase(const TrackBase&);
348 TrackBase& operator = (const TrackBase&);
349
350 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer) = 0;
351 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
352
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800353 audio_format_t format() const {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800354 return mFormat;
355 }
356
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800357 int channelCount() const { return mChannelCount; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800359 uint32_t channelMask() const { return mChannelMask; }
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700360
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800361 int sampleRate() const; // FIXME inline after cblk sr moved
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800362
363 void* getBuffer(uint32_t offset, uint32_t frames) const;
364
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 bool isStopped() const {
366 return mState == STOPPED;
367 }
368
369 bool isTerminated() const {
370 return mState == TERMINATED;
371 }
372
373 bool step();
374 void reset();
375
Glenn Kastendc3ac852012-01-25 15:28:08 -0800376 const wp<ThreadBase> mThread;
377 /*const*/ sp<Client> mClient; // see explanation at ~TrackBase() why not const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 sp<IMemory> mCblkMemory;
379 audio_track_cblk_t* mCblk;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800380 void* mBuffer;
381 void* mBufferEnd;
382 uint32_t mFrameCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800383 // we don't really need a lock for these
Glenn Kasten56356202012-01-26 13:39:18 -0800384 track_state mState;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800385 const audio_format_t mFormat;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 uint32_t mFlags;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800387 const int mSessionId;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700388 uint8_t mChannelCount;
389 uint32_t mChannelMask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800390 };
391
Eric Laurenta553c252009-07-17 12:17:14 -0700392 class ConfigEvent {
393 public:
394 ConfigEvent() : mEvent(0), mParam(0) {}
395
396 int mEvent;
397 int mParam;
398 };
399
Eric Laurent6dbdc402011-07-22 09:04:31 -0700400 class PMDeathRecipient : public IBinder::DeathRecipient {
401 public:
402 PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
403 virtual ~PMDeathRecipient() {}
404
405 // IBinder::DeathRecipient
406 virtual void binderDied(const wp<IBinder>& who);
407
408 private:
409 PMDeathRecipient(const PMDeathRecipient&);
410 PMDeathRecipient& operator = (const PMDeathRecipient&);
411
412 wp<ThreadBase> mThread;
413 };
414
Eric Laurent464d5b32011-06-17 21:29:58 -0700415 virtual status_t initCheck() const = 0;
Glenn Kastenefd511a2012-01-26 10:38:26 -0800416 type_t type() const { return mType; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800417 uint32_t sampleRate() const { return mSampleRate; }
418 int channelCount() const { return mChannelCount; }
419 audio_format_t format() const { return mFormat; }
420 size_t frameCount() const { return mFrameCount; }
Eric Laurenta553c252009-07-17 12:17:14 -0700421 void wakeUp() { mWaitWorkCV.broadcast(); }
422 void exit();
423 virtual bool checkForNewParameters_l() = 0;
424 virtual status_t setParameters(const String8& keyValuePairs);
425 virtual String8 getParameters(const String8& keys) = 0;
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700426 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700427 void sendConfigEvent(int event, int param = 0);
Eric Laurent8fce46a2009-08-04 09:45:33 -0700428 void sendConfigEvent_l(int event, int param = 0);
Eric Laurenta553c252009-07-17 12:17:14 -0700429 void processConfigEvents();
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800430 audio_io_handle_t id() const { return mId;}
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800431 bool standby() { return mStandby; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700432 uint32_t device() { return mDevice; }
433 virtual audio_stream_t* stream() = 0;
434
435 sp<EffectHandle> createEffect_l(
436 const sp<AudioFlinger::Client>& client,
437 const sp<IEffectClient>& effectClient,
438 int32_t priority,
439 int sessionId,
440 effect_descriptor_t *desc,
441 int *enabled,
442 status_t *status);
443 void disconnectEffect(const sp< EffectModule>& effect,
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700444 const wp<EffectHandle>& handle,
445 bool unpiniflast);
Eric Laurent464d5b32011-06-17 21:29:58 -0700446
447 // return values for hasAudioSession (bit field)
448 enum effect_state {
449 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
450 // effect
451 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
452 // track
453 };
454
455 // get effect chain corresponding to session Id.
456 sp<EffectChain> getEffectChain(int sessionId);
457 // same as getEffectChain() but must be called with ThreadBase mutex locked
458 sp<EffectChain> getEffectChain_l(int sessionId);
459 // add an effect chain to the chain list (mEffectChains)
460 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
461 // remove an effect chain from the chain list (mEffectChains)
462 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
463 // lock mall effect chains Mutexes. Must be called before releasing the
464 // ThreadBase mutex before processing the mixer and effects. This guarantees the
465 // integrity of the chains during the process.
466 void lockEffectChains_l(Vector<sp <EffectChain> >& effectChains);
467 // unlock effect chains after process
468 void unlockEffectChains(Vector<sp <EffectChain> >& effectChains);
469 // set audio mode to all effect chains
Glenn Kastenaccb1142012-01-04 11:00:47 -0800470 void setMode(audio_mode_t mode);
Eric Laurent464d5b32011-06-17 21:29:58 -0700471 // get effect module with corresponding ID on specified audio session
472 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
473 // add and effect module. Also creates the effect chain is none exists for
474 // the effects audio session
475 status_t addEffect_l(const sp< EffectModule>& effect);
476 // remove and effect module. Also removes the effect chain is this was the last
477 // effect
478 void removeEffect_l(const sp< EffectModule>& effect);
479 // detach all tracks connected to an auxiliary effect
480 virtual void detachAuxEffect_l(int effectId) {}
481 // returns either EFFECT_SESSION if effects on this audio session exist in one
482 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
483 virtual uint32_t hasAudioSession(int sessionId) = 0;
484 // the value returned by default implementation is not important as the
485 // strategy is only meaningful for PlaybackThread which implements this method
486 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
Eric Laurenta553c252009-07-17 12:17:14 -0700487
Eric Laurentf82fccd2011-07-27 19:49:51 -0700488 // suspend or restore effect according to the type of effect passed. a NULL
489 // type pointer means suspend all effects in the session
490 void setEffectSuspended(const effect_uuid_t *type,
491 bool suspend,
492 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
493 // check if some effects must be suspended/restored when an effect is enabled
494 // or disabled
Eric Laurent7fa1cee2011-10-19 11:44:54 -0700495 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurentf82fccd2011-07-27 19:49:51 -0700496 bool enabled,
497 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent7fa1cee2011-10-19 11:44:54 -0700498 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
499 bool enabled,
500 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent2c817f52009-07-23 13:17:39 -0700501 mutable Mutex mLock;
502
Eric Laurenta553c252009-07-17 12:17:14 -0700503 protected:
504
Eric Laurentf82fccd2011-07-27 19:49:51 -0700505 // entry describing an effect being suspended in mSuspendedSessions keyed vector
506 class SuspendedSessionDesc : public RefBase {
507 public:
508 SuspendedSessionDesc() : mRefCount(0) {}
509
510 int mRefCount; // number of active suspend requests
511 effect_uuid_t mType; // effect type UUID
512 };
513
Eric Laurent6dbdc402011-07-22 09:04:31 -0700514 void acquireWakeLock();
515 void acquireWakeLock_l();
516 void releaseWakeLock();
517 void releaseWakeLock_l();
Eric Laurentf82fccd2011-07-27 19:49:51 -0700518 void setEffectSuspended_l(const effect_uuid_t *type,
519 bool suspend,
520 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
521 // updated mSuspendedSessions when an effect suspended or restored
522 void updateSuspendedSessions_l(const effect_uuid_t *type,
523 bool suspend,
524 int sessionId);
525 // check if some effects must be suspended when an effect chain is added
526 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
Eric Laurent6dbdc402011-07-22 09:04:31 -0700527
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700528 friend class AudioFlinger;
Eric Laurenta553c252009-07-17 12:17:14 -0700529 friend class Track;
530 friend class TrackBase;
531 friend class PlaybackThread;
532 friend class MixerThread;
533 friend class DirectOutputThread;
534 friend class DuplicatingThread;
535 friend class RecordThread;
536 friend class RecordTrack;
537
Glenn Kastenefd511a2012-01-26 10:38:26 -0800538 const type_t mType;
Eric Laurenta553c252009-07-17 12:17:14 -0700539 Condition mWaitWorkCV;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800540 const sp<AudioFlinger> mAudioFlinger;
Eric Laurenta553c252009-07-17 12:17:14 -0700541 uint32_t mSampleRate;
542 size_t mFrameCount;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700543 uint32_t mChannelMask;
Eric Laurentb0a01472010-05-14 05:45:46 -0700544 uint16_t mChannelCount;
Glenn Kastenfaf354d2012-01-11 09:48:27 -0800545 size_t mFrameSize;
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800546 audio_format_t mFormat;
Eric Laurenta553c252009-07-17 12:17:14 -0700547 Condition mParamCond;
Eric Laurent8fce46a2009-08-04 09:45:33 -0700548 Vector<String8> mNewParameters;
Eric Laurenta553c252009-07-17 12:17:14 -0700549 status_t mParamStatus;
Glenn Kasten4b220f02011-12-13 11:50:00 -0800550 Vector<ConfigEvent> mConfigEvents;
Eric Laurenta553c252009-07-17 12:17:14 -0700551 bool mStandby;
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800552 const audio_io_handle_t mId;
Eric Laurent49f02be2009-11-19 09:00:56 -0800553 bool mExiting;
Eric Laurent464d5b32011-06-17 21:29:58 -0700554 Vector< sp<EffectChain> > mEffectChains;
555 uint32_t mDevice; // output device for PlaybackThread
556 // input + output devices for RecordThread
Eric Laurent6dbdc402011-07-22 09:04:31 -0700557 static const int kNameLength = 32;
558 char mName[kNameLength];
559 sp<IPowerManager> mPowerManager;
560 sp<IBinder> mWakeLockToken;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800561 const sp<PMDeathRecipient> mDeathRecipient;
Eric Laurentf82fccd2011-07-27 19:49:51 -0700562 // list of suspended effects per session and per type. The first vector is
563 // keyed by session ID, the second by type UUID timeLow field
564 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > > mSuspendedSessions;
Eric Laurenta553c252009-07-17 12:17:14 -0700565 };
566
Glenn Kasten37733342012-02-08 12:36:25 -0800567 struct stream_type_t {
568 stream_type_t()
569 : volume(1.0f),
570 mute(false),
571 valid(true)
572 {
573 }
574 float volume;
575 bool mute;
576 bool valid;
577 };
578
Eric Laurenta553c252009-07-17 12:17:14 -0700579 // --- PlaybackThread ---
580 class PlaybackThread : public ThreadBase {
581 public:
582
Eric Laurent059b4be2009-11-09 23:32:22 -0800583 enum mixer_state {
584 MIXER_IDLE,
585 MIXER_TRACKS_ENABLED,
586 MIXER_TRACKS_READY
587 };
588
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589 // playback track
590 class Track : public TrackBase {
591 public:
Eric Laurenta553c252009-07-17 12:17:14 -0700592 Track( const wp<ThreadBase>& thread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800593 const sp<Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800594 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800595 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800596 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700597 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800598 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -0700599 const sp<IMemory>& sharedBuffer,
600 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800601 virtual ~Track();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800602
603 void dump(char* buffer, size_t size);
604 virtual status_t start();
605 virtual void stop();
606 void pause();
607
608 void flush();
609 void destroy();
610 void mute(bool);
Eric Laurenta553c252009-07-17 12:17:14 -0700611 int name() const {
612 return mName;
613 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800614
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800615 audio_stream_type_t type() const {
Eric Laurent4bc035a2009-05-22 09:18:15 -0700616 return mStreamType;
617 }
Eric Laurent65b65452010-06-01 23:49:17 -0700618 status_t attachAuxEffect(int EffectId);
619 void setAuxBuffer(int EffectId, int32_t *buffer);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800620 int32_t *auxBuffer() const { return mAuxBuffer; }
Eric Laurent65b65452010-06-01 23:49:17 -0700621 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800622 int16_t *mainBuffer() const { return mMainBuffer; }
623 int auxEffectId() const { return mAuxEffectId; }
Eric Laurent4bc035a2009-05-22 09:18:15 -0700624
625
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800626 protected:
Eric Laurenta553c252009-07-17 12:17:14 -0700627 friend class ThreadBase;
Eric Laurent2c817f52009-07-23 13:17:39 -0700628 friend class TrackHandle;
629 friend class PlaybackThread;
630 friend class MixerThread;
631 friend class DirectOutputThread;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800632
633 Track(const Track&);
634 Track& operator = (const Track&);
635
636 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800637 bool isMuted() const { return mMute; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800638 bool isPausing() const {
639 return mState == PAUSING;
640 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800641 bool isPaused() const {
642 return mState == PAUSED;
643 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800644 bool isReady() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800645 void setPaused() { mState = PAUSED; }
646 void reset();
647
Eric Laurent49f02be2009-11-19 09:00:56 -0800648 bool isOutputTrack() const {
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700649 return (mStreamType == AUDIO_STREAM_CNT);
Eric Laurent49f02be2009-11-19 09:00:56 -0800650 }
651
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800652 // we don't really need a lock for these
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800653 volatile bool mMute;
654 // FILLED state is used for suppressing volume ramp at begin of playing
655 enum {FS_FILLING, FS_FILLED, FS_ACTIVE};
656 mutable uint8_t mFillingUpStatus;
657 int8_t mRetryCount;
658 sp<IMemory> mSharedBuffer;
659 bool mResetDone;
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800660 audio_stream_type_t mStreamType;
Eric Laurenta553c252009-07-17 12:17:14 -0700661 int mName;
Eric Laurent65b65452010-06-01 23:49:17 -0700662 int16_t *mMainBuffer;
663 int32_t *mAuxBuffer;
664 int mAuxEffectId;
Eric Laurenta92ebfa2010-08-31 13:50:07 -0700665 bool mHasVolumeController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800666 }; // end of Track
667
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800668
669 // playback track
670 class OutputTrack : public Track {
671 public:
Eric Laurenta553c252009-07-17 12:17:14 -0700672
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800673 class Buffer: public AudioBufferProvider::Buffer {
674 public:
675 int16_t *mBuffer;
676 };
Eric Laurenta553c252009-07-17 12:17:14 -0700677
678 OutputTrack( const wp<ThreadBase>& thread,
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800679 DuplicatingThread *sourceThread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800680 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800681 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700682 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800683 int frameCount);
Glenn Kastenb1631382012-01-30 14:54:39 -0800684 virtual ~OutputTrack();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800685
686 virtual status_t start();
687 virtual void stop();
Eric Laurenta553c252009-07-17 12:17:14 -0700688 bool write(int16_t* data, uint32_t frames);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800689 bool bufferQueueEmpty() const { return (mBufferQueue.size() == 0) ? true : false; }
690 bool isActive() const { return mActive; }
691 const wp<ThreadBase>& thread() const { return mThread; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800692
693 private:
694
Glenn Kasten34f9f8b2012-01-20 17:00:00 -0800695 enum {
696 NO_MORE_BUFFERS = 0x80000001, // same in AudioTrack.h, ok to be different value
697 };
698
Eric Laurenta553c252009-07-17 12:17:14 -0700699 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800700 void clearBufferQueue();
Eric Laurenta553c252009-07-17 12:17:14 -0700701
702 // Maximum number of pending buffers allocated by OutputTrack::write()
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800703 static const uint8_t kMaxOverFlowBuffers = 10;
Eric Laurenta553c252009-07-17 12:17:14 -0700704
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800705 Vector < Buffer* > mBufferQueue;
706 AudioBufferProvider::Buffer mOutBuffer;
Eric Laurenta553c252009-07-17 12:17:14 -0700707 bool mActive;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800708 DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
Eric Laurenta553c252009-07-17 12:17:14 -0700709 }; // end of OutputTrack
710
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800711 PlaybackThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
712 audio_io_handle_t id, uint32_t device, type_t type);
Eric Laurenta553c252009-07-17 12:17:14 -0700713 virtual ~PlaybackThread();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800714
715 virtual status_t dump(int fd, const Vector<String16>& args);
716
717 // Thread virtuals
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800718 virtual status_t readyToRun();
719 virtual void onFirstRef();
720
Glenn Kastenc434c902011-12-13 11:53:26 -0800721 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700722
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800723 virtual uint32_t latency() const;
724
725 virtual status_t setMasterVolume(float value);
726 virtual status_t setMasterMute(bool muted);
727
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800728 virtual float masterVolume() const { return mMasterVolume; }
729 virtual bool masterMute() const { return mMasterMute; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800730
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800731 virtual status_t setStreamVolume(audio_stream_type_t stream, float value);
732 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800733
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800734 virtual float streamVolume(audio_stream_type_t stream) const;
735 virtual bool streamMute(audio_stream_type_t stream) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800736
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700737 sp<Track> createTrack_l(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800738 const sp<AudioFlinger::Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800739 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800740 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800741 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700742 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800743 int frameCount,
744 const sp<IMemory>& sharedBuffer,
Eric Laurent65b65452010-06-01 23:49:17 -0700745 int sessionId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800746 status_t *status);
Eric Laurenta553c252009-07-17 12:17:14 -0700747
Glenn Kasten5b0135e2012-01-26 09:46:34 -0800748 AudioStreamOut* getOutput() const;
Eric Laurent828b9772011-08-07 16:32:26 -0700749 AudioStreamOut* clearOutput();
750 virtual audio_stream_t* stream();
Eric Laurenta553c252009-07-17 12:17:14 -0700751
Eric Laurentd5603c12009-08-06 08:49:39 -0700752 void suspend() { mSuspended++; }
753 void restore() { if (mSuspended) mSuspended--; }
Glenn Kasten1dce8412012-01-04 11:01:11 -0800754 bool isSuspended() const { return (mSuspended != 0); }
Eric Laurenta553c252009-07-17 12:17:14 -0700755 virtual String8 getParameters(const String8& keys);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700756 virtual void audioConfigChanged_l(int event, int param = 0);
Eric Laurent0986e792010-01-19 17:37:09 -0800757 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800758 int16_t *mixBuffer() const { return mMixBuffer; };
Eric Laurent65b65452010-06-01 23:49:17 -0700759
Eric Laurent464d5b32011-06-17 21:29:58 -0700760 virtual void detachAuxEffect_l(int effectId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700761 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
762 int EffectId);
763 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
764 int EffectId);
Eric Laurenta553c252009-07-17 12:17:14 -0700765
Eric Laurent464d5b32011-06-17 21:29:58 -0700766 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
767 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
768 virtual uint32_t hasAudioSession(int sessionId);
769 virtual uint32_t getStrategyForSession_l(int sessionId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700770
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800771 void setStreamValid(audio_stream_type_t streamType, bool valid);
Eric Laurent05ce0942011-08-30 10:18:54 -0700772
Eric Laurent2c817f52009-07-23 13:17:39 -0700773 protected:
Eric Laurent2c817f52009-07-23 13:17:39 -0700774 int16_t* mMixBuffer;
Eric Laurentd5603c12009-08-06 08:49:39 -0700775 int mSuspended;
Eric Laurent2c817f52009-07-23 13:17:39 -0700776 int mBytesWritten;
Glenn Kastene6f8a422011-12-13 11:47:54 -0800777 private:
Eric Laurent2c817f52009-07-23 13:17:39 -0700778 bool mMasterMute;
Glenn Kastene6f8a422011-12-13 11:47:54 -0800779 protected:
Eric Laurent2c817f52009-07-23 13:17:39 -0700780 SortedVector< wp<Track> > mActiveTracks;
781
Eric Laurent62443f52009-10-05 20:29:18 -0700782 virtual int getTrackName_l() = 0;
783 virtual void deleteTrackName_l(int name) = 0;
Eric Laurent44331692011-12-05 09:47:19 -0800784 virtual uint32_t activeSleepTimeUs();
Eric Laurent059b4be2009-11-09 23:32:22 -0800785 virtual uint32_t idleSleepTimeUs() = 0;
Eric Laurent8448a792010-08-18 18:13:17 -0700786 virtual uint32_t suspendSleepTimeUs() = 0;
Eric Laurent62443f52009-10-05 20:29:18 -0700787
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800788 private:
789
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790 friend class AudioFlinger;
Eric Laurent6c30a712009-08-10 23:22:32 -0700791 friend class OutputTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800792 friend class Track;
793 friend class TrackBase;
Eric Laurenta553c252009-07-17 12:17:14 -0700794 friend class MixerThread;
795 friend class DirectOutputThread;
796 friend class DuplicatingThread;
797
798 PlaybackThread(const Client&);
799 PlaybackThread& operator = (const PlaybackThread&);
800
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700801 status_t addTrack_l(const sp<Track>& track);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700802 void destroyTrack_l(const sp<Track>& track);
Eric Laurent90681d62011-05-09 12:09:06 -0700803 void removeTrack_l(const sp<Track>& track);
Eric Laurent62443f52009-10-05 20:29:18 -0700804
Eric Laurenta553c252009-07-17 12:17:14 -0700805 void readOutputParameters();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800806
Eric Laurenta553c252009-07-17 12:17:14 -0700807 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800808 status_t dumpTracks(int fd, const Vector<String16>& args);
Eric Laurenta553c252009-07-17 12:17:14 -0700809
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800810 SortedVector< sp<Track> > mTracks;
Glenn Kasten6e987a42012-01-06 08:40:01 -0800811 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by DuplicatingThread
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700812 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
Glenn Kasten5b0135e2012-01-26 09:46:34 -0800813 AudioStreamOut *mOutput;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800814 float mMasterVolume;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800815 nsecs_t mLastWriteTime;
816 int mNumWrites;
817 int mNumDelayedWrites;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800818 bool mInWrite;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800819 };
820
Eric Laurenta553c252009-07-17 12:17:14 -0700821 class MixerThread : public PlaybackThread {
822 public:
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700823 MixerThread (const sp<AudioFlinger>& audioFlinger,
Dima Zavin31f188892011-04-18 16:57:27 -0700824 AudioStreamOut* output,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800825 audio_io_handle_t id,
Glenn Kastenefd511a2012-01-26 10:38:26 -0800826 uint32_t device,
827 type_t type = MIXER);
Eric Laurenta553c252009-07-17 12:17:14 -0700828 virtual ~MixerThread();
829
830 // Thread virtuals
831 virtual bool threadLoop();
832
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800833 void invalidateTracks(audio_stream_type_t streamType);
Eric Laurenta553c252009-07-17 12:17:14 -0700834 virtual bool checkForNewParameters_l();
835 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
836
837 protected:
Glenn Kasten789fef12012-01-26 13:37:52 -0800838 mixer_state prepareTracks_l(const SortedVector< wp<Track> >& activeTracks,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700839 Vector< sp<Track> > *tracksToRemove);
Eric Laurent62443f52009-10-05 20:29:18 -0700840 virtual int getTrackName_l();
841 virtual void deleteTrackName_l(int name);
Eric Laurent059b4be2009-11-09 23:32:22 -0800842 virtual uint32_t idleSleepTimeUs();
Eric Laurent8448a792010-08-18 18:13:17 -0700843 virtual uint32_t suspendSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -0700844
Eric Laurent71c44962012-01-17 19:20:12 -0800845 AudioMixer* mAudioMixer;
Glenn Kasten789fef12012-01-26 13:37:52 -0800846 mixer_state mPrevMixerStatus; // previous status returned by prepareTracks_l()
Eric Laurenta553c252009-07-17 12:17:14 -0700847 };
848
849 class DirectOutputThread : public PlaybackThread {
850 public:
851
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800852 DirectOutputThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
853 audio_io_handle_t id, uint32_t device);
Glenn Kastenb1631382012-01-30 14:54:39 -0800854 virtual ~DirectOutputThread();
Eric Laurenta553c252009-07-17 12:17:14 -0700855
856 // Thread virtuals
857 virtual bool threadLoop();
858
Eric Laurent62443f52009-10-05 20:29:18 -0700859 virtual bool checkForNewParameters_l();
860
861 protected:
Eric Laurenta553c252009-07-17 12:17:14 -0700862 virtual int getTrackName_l();
863 virtual void deleteTrackName_l(int name);
Eric Laurent059b4be2009-11-09 23:32:22 -0800864 virtual uint32_t activeSleepTimeUs();
865 virtual uint32_t idleSleepTimeUs();
Eric Laurent8448a792010-08-18 18:13:17 -0700866 virtual uint32_t suspendSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -0700867
868 private:
Eric Laurent65b65452010-06-01 23:49:17 -0700869 void applyVolume(uint16_t leftVol, uint16_t rightVol, bool ramp);
870
871 float mLeftVolFloat;
872 float mRightVolFloat;
873 uint16_t mLeftVolShort;
874 uint16_t mRightVolShort;
Eric Laurenta553c252009-07-17 12:17:14 -0700875 };
876
877 class DuplicatingThread : public MixerThread {
878 public:
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800879 DuplicatingThread (const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
880 audio_io_handle_t id);
Glenn Kastenb1631382012-01-30 14:54:39 -0800881 virtual ~DuplicatingThread();
Eric Laurenta553c252009-07-17 12:17:14 -0700882
883 // Thread virtuals
884 virtual bool threadLoop();
885 void addOutputTrack(MixerThread* thread);
886 void removeOutputTrack(MixerThread* thread);
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800887 uint32_t waitTimeMs() { return mWaitTimeMs; }
888 protected:
889 virtual uint32_t activeSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -0700890
891 private:
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800892 bool outputsReady(SortedVector< sp<OutputTrack> > &outputTracks);
893 void updateWaitTime();
894
Eric Laurenta553c252009-07-17 12:17:14 -0700895 SortedVector < sp<OutputTrack> > mOutputTracks;
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800896 uint32_t mWaitTimeMs;
Eric Laurenta553c252009-07-17 12:17:14 -0700897 };
898
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800899 PlaybackThread *checkPlaybackThread_l(audio_io_handle_t output) const;
900 MixerThread *checkMixerThread_l(audio_io_handle_t output) const;
901 RecordThread *checkRecordThread_l(audio_io_handle_t input) const;
902 float streamVolumeInternal(audio_stream_type_t stream) const
903 { return mStreamTypes[stream].volume; }
904 void audioConfigChanged_l(int event, audio_io_handle_t ioHandle, void *param2);
Eric Laurenta553c252009-07-17 12:17:14 -0700905
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800906 // allocate an audio_io_handle_t, session ID, or effect ID
Eric Laurent464d5b32011-06-17 21:29:58 -0700907 uint32_t nextUniqueId();
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800908
Eric Laurentf82fccd2011-07-27 19:49:51 -0700909 status_t moveEffectChain_l(int sessionId,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700910 AudioFlinger::PlaybackThread *srcThread,
Eric Laurent493941b2010-07-28 01:32:47 -0700911 AudioFlinger::PlaybackThread *dstThread,
912 bool reRegister);
Eric Laurent464d5b32011-06-17 21:29:58 -0700913 PlaybackThread *primaryPlaybackThread_l();
914 uint32_t primaryOutputDevice_l();
Eric Laurent65b65452010-06-01 23:49:17 -0700915
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800916 friend class AudioBuffer;
917
918 class TrackHandle : public android::BnAudioTrack {
919 public:
Eric Laurenta553c252009-07-17 12:17:14 -0700920 TrackHandle(const sp<PlaybackThread::Track>& track);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800921 virtual ~TrackHandle();
Glenn Kasten0ae4d972012-01-26 13:40:12 -0800922 virtual sp<IMemory> getCblk() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800923 virtual status_t start();
924 virtual void stop();
925 virtual void flush();
926 virtual void mute(bool);
927 virtual void pause();
Eric Laurent65b65452010-06-01 23:49:17 -0700928 virtual status_t attachAuxEffect(int effectId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800929 virtual status_t onTransact(
930 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
931 private:
Glenn Kastendc3ac852012-01-25 15:28:08 -0800932 const sp<PlaybackThread::Track> mTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800933 };
934
935 friend class Client;
Eric Laurenta553c252009-07-17 12:17:14 -0700936 friend class PlaybackThread::Track;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800937
938
Eric Laurentb9481d82009-09-17 05:12:56 -0700939 void removeClient_l(pid_t pid);
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700940 void removeNotificationClient(pid_t pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800941
942
Eric Laurenta553c252009-07-17 12:17:14 -0700943 // record thread
944 class RecordThread : public ThreadBase, public AudioBufferProvider
945 {
946 public:
947
948 // record track
949 class RecordTrack : public TrackBase {
950 public:
951 RecordTrack(const wp<ThreadBase>& thread,
952 const sp<Client>& client,
953 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800954 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700955 uint32_t channelMask,
Eric Laurenta553c252009-07-17 12:17:14 -0700956 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -0700957 uint32_t flags,
958 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800959 virtual ~RecordTrack();
Eric Laurenta553c252009-07-17 12:17:14 -0700960
961 virtual status_t start();
962 virtual void stop();
963
964 bool overflow() { bool tmp = mOverflow; mOverflow = false; return tmp; }
965 bool setOverflow() { bool tmp = mOverflow; mOverflow = true; return tmp; }
966
Eric Laurent3fdb1262009-11-07 00:01:32 -0800967 void dump(char* buffer, size_t size);
Eric Laurentf82fccd2011-07-27 19:49:51 -0700968
Eric Laurenta553c252009-07-17 12:17:14 -0700969 private:
970 friend class AudioFlinger;
Eric Laurent2c817f52009-07-23 13:17:39 -0700971 friend class RecordThread;
Eric Laurenta553c252009-07-17 12:17:14 -0700972
973 RecordTrack(const RecordTrack&);
974 RecordTrack& operator = (const RecordTrack&);
975
976 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
977
978 bool mOverflow;
979 };
980
981
982 RecordThread(const sp<AudioFlinger>& audioFlinger,
Dima Zavin31f188892011-04-18 16:57:27 -0700983 AudioStreamIn *input,
Eric Laurenta553c252009-07-17 12:17:14 -0700984 uint32_t sampleRate,
Eric Laurent49f02be2009-11-19 09:00:56 -0800985 uint32_t channels,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800986 audio_io_handle_t id,
Eric Laurent464d5b32011-06-17 21:29:58 -0700987 uint32_t device);
Glenn Kastenb1631382012-01-30 14:54:39 -0800988 virtual ~RecordThread();
Eric Laurenta553c252009-07-17 12:17:14 -0700989
990 virtual bool threadLoop();
Eric Laurent828b9772011-08-07 16:32:26 -0700991 virtual status_t readyToRun();
Eric Laurenta553c252009-07-17 12:17:14 -0700992 virtual void onFirstRef();
993
Glenn Kastenc434c902011-12-13 11:53:26 -0800994 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700995 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
996 const sp<AudioFlinger::Client>& client,
997 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800998 audio_format_t format,
Eric Laurent464d5b32011-06-17 21:29:58 -0700999 int channelMask,
1000 int frameCount,
1001 uint32_t flags,
1002 int sessionId,
1003 status_t *status);
1004
Eric Laurenta553c252009-07-17 12:17:14 -07001005 status_t start(RecordTrack* recordTrack);
1006 void stop(RecordTrack* recordTrack);
1007 status_t dump(int fd, const Vector<String16>& args);
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001008 AudioStreamIn* getInput() const;
Eric Laurent828b9772011-08-07 16:32:26 -07001009 AudioStreamIn* clearInput();
1010 virtual audio_stream_t* stream();
Eric Laurenta553c252009-07-17 12:17:14 -07001011
1012 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
1013 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
1014 virtual bool checkForNewParameters_l();
1015 virtual String8 getParameters(const String8& keys);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001016 virtual void audioConfigChanged_l(int event, int param = 0);
Eric Laurenta553c252009-07-17 12:17:14 -07001017 void readInputParameters();
Eric Laurent47d0a922010-02-26 02:47:27 -08001018 virtual unsigned int getInputFramesLost();
Eric Laurenta553c252009-07-17 12:17:14 -07001019
Eric Laurent464d5b32011-06-17 21:29:58 -07001020 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
1021 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
1022 virtual uint32_t hasAudioSession(int sessionId);
Eric Laurent6639b552011-08-01 09:52:20 -07001023 RecordTrack* track();
Eric Laurent464d5b32011-06-17 21:29:58 -07001024
Eric Laurenta553c252009-07-17 12:17:14 -07001025 private:
1026 RecordThread();
Dima Zavin31f188892011-04-18 16:57:27 -07001027 AudioStreamIn *mInput;
Eric Laurent464d5b32011-06-17 21:29:58 -07001028 RecordTrack* mTrack;
Eric Laurenta553c252009-07-17 12:17:14 -07001029 sp<RecordTrack> mActiveTrack;
1030 Condition mStartStopCond;
1031 AudioResampler *mResampler;
1032 int32_t *mRsmpOutBuffer;
1033 int16_t *mRsmpInBuffer;
1034 size_t mRsmpInIndex;
1035 size_t mInputBytes;
Glenn Kastendc3ac852012-01-25 15:28:08 -08001036 const int mReqChannelCount;
1037 const uint32_t mReqSampleRate;
Eric Laurent9cc489a2009-12-05 05:20:01 -08001038 ssize_t mBytesRead;
Eric Laurenta553c252009-07-17 12:17:14 -07001039 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001040
1041 class RecordHandle : public android::BnAudioRecord {
1042 public:
Eric Laurenta553c252009-07-17 12:17:14 -07001043 RecordHandle(const sp<RecordThread::RecordTrack>& recordTrack);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001044 virtual ~RecordHandle();
Glenn Kasten0ae4d972012-01-26 13:40:12 -08001045 virtual sp<IMemory> getCblk() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001046 virtual status_t start();
1047 virtual void stop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001048 virtual status_t onTransact(
1049 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1050 private:
Glenn Kastendc3ac852012-01-25 15:28:08 -08001051 const sp<RecordThread::RecordTrack> mRecordTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001052 };
1053
Eric Laurent65b65452010-06-01 23:49:17 -07001054 //--- Audio Effect Management
1055
1056 // EffectModule and EffectChain classes both have their own mutex to protect
1057 // state changes or resource modifications. Always respect the following order
1058 // if multiple mutexes must be acquired to avoid cross deadlock:
1059 // AudioFlinger -> ThreadBase -> EffectChain -> EffectModule
1060
1061 // The EffectModule class is a wrapper object controlling the effect engine implementation
1062 // in the effect library. It prevents concurrent calls to process() and command() functions
1063 // from different client threads. It keeps a list of EffectHandle objects corresponding
1064 // to all client applications using this effect and notifies applications of effect state,
1065 // control or parameter changes. It manages the activation state machine to send appropriate
1066 // reset, enable, disable commands to effect engine and provide volume
1067 // ramping when effects are activated/deactivated.
1068 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
1069 // the attached track(s) to accumulate their auxiliary channel.
1070 class EffectModule: public RefBase {
1071 public:
1072 EffectModule(const wp<ThreadBase>& wThread,
1073 const wp<AudioFlinger::EffectChain>& chain,
1074 effect_descriptor_t *desc,
1075 int id,
1076 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001077 virtual ~EffectModule();
Eric Laurent65b65452010-06-01 23:49:17 -07001078
1079 enum effect_state {
1080 IDLE,
Eric Laurent7d850f22010-07-09 13:34:17 -07001081 RESTART,
Eric Laurent65b65452010-06-01 23:49:17 -07001082 STARTING,
1083 ACTIVE,
1084 STOPPING,
Eric Laurent21b5c472011-07-26 20:54:46 -07001085 STOPPED,
1086 DESTROYED
Eric Laurent65b65452010-06-01 23:49:17 -07001087 };
1088
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001089 int id() const { return mId; }
Eric Laurent65b65452010-06-01 23:49:17 -07001090 void process();
Eric Laurent7d850f22010-07-09 13:34:17 -07001091 void updateState();
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001092 status_t command(uint32_t cmdCode,
1093 uint32_t cmdSize,
1094 void *pCmdData,
1095 uint32_t *replySize,
1096 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001097
Eric Laurentdf9b81c2010-07-02 08:12:41 -07001098 void reset_l();
Eric Laurent65b65452010-06-01 23:49:17 -07001099 status_t configure();
1100 status_t init();
Glenn Kasten452d6d62012-01-26 13:43:46 -08001101 effect_state state() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001102 return mState;
1103 }
1104 uint32_t status() {
1105 return mStatus;
1106 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001107 int sessionId() const {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001108 return mSessionId;
1109 }
Eric Laurent65b65452010-06-01 23:49:17 -07001110 status_t setEnabled(bool enabled);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001111 bool isEnabled() const;
1112 bool isProcessEnabled() const;
Eric Laurent65b65452010-06-01 23:49:17 -07001113
1114 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
1115 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
1116 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
1117 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001118 void setChain(const wp<EffectChain>& chain) { mChain = chain; }
1119 void setThread(const wp<ThreadBase>& thread) { mThread = thread; }
Glenn Kastendc3ac852012-01-25 15:28:08 -08001120 const wp<ThreadBase>& thread() { return mThread; }
Eric Laurent65b65452010-06-01 23:49:17 -07001121
Glenn Kasten1f812f72012-01-30 10:15:48 -08001122 status_t addHandle(const sp<EffectHandle>& handle);
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001123 void disconnect(const wp<EffectHandle>& handle, bool unpiniflast);
Eric Laurent65b65452010-06-01 23:49:17 -07001124 size_t removeHandle (const wp<EffectHandle>& handle);
1125
1126 effect_descriptor_t& desc() { return mDescriptor; }
Eric Laurent53334cd2010-06-23 17:38:20 -07001127 wp<EffectChain>& chain() { return mChain; }
Eric Laurent65b65452010-06-01 23:49:17 -07001128
1129 status_t setDevice(uint32_t device);
1130 status_t setVolume(uint32_t *left, uint32_t *right, bool controller);
Glenn Kastenaccb1142012-01-04 11:00:47 -08001131 status_t setMode(audio_mode_t mode);
Eric Laurent6fccbd02011-10-05 17:42:25 -07001132 status_t start();
Eric Laurent21b5c472011-07-26 20:54:46 -07001133 status_t stop();
Eric Laurentf82fccd2011-07-27 19:49:51 -07001134 void setSuspended(bool suspended);
Glenn Kasten1dce8412012-01-04 11:01:11 -08001135 bool suspended() const;
Eric Laurentf82fccd2011-07-27 19:49:51 -07001136
1137 sp<EffectHandle> controlHandle();
Eric Laurent65b65452010-06-01 23:49:17 -07001138
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001139 bool isPinned() const { return mPinned; }
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001140 void unPin() { mPinned = false; }
1141
Eric Laurent65b65452010-06-01 23:49:17 -07001142 status_t dump(int fd, const Vector<String16>& args);
1143
1144 protected:
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001145 friend class EffectHandle;
1146 friend class AudioFlinger;
1147 bool mPinned;
Eric Laurent65b65452010-06-01 23:49:17 -07001148
Eric Laurent7d850f22010-07-09 13:34:17 -07001149 // Maximum time allocated to effect engines to complete the turn off sequence
1150 static const uint32_t MAX_DISABLE_TIME_MS = 10000;
1151
Eric Laurent65b65452010-06-01 23:49:17 -07001152 EffectModule(const EffectModule&);
1153 EffectModule& operator = (const EffectModule&);
1154
Eric Laurentdf9b81c2010-07-02 08:12:41 -07001155 status_t start_l();
1156 status_t stop_l();
Eric Laurent65b65452010-06-01 23:49:17 -07001157
Glenn Kasten1dce8412012-01-04 11:01:11 -08001158mutable Mutex mLock; // mutex for process, commands and handles list protection
Eric Laurent65b65452010-06-01 23:49:17 -07001159 wp<ThreadBase> mThread; // parent thread
1160 wp<EffectChain> mChain; // parent effect chain
1161 int mId; // this instance unique ID
1162 int mSessionId; // audio session ID
1163 effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
1164 effect_config_t mConfig; // input and output audio configuration
Eric Laurent0fb66c22011-05-17 19:16:02 -07001165 effect_handle_t mEffectInterface; // Effect module C API
Glenn Kasten452d6d62012-01-26 13:43:46 -08001166 status_t mStatus; // initialization status
1167 effect_state mState; // current activation state
Eric Laurent65b65452010-06-01 23:49:17 -07001168 Vector< wp<EffectHandle> > mHandles; // list of client handles
Eric Laurent7d850f22010-07-09 13:34:17 -07001169 uint32_t mMaxDisableWaitCnt; // maximum grace period before forcing an effect off after
1170 // sending disable command.
1171 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
Eric Laurentf82fccd2011-07-27 19:49:51 -07001172 bool mSuspended; // effect is suspended: temporarily disabled by framework
Eric Laurent65b65452010-06-01 23:49:17 -07001173 };
1174
1175 // The EffectHandle class implements the IEffect interface. It provides resources
1176 // to receive parameter updates, keeps track of effect control
1177 // ownership and state and has a pointer to the EffectModule object it is controlling.
1178 // There is one EffectHandle object for each application controlling (or using)
1179 // an effect module.
1180 // The EffectHandle is obtained by calling AudioFlinger::createEffect().
1181 class EffectHandle: public android::BnEffect {
1182 public:
1183
1184 EffectHandle(const sp<EffectModule>& effect,
1185 const sp<AudioFlinger::Client>& client,
1186 const sp<IEffectClient>& effectClient,
1187 int32_t priority);
1188 virtual ~EffectHandle();
1189
1190 // IEffect
1191 virtual status_t enable();
1192 virtual status_t disable();
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001193 virtual status_t command(uint32_t cmdCode,
1194 uint32_t cmdSize,
1195 void *pCmdData,
1196 uint32_t *replySize,
1197 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001198 virtual void disconnect();
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001199 virtual void disconnect(bool unpiniflast);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001200 virtual sp<IMemory> getCblk() const { return mCblkMemory; }
Eric Laurent65b65452010-06-01 23:49:17 -07001201 virtual status_t onTransact(uint32_t code, const Parcel& data,
1202 Parcel* reply, uint32_t flags);
1203
1204
1205 // Give or take control of effect module
Eric Laurentf82fccd2011-07-27 19:49:51 -07001206 // - hasControl: true if control is given, false if removed
1207 // - signal: true client app should be signaled of change, false otherwise
1208 // - enabled: state of the effect when control is passed
1209 void setControl(bool hasControl, bool signal, bool enabled);
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001210 void commandExecuted(uint32_t cmdCode,
1211 uint32_t cmdSize,
1212 void *pCmdData,
1213 uint32_t replySize,
1214 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001215 void setEnabled(bool enabled);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001216 bool enabled() const { return mEnabled; }
Eric Laurent65b65452010-06-01 23:49:17 -07001217
1218 // Getters
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001219 int id() const { return mEffect->id(); }
1220 int priority() const { return mPriority; }
1221 bool hasControl() const { return mHasControl; }
1222 sp<EffectModule> effect() const { return mEffect; }
Eric Laurent65b65452010-06-01 23:49:17 -07001223
1224 void dump(char* buffer, size_t size);
1225
1226 protected:
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001227 friend class AudioFlinger;
1228 friend class EffectModule;
Eric Laurent65b65452010-06-01 23:49:17 -07001229 EffectHandle(const EffectHandle&);
1230 EffectHandle& operator =(const EffectHandle&);
1231
1232 sp<EffectModule> mEffect; // pointer to controlled EffectModule
1233 sp<IEffectClient> mEffectClient; // callback interface for client notifications
Glenn Kasten803a86a2012-01-25 14:28:29 -08001234 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
Eric Laurent65b65452010-06-01 23:49:17 -07001235 sp<IMemory> mCblkMemory; // shared memory for control block
1236 effect_param_cblk_t* mCblk; // control block for deferred parameter setting via shared memory
1237 uint8_t* mBuffer; // pointer to parameter area in shared memory
1238 int mPriority; // client application priority to control the effect
1239 bool mHasControl; // true if this handle is controlling the effect
Eric Laurentf82fccd2011-07-27 19:49:51 -07001240 bool mEnabled; // cached enable state: needed when the effect is
1241 // restored after being suspended
Eric Laurent65b65452010-06-01 23:49:17 -07001242 };
1243
1244 // the EffectChain class represents a group of effects associated to one audio session.
1245 // There can be any number of EffectChain objects per output mixer thread (PlaybackThread).
1246 // The EffecChain with session ID 0 contains global effects applied to the output mix.
1247 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to tracks)
1248 // are insert only. The EffectChain maintains an ordered list of effect module, the order corresponding
1249 // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
1250 // input buffer used by the track as accumulation buffer.
1251 class EffectChain: public RefBase {
1252 public:
1253 EffectChain(const wp<ThreadBase>& wThread, int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001254 virtual ~EffectChain();
Eric Laurent65b65452010-06-01 23:49:17 -07001255
Eric Laurentf82fccd2011-07-27 19:49:51 -07001256 // special key used for an entry in mSuspendedEffects keyed vector
1257 // corresponding to a suspend all request.
1258 static const int kKeyForSuspendAll = 0;
1259
Eric Laurentf9c361d2011-11-11 15:42:52 -08001260 // minimum duration during which we force calling effect process when last track on
1261 // a session is stopped or removed to allow effect tail to be rendered
1262 static const int kProcessTailDurationMs = 1000;
1263
Eric Laurent65b65452010-06-01 23:49:17 -07001264 void process_l();
1265
1266 void lock() {
1267 mLock.lock();
1268 }
1269 void unlock() {
1270 mLock.unlock();
1271 }
1272
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001273 status_t addEffect_l(const sp<EffectModule>& handle);
Eric Laurent76c40f72010-07-15 12:50:15 -07001274 size_t removeEffect_l(const sp<EffectModule>& handle);
Eric Laurent65b65452010-06-01 23:49:17 -07001275
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001276 int sessionId() const { return mSessionId; }
Eric Laurent464d5b32011-06-17 21:29:58 -07001277 void setSessionId(int sessionId) { mSessionId = sessionId; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001278
Eric Laurent76c40f72010-07-15 12:50:15 -07001279 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1280 sp<EffectModule> getEffectFromId_l(int id);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001281 sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type);
Eric Laurent76c40f72010-07-15 12:50:15 -07001282 bool setVolume_l(uint32_t *left, uint32_t *right);
1283 void setDevice_l(uint32_t device);
Glenn Kastenaccb1142012-01-04 11:00:47 -08001284 void setMode_l(audio_mode_t mode);
Eric Laurent53334cd2010-06-23 17:38:20 -07001285
Eric Laurent65b65452010-06-01 23:49:17 -07001286 void setInBuffer(int16_t *buffer, bool ownsBuffer = false) {
1287 mInBuffer = buffer;
1288 mOwnInBuffer = ownsBuffer;
1289 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001290 int16_t *inBuffer() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001291 return mInBuffer;
1292 }
1293 void setOutBuffer(int16_t *buffer) {
1294 mOutBuffer = buffer;
1295 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001296 int16_t *outBuffer() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001297 return mOutBuffer;
1298 }
1299
Eric Laurent90681d62011-05-09 12:09:06 -07001300 void incTrackCnt() { android_atomic_inc(&mTrackCnt); }
1301 void decTrackCnt() { android_atomic_dec(&mTrackCnt); }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001302 int32_t trackCnt() const { return mTrackCnt;}
Eric Laurent90681d62011-05-09 12:09:06 -07001303
Eric Laurentf9c361d2011-11-11 15:42:52 -08001304 void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt);
1305 mTailBufferCount = mMaxTailBuffers; }
Eric Laurent90681d62011-05-09 12:09:06 -07001306 void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001307 int32_t activeTrackCnt() const { return mActiveTrackCnt;}
Eric Laurent65b65452010-06-01 23:49:17 -07001308
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001309 uint32_t strategy() const { return mStrategy; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001310 void setStrategy(uint32_t strategy)
1311 { mStrategy = strategy; }
1312
Eric Laurentf82fccd2011-07-27 19:49:51 -07001313 // suspend effect of the given type
1314 void setEffectSuspended_l(const effect_uuid_t *type,
1315 bool suspend);
1316 // suspend all eligible effects
1317 void setEffectSuspendedAll_l(bool suspend);
1318 // check if effects should be suspend or restored when a given effect is enable or disabled
Eric Laurent7fa1cee2011-10-19 11:44:54 -07001319 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurentf82fccd2011-07-27 19:49:51 -07001320 bool enabled);
1321
Eric Laurent65b65452010-06-01 23:49:17 -07001322 status_t dump(int fd, const Vector<String16>& args);
1323
1324 protected:
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001325 friend class AudioFlinger;
Eric Laurent65b65452010-06-01 23:49:17 -07001326 EffectChain(const EffectChain&);
1327 EffectChain& operator =(const EffectChain&);
1328
Eric Laurentf82fccd2011-07-27 19:49:51 -07001329 class SuspendedEffectDesc : public RefBase {
1330 public:
1331 SuspendedEffectDesc() : mRefCount(0) {}
1332
1333 int mRefCount;
1334 effect_uuid_t mType;
1335 wp<EffectModule> mEffect;
1336 };
1337
1338 // get a list of effect modules to suspend when an effect of the type
1339 // passed is enabled.
Glenn Kasten97040262012-01-30 12:56:03 -08001340 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects);
1341
Eric Laurentf82fccd2011-07-27 19:49:51 -07001342 // get an effect module if it is currently enable
1343 sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type);
Eric Laurent6752ec82011-08-10 10:37:50 -07001344 // true if the effect whose descriptor is passed can be suspended
1345 // OEMs can modify the rules implemented in this method to exclude specific effect
1346 // types or implementations from the suspend/restore mechanism.
1347 bool isEffectEligibleForSuspend(const effect_descriptor_t& desc);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001348
Eric Laurent65b65452010-06-01 23:49:17 -07001349 wp<ThreadBase> mThread; // parent mixer thread
1350 Mutex mLock; // mutex protecting effect list
1351 Vector<sp<EffectModule> > mEffects; // list of effect modules
1352 int mSessionId; // audio session ID
1353 int16_t *mInBuffer; // chain input buffer
1354 int16_t *mOutBuffer; // chain output buffer
Eric Laurent90681d62011-05-09 12:09:06 -07001355 volatile int32_t mActiveTrackCnt; // number of active tracks connected
1356 volatile int32_t mTrackCnt; // number of tracks connected
Eric Laurentf9c361d2011-11-11 15:42:52 -08001357 int32_t mTailBufferCount; // current effect tail buffer count
1358 int32_t mMaxTailBuffers; // maximum effect tail buffers
Eric Laurent65b65452010-06-01 23:49:17 -07001359 bool mOwnInBuffer; // true if the chain owns its input buffer
Eric Laurent76c40f72010-07-15 12:50:15 -07001360 int mVolumeCtrlIdx; // index of insert effect having control over volume
1361 uint32_t mLeftVolume; // previous volume on left channel
1362 uint32_t mRightVolume; // previous volume on right channel
Eric Laurent0d7e0482010-07-19 06:24:46 -07001363 uint32_t mNewLeftVolume; // new volume on left channel
1364 uint32_t mNewRightVolume; // new volume on right channel
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001365 uint32_t mStrategy; // strategy for this effect chain
Eric Laurentf82fccd2011-07-27 19:49:51 -07001366 // mSuspendedEffects lists all effect currently suspended in the chain
1367 // use effect type UUID timelow field as key. There is no real risk of identical
1368 // timeLow fields among effect type UUIDs.
1369 KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
Eric Laurent65b65452010-06-01 23:49:17 -07001370 };
1371
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001372 // AudioStreamOut and AudioStreamIn are immutable, so their fields are const.
1373 // For emphasis, we could also make all pointers to them be "const *",
1374 // but that would clutter the code unnecessarily.
1375
Dima Zavin31f188892011-04-18 16:57:27 -07001376 struct AudioStreamOut {
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001377 audio_hw_device_t* const hwDev;
1378 audio_stream_out_t* const stream;
Dima Zavin31f188892011-04-18 16:57:27 -07001379
1380 AudioStreamOut(audio_hw_device_t *dev, audio_stream_out_t *out) :
1381 hwDev(dev), stream(out) {}
1382 };
1383
1384 struct AudioStreamIn {
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001385 audio_hw_device_t* const hwDev;
1386 audio_stream_in_t* const stream;
Dima Zavin31f188892011-04-18 16:57:27 -07001387
1388 AudioStreamIn(audio_hw_device_t *dev, audio_stream_in_t *in) :
1389 hwDev(dev), stream(in) {}
1390 };
1391
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001392 struct AudioSessionRef {
Glenn Kastendc3ac852012-01-25 15:28:08 -08001393 // FIXME rename parameter names when fields get "m" prefix
1394 AudioSessionRef(int sessionid_, pid_t pid_) :
1395 sessionid(sessionid_), pid(pid_), cnt(1) {}
1396 const int sessionid;
1397 const pid_t pid;
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001398 int cnt;
1399 };
1400
Eric Laurenta553c252009-07-17 12:17:14 -07001401 friend class RecordThread;
1402 friend class PlaybackThread;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001403
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001404 mutable Mutex mLock;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001405
Glenn Kasten803a86a2012-01-25 14:28:29 -08001406 DefaultKeyedVector< pid_t, wp<Client> > mClients; // see ~Client()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001407
Eric Laurenta553c252009-07-17 12:17:14 -07001408 mutable Mutex mHardwareLock;
Dima Zavin31f188892011-04-18 16:57:27 -07001409 audio_hw_device_t* mPrimaryHardwareDev;
1410 Vector<audio_hw_device_t*> mAudioHwDevs;
Glenn Kastena934c2c2012-01-04 11:02:33 -08001411 mutable hardware_call_state mHardwareStatus; // for dump only
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001412
Eric Laurenta553c252009-07-17 12:17:14 -07001413
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001414 DefaultKeyedVector< audio_io_handle_t, sp<PlaybackThread> > mPlaybackThreads;
Glenn Kasten37733342012-02-08 12:36:25 -08001415 stream_type_t mStreamTypes[AUDIO_STREAM_CNT];
Glenn Kastene6f8a422011-12-13 11:47:54 -08001416
1417 // both are protected by mLock
Eric Laurenta553c252009-07-17 12:17:14 -07001418 float mMasterVolume;
1419 bool mMasterMute;
1420
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001421 DefaultKeyedVector< audio_io_handle_t, sp<RecordThread> > mRecordThreads;
Eric Laurenta553c252009-07-17 12:17:14 -07001422
Eric Laurent4f0f17d2010-05-12 02:05:53 -07001423 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
Eric Laurent65b65452010-06-01 23:49:17 -07001424 volatile int32_t mNextUniqueId;
Glenn Kastenaccb1142012-01-04 11:00:47 -08001425 audio_mode_t mMode;
Eric Laurent2d95dfb2011-08-29 12:42:48 -07001426 bool mBtNrecIsOff;
Eric Laurent53334cd2010-06-23 17:38:20 -07001427
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001428 Vector<AudioSessionRef*> mAudioSessionRefs;
Glenn Kastene6f8a422011-12-13 11:47:54 -08001429
1430 float masterVolume_l() const { return mMasterVolume; }
1431 bool masterMute_l() const { return mMasterMute; }
Glenn Kasten803a86a2012-01-25 14:28:29 -08001432
1433private:
1434 sp<Client> registerPid_l(pid_t pid); // always returns non-0
1435
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001436};
1437
Dima Zavin31f188892011-04-18 16:57:27 -07001438
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001439// ----------------------------------------------------------------------------
1440
1441}; // namespace android
1442
1443#endif // ANDROID_AUDIO_FLINGER_H