blob: 23cb9244f971c5ee32657d84f4b1da1e1fbdcd75 [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(); }
Glenn Kasten761286f2012-01-06 08:39:38 -0800422 // Should be "virtual status_t requestExitAndWait()" and override same
423 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
Eric Laurenta553c252009-07-17 12:17:14 -0700424 void exit();
425 virtual bool checkForNewParameters_l() = 0;
426 virtual status_t setParameters(const String8& keyValuePairs);
427 virtual String8 getParameters(const String8& keys) = 0;
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700428 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700429 void sendConfigEvent(int event, int param = 0);
Eric Laurent8fce46a2009-08-04 09:45:33 -0700430 void sendConfigEvent_l(int event, int param = 0);
Eric Laurenta553c252009-07-17 12:17:14 -0700431 void processConfigEvents();
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800432 audio_io_handle_t id() const { return mId;}
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800433 bool standby() { return mStandby; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700434 uint32_t device() { return mDevice; }
435 virtual audio_stream_t* stream() = 0;
436
437 sp<EffectHandle> createEffect_l(
438 const sp<AudioFlinger::Client>& client,
439 const sp<IEffectClient>& effectClient,
440 int32_t priority,
441 int sessionId,
442 effect_descriptor_t *desc,
443 int *enabled,
444 status_t *status);
445 void disconnectEffect(const sp< EffectModule>& effect,
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700446 const wp<EffectHandle>& handle,
447 bool unpiniflast);
Eric Laurent464d5b32011-06-17 21:29:58 -0700448
449 // return values for hasAudioSession (bit field)
450 enum effect_state {
451 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
452 // effect
453 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
454 // track
455 };
456
457 // get effect chain corresponding to session Id.
458 sp<EffectChain> getEffectChain(int sessionId);
459 // same as getEffectChain() but must be called with ThreadBase mutex locked
460 sp<EffectChain> getEffectChain_l(int sessionId);
461 // add an effect chain to the chain list (mEffectChains)
462 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
463 // remove an effect chain from the chain list (mEffectChains)
464 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
465 // lock mall effect chains Mutexes. Must be called before releasing the
466 // ThreadBase mutex before processing the mixer and effects. This guarantees the
467 // integrity of the chains during the process.
468 void lockEffectChains_l(Vector<sp <EffectChain> >& effectChains);
469 // unlock effect chains after process
470 void unlockEffectChains(Vector<sp <EffectChain> >& effectChains);
471 // set audio mode to all effect chains
Glenn Kastenaccb1142012-01-04 11:00:47 -0800472 void setMode(audio_mode_t mode);
Eric Laurent464d5b32011-06-17 21:29:58 -0700473 // get effect module with corresponding ID on specified audio session
474 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
475 // add and effect module. Also creates the effect chain is none exists for
476 // the effects audio session
477 status_t addEffect_l(const sp< EffectModule>& effect);
478 // remove and effect module. Also removes the effect chain is this was the last
479 // effect
480 void removeEffect_l(const sp< EffectModule>& effect);
481 // detach all tracks connected to an auxiliary effect
482 virtual void detachAuxEffect_l(int effectId) {}
483 // returns either EFFECT_SESSION if effects on this audio session exist in one
484 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
485 virtual uint32_t hasAudioSession(int sessionId) = 0;
486 // the value returned by default implementation is not important as the
487 // strategy is only meaningful for PlaybackThread which implements this method
488 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
Eric Laurenta553c252009-07-17 12:17:14 -0700489
Eric Laurentf82fccd2011-07-27 19:49:51 -0700490 // suspend or restore effect according to the type of effect passed. a NULL
491 // type pointer means suspend all effects in the session
492 void setEffectSuspended(const effect_uuid_t *type,
493 bool suspend,
494 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
495 // check if some effects must be suspended/restored when an effect is enabled
496 // or disabled
Eric Laurent7fa1cee2011-10-19 11:44:54 -0700497 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurentf82fccd2011-07-27 19:49:51 -0700498 bool enabled,
499 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent7fa1cee2011-10-19 11:44:54 -0700500 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
501 bool enabled,
502 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent2c817f52009-07-23 13:17:39 -0700503 mutable Mutex mLock;
504
Eric Laurenta553c252009-07-17 12:17:14 -0700505 protected:
506
Eric Laurentf82fccd2011-07-27 19:49:51 -0700507 // entry describing an effect being suspended in mSuspendedSessions keyed vector
508 class SuspendedSessionDesc : public RefBase {
509 public:
510 SuspendedSessionDesc() : mRefCount(0) {}
511
512 int mRefCount; // number of active suspend requests
513 effect_uuid_t mType; // effect type UUID
514 };
515
Eric Laurent6dbdc402011-07-22 09:04:31 -0700516 void acquireWakeLock();
517 void acquireWakeLock_l();
518 void releaseWakeLock();
519 void releaseWakeLock_l();
Eric Laurentf82fccd2011-07-27 19:49:51 -0700520 void setEffectSuspended_l(const effect_uuid_t *type,
521 bool suspend,
522 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
523 // updated mSuspendedSessions when an effect suspended or restored
524 void updateSuspendedSessions_l(const effect_uuid_t *type,
525 bool suspend,
526 int sessionId);
527 // check if some effects must be suspended when an effect chain is added
528 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
Eric Laurent6dbdc402011-07-22 09:04:31 -0700529
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700530 friend class AudioFlinger;
Eric Laurenta553c252009-07-17 12:17:14 -0700531 friend class Track;
532 friend class TrackBase;
533 friend class PlaybackThread;
534 friend class MixerThread;
535 friend class DirectOutputThread;
536 friend class DuplicatingThread;
537 friend class RecordThread;
538 friend class RecordTrack;
539
Glenn Kastenefd511a2012-01-26 10:38:26 -0800540 const type_t mType;
Eric Laurenta553c252009-07-17 12:17:14 -0700541 Condition mWaitWorkCV;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800542 const sp<AudioFlinger> mAudioFlinger;
Eric Laurenta553c252009-07-17 12:17:14 -0700543 uint32_t mSampleRate;
544 size_t mFrameCount;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700545 uint32_t mChannelMask;
Eric Laurentb0a01472010-05-14 05:45:46 -0700546 uint16_t mChannelCount;
Glenn Kastenfaf354d2012-01-11 09:48:27 -0800547 size_t mFrameSize;
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800548 audio_format_t mFormat;
Eric Laurenta553c252009-07-17 12:17:14 -0700549 Condition mParamCond;
Eric Laurent8fce46a2009-08-04 09:45:33 -0700550 Vector<String8> mNewParameters;
Eric Laurenta553c252009-07-17 12:17:14 -0700551 status_t mParamStatus;
Glenn Kasten4b220f02011-12-13 11:50:00 -0800552 Vector<ConfigEvent> mConfigEvents;
Eric Laurenta553c252009-07-17 12:17:14 -0700553 bool mStandby;
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800554 const audio_io_handle_t mId;
Eric Laurent464d5b32011-06-17 21:29:58 -0700555 Vector< sp<EffectChain> > mEffectChains;
556 uint32_t mDevice; // output device for PlaybackThread
557 // input + output devices for RecordThread
Eric Laurent6dbdc402011-07-22 09:04:31 -0700558 static const int kNameLength = 32;
559 char mName[kNameLength];
560 sp<IPowerManager> mPowerManager;
561 sp<IBinder> mWakeLockToken;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800562 const sp<PMDeathRecipient> mDeathRecipient;
Eric Laurentf82fccd2011-07-27 19:49:51 -0700563 // list of suspended effects per session and per type. The first vector is
564 // keyed by session ID, the second by type UUID timeLow field
565 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > > mSuspendedSessions;
Eric Laurenta553c252009-07-17 12:17:14 -0700566 };
567
568 // --- PlaybackThread ---
569 class PlaybackThread : public ThreadBase {
570 public:
571
Eric Laurent059b4be2009-11-09 23:32:22 -0800572 enum mixer_state {
573 MIXER_IDLE,
574 MIXER_TRACKS_ENABLED,
575 MIXER_TRACKS_READY
576 };
577
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578 // playback track
579 class Track : public TrackBase {
580 public:
Eric Laurenta553c252009-07-17 12:17:14 -0700581 Track( const wp<ThreadBase>& thread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800582 const sp<Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800583 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800584 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800585 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700586 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -0700588 const sp<IMemory>& sharedBuffer,
589 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800590 virtual ~Track();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800591
592 void dump(char* buffer, size_t size);
593 virtual status_t start();
594 virtual void stop();
595 void pause();
596
597 void flush();
598 void destroy();
599 void mute(bool);
Eric Laurenta553c252009-07-17 12:17:14 -0700600 int name() const {
601 return mName;
602 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800603
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800604 audio_stream_type_t type() const {
Eric Laurent4bc035a2009-05-22 09:18:15 -0700605 return mStreamType;
606 }
Eric Laurent65b65452010-06-01 23:49:17 -0700607 status_t attachAuxEffect(int EffectId);
608 void setAuxBuffer(int EffectId, int32_t *buffer);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800609 int32_t *auxBuffer() const { return mAuxBuffer; }
Eric Laurent65b65452010-06-01 23:49:17 -0700610 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800611 int16_t *mainBuffer() const { return mMainBuffer; }
612 int auxEffectId() const { return mAuxEffectId; }
Eric Laurent4bc035a2009-05-22 09:18:15 -0700613
614
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800615 protected:
Eric Laurenta553c252009-07-17 12:17:14 -0700616 friend class ThreadBase;
Eric Laurent2c817f52009-07-23 13:17:39 -0700617 friend class TrackHandle;
618 friend class PlaybackThread;
619 friend class MixerThread;
620 friend class DirectOutputThread;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800621
622 Track(const Track&);
623 Track& operator = (const Track&);
624
625 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800626 bool isMuted() const { return mMute; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800627 bool isPausing() const {
628 return mState == PAUSING;
629 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800630 bool isPaused() const {
631 return mState == PAUSED;
632 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800633 bool isReady() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800634 void setPaused() { mState = PAUSED; }
635 void reset();
636
Eric Laurent49f02be2009-11-19 09:00:56 -0800637 bool isOutputTrack() const {
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700638 return (mStreamType == AUDIO_STREAM_CNT);
Eric Laurent49f02be2009-11-19 09:00:56 -0800639 }
640
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800641 // we don't really need a lock for these
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800642 volatile bool mMute;
643 // FILLED state is used for suppressing volume ramp at begin of playing
644 enum {FS_FILLING, FS_FILLED, FS_ACTIVE};
645 mutable uint8_t mFillingUpStatus;
646 int8_t mRetryCount;
647 sp<IMemory> mSharedBuffer;
648 bool mResetDone;
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800649 audio_stream_type_t mStreamType;
Eric Laurenta553c252009-07-17 12:17:14 -0700650 int mName;
Eric Laurent65b65452010-06-01 23:49:17 -0700651 int16_t *mMainBuffer;
652 int32_t *mAuxBuffer;
653 int mAuxEffectId;
Eric Laurenta92ebfa2010-08-31 13:50:07 -0700654 bool mHasVolumeController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800655 }; // end of Track
656
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800657
658 // playback track
659 class OutputTrack : public Track {
660 public:
Eric Laurenta553c252009-07-17 12:17:14 -0700661
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800662 class Buffer: public AudioBufferProvider::Buffer {
663 public:
664 int16_t *mBuffer;
665 };
Eric Laurenta553c252009-07-17 12:17:14 -0700666
667 OutputTrack( const wp<ThreadBase>& thread,
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800668 DuplicatingThread *sourceThread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800669 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800670 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700671 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800672 int frameCount);
Glenn Kastenb1631382012-01-30 14:54:39 -0800673 virtual ~OutputTrack();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800674
675 virtual status_t start();
676 virtual void stop();
Eric Laurenta553c252009-07-17 12:17:14 -0700677 bool write(int16_t* data, uint32_t frames);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800678 bool bufferQueueEmpty() const { return (mBufferQueue.size() == 0) ? true : false; }
679 bool isActive() const { return mActive; }
680 const wp<ThreadBase>& thread() const { return mThread; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800681
682 private:
683
Glenn Kasten34f9f8b2012-01-20 17:00:00 -0800684 enum {
685 NO_MORE_BUFFERS = 0x80000001, // same in AudioTrack.h, ok to be different value
686 };
687
Eric Laurenta553c252009-07-17 12:17:14 -0700688 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800689 void clearBufferQueue();
Eric Laurenta553c252009-07-17 12:17:14 -0700690
691 // Maximum number of pending buffers allocated by OutputTrack::write()
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800692 static const uint8_t kMaxOverFlowBuffers = 10;
Eric Laurenta553c252009-07-17 12:17:14 -0700693
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800694 Vector < Buffer* > mBufferQueue;
695 AudioBufferProvider::Buffer mOutBuffer;
Eric Laurenta553c252009-07-17 12:17:14 -0700696 bool mActive;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800697 DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
Eric Laurenta553c252009-07-17 12:17:14 -0700698 }; // end of OutputTrack
699
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800700 PlaybackThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
701 audio_io_handle_t id, uint32_t device, type_t type);
Eric Laurenta553c252009-07-17 12:17:14 -0700702 virtual ~PlaybackThread();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800703
704 virtual status_t dump(int fd, const Vector<String16>& args);
705
706 // Thread virtuals
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800707 virtual status_t readyToRun();
708 virtual void onFirstRef();
709
Glenn Kastenc434c902011-12-13 11:53:26 -0800710 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700711
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800712 virtual uint32_t latency() const;
713
714 virtual status_t setMasterVolume(float value);
715 virtual status_t setMasterMute(bool muted);
716
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800717 virtual float masterVolume() const { return mMasterVolume; }
718 virtual bool masterMute() const { return mMasterMute; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800719
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800720 virtual status_t setStreamVolume(audio_stream_type_t stream, float value);
721 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800722
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800723 virtual float streamVolume(audio_stream_type_t stream) const;
724 virtual bool streamMute(audio_stream_type_t stream) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800725
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700726 sp<Track> createTrack_l(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800727 const sp<AudioFlinger::Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800728 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800729 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800730 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700731 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800732 int frameCount,
733 const sp<IMemory>& sharedBuffer,
Eric Laurent65b65452010-06-01 23:49:17 -0700734 int sessionId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800735 status_t *status);
Eric Laurenta553c252009-07-17 12:17:14 -0700736
Glenn Kasten5b0135e2012-01-26 09:46:34 -0800737 AudioStreamOut* getOutput() const;
Eric Laurent828b9772011-08-07 16:32:26 -0700738 AudioStreamOut* clearOutput();
739 virtual audio_stream_t* stream();
Eric Laurenta553c252009-07-17 12:17:14 -0700740
Eric Laurentd5603c12009-08-06 08:49:39 -0700741 void suspend() { mSuspended++; }
742 void restore() { if (mSuspended) mSuspended--; }
Glenn Kasten1dce8412012-01-04 11:01:11 -0800743 bool isSuspended() const { return (mSuspended != 0); }
Eric Laurenta553c252009-07-17 12:17:14 -0700744 virtual String8 getParameters(const String8& keys);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700745 virtual void audioConfigChanged_l(int event, int param = 0);
Eric Laurent0986e792010-01-19 17:37:09 -0800746 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800747 int16_t *mixBuffer() const { return mMixBuffer; };
Eric Laurent65b65452010-06-01 23:49:17 -0700748
Eric Laurent464d5b32011-06-17 21:29:58 -0700749 virtual void detachAuxEffect_l(int effectId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700750 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
751 int EffectId);
752 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
753 int EffectId);
Eric Laurenta553c252009-07-17 12:17:14 -0700754
Eric Laurent464d5b32011-06-17 21:29:58 -0700755 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
756 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
757 virtual uint32_t hasAudioSession(int sessionId);
758 virtual uint32_t getStrategyForSession_l(int sessionId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700759
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800760 void setStreamValid(audio_stream_type_t streamType, bool valid);
Eric Laurent05ce0942011-08-30 10:18:54 -0700761
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800762 struct stream_type_t {
763 stream_type_t()
764 : volume(1.0f),
Eric Laurent05ce0942011-08-30 10:18:54 -0700765 mute(false),
766 valid(true)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800767 {
768 }
769 float volume;
770 bool mute;
Eric Laurent05ce0942011-08-30 10:18:54 -0700771 bool valid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800772 };
773
Eric Laurent2c817f52009-07-23 13:17:39 -0700774 protected:
Eric Laurent2c817f52009-07-23 13:17:39 -0700775 int16_t* mMixBuffer;
Eric Laurentd5603c12009-08-06 08:49:39 -0700776 int mSuspended;
Eric Laurent2c817f52009-07-23 13:17:39 -0700777 int mBytesWritten;
Glenn Kastene6f8a422011-12-13 11:47:54 -0800778 private:
Eric Laurent2c817f52009-07-23 13:17:39 -0700779 bool mMasterMute;
Glenn Kastene6f8a422011-12-13 11:47:54 -0800780 protected:
Eric Laurent2c817f52009-07-23 13:17:39 -0700781 SortedVector< wp<Track> > mActiveTracks;
782
Eric Laurent62443f52009-10-05 20:29:18 -0700783 virtual int getTrackName_l() = 0;
784 virtual void deleteTrackName_l(int name) = 0;
Eric Laurent44331692011-12-05 09:47:19 -0800785 virtual uint32_t activeSleepTimeUs();
Eric Laurent059b4be2009-11-09 23:32:22 -0800786 virtual uint32_t idleSleepTimeUs() = 0;
Eric Laurent8448a792010-08-18 18:13:17 -0700787 virtual uint32_t suspendSleepTimeUs() = 0;
Eric Laurent62443f52009-10-05 20:29:18 -0700788
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800789 private:
790
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800791 friend class AudioFlinger;
Eric Laurent6c30a712009-08-10 23:22:32 -0700792 friend class OutputTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800793 friend class Track;
794 friend class TrackBase;
Eric Laurenta553c252009-07-17 12:17:14 -0700795 friend class MixerThread;
796 friend class DirectOutputThread;
797 friend class DuplicatingThread;
798
799 PlaybackThread(const Client&);
800 PlaybackThread& operator = (const PlaybackThread&);
801
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700802 status_t addTrack_l(const sp<Track>& track);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700803 void destroyTrack_l(const sp<Track>& track);
Eric Laurent90681d62011-05-09 12:09:06 -0700804 void removeTrack_l(const sp<Track>& track);
Eric Laurent62443f52009-10-05 20:29:18 -0700805
Eric Laurenta553c252009-07-17 12:17:14 -0700806 void readOutputParameters();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800807
Eric Laurenta553c252009-07-17 12:17:14 -0700808 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 status_t dumpTracks(int fd, const Vector<String16>& args);
Eric Laurenta553c252009-07-17 12:17:14 -0700810
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800811 SortedVector< sp<Track> > mTracks;
Glenn Kasten6e987a42012-01-06 08:40:01 -0800812 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by DuplicatingThread
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700813 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
Glenn Kasten5b0135e2012-01-26 09:46:34 -0800814 AudioStreamOut *mOutput;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800815 float mMasterVolume;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800816 nsecs_t mLastWriteTime;
817 int mNumWrites;
818 int mNumDelayedWrites;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800819 bool mInWrite;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800820 };
821
Eric Laurenta553c252009-07-17 12:17:14 -0700822 class MixerThread : public PlaybackThread {
823 public:
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700824 MixerThread (const sp<AudioFlinger>& audioFlinger,
Dima Zavin31f188892011-04-18 16:57:27 -0700825 AudioStreamOut* output,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800826 audio_io_handle_t id,
Glenn Kastenefd511a2012-01-26 10:38:26 -0800827 uint32_t device,
828 type_t type = MIXER);
Eric Laurenta553c252009-07-17 12:17:14 -0700829 virtual ~MixerThread();
830
831 // Thread virtuals
832 virtual bool threadLoop();
833
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800834 void invalidateTracks(audio_stream_type_t streamType);
Eric Laurenta553c252009-07-17 12:17:14 -0700835 virtual bool checkForNewParameters_l();
836 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
837
838 protected:
Glenn Kasten789fef12012-01-26 13:37:52 -0800839 mixer_state prepareTracks_l(const SortedVector< wp<Track> >& activeTracks,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700840 Vector< sp<Track> > *tracksToRemove);
Eric Laurent62443f52009-10-05 20:29:18 -0700841 virtual int getTrackName_l();
842 virtual void deleteTrackName_l(int name);
Eric Laurent059b4be2009-11-09 23:32:22 -0800843 virtual uint32_t idleSleepTimeUs();
Eric Laurent8448a792010-08-18 18:13:17 -0700844 virtual uint32_t suspendSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -0700845
Eric Laurent71c44962012-01-17 19:20:12 -0800846 AudioMixer* mAudioMixer;
Glenn Kasten789fef12012-01-26 13:37:52 -0800847 mixer_state mPrevMixerStatus; // previous status returned by prepareTracks_l()
Eric Laurenta553c252009-07-17 12:17:14 -0700848 };
849
850 class DirectOutputThread : public PlaybackThread {
851 public:
852
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800853 DirectOutputThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
854 audio_io_handle_t id, uint32_t device);
Glenn Kastenb1631382012-01-30 14:54:39 -0800855 virtual ~DirectOutputThread();
Eric Laurenta553c252009-07-17 12:17:14 -0700856
857 // Thread virtuals
858 virtual bool threadLoop();
859
Eric Laurent62443f52009-10-05 20:29:18 -0700860 virtual bool checkForNewParameters_l();
861
862 protected:
Eric Laurenta553c252009-07-17 12:17:14 -0700863 virtual int getTrackName_l();
864 virtual void deleteTrackName_l(int name);
Eric Laurent059b4be2009-11-09 23:32:22 -0800865 virtual uint32_t activeSleepTimeUs();
866 virtual uint32_t idleSleepTimeUs();
Eric Laurent8448a792010-08-18 18:13:17 -0700867 virtual uint32_t suspendSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -0700868
869 private:
Eric Laurent65b65452010-06-01 23:49:17 -0700870 void applyVolume(uint16_t leftVol, uint16_t rightVol, bool ramp);
871
872 float mLeftVolFloat;
873 float mRightVolFloat;
874 uint16_t mLeftVolShort;
875 uint16_t mRightVolShort;
Eric Laurenta553c252009-07-17 12:17:14 -0700876 };
877
878 class DuplicatingThread : public MixerThread {
879 public:
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800880 DuplicatingThread (const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
881 audio_io_handle_t id);
Glenn Kastenb1631382012-01-30 14:54:39 -0800882 virtual ~DuplicatingThread();
Eric Laurenta553c252009-07-17 12:17:14 -0700883
884 // Thread virtuals
885 virtual bool threadLoop();
886 void addOutputTrack(MixerThread* thread);
887 void removeOutputTrack(MixerThread* thread);
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800888 uint32_t waitTimeMs() { return mWaitTimeMs; }
889 protected:
890 virtual uint32_t activeSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -0700891
892 private:
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800893 bool outputsReady(SortedVector< sp<OutputTrack> > &outputTracks);
894 void updateWaitTime();
895
Eric Laurenta553c252009-07-17 12:17:14 -0700896 SortedVector < sp<OutputTrack> > mOutputTracks;
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800897 uint32_t mWaitTimeMs;
Eric Laurenta553c252009-07-17 12:17:14 -0700898 };
899
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800900 PlaybackThread *checkPlaybackThread_l(audio_io_handle_t output) const;
901 MixerThread *checkMixerThread_l(audio_io_handle_t output) const;
902 RecordThread *checkRecordThread_l(audio_io_handle_t input) const;
903 float streamVolumeInternal(audio_stream_type_t stream) const
904 { return mStreamTypes[stream].volume; }
905 void audioConfigChanged_l(int event, audio_io_handle_t ioHandle, void *param2);
Eric Laurenta553c252009-07-17 12:17:14 -0700906
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800907 // allocate an audio_io_handle_t, session ID, or effect ID
Eric Laurent464d5b32011-06-17 21:29:58 -0700908 uint32_t nextUniqueId();
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800909
Eric Laurentf82fccd2011-07-27 19:49:51 -0700910 status_t moveEffectChain_l(int sessionId,
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700911 AudioFlinger::PlaybackThread *srcThread,
Eric Laurent493941b2010-07-28 01:32:47 -0700912 AudioFlinger::PlaybackThread *dstThread,
913 bool reRegister);
Eric Laurent464d5b32011-06-17 21:29:58 -0700914 PlaybackThread *primaryPlaybackThread_l();
915 uint32_t primaryOutputDevice_l();
Eric Laurent65b65452010-06-01 23:49:17 -0700916
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800917 friend class AudioBuffer;
918
919 class TrackHandle : public android::BnAudioTrack {
920 public:
Eric Laurenta553c252009-07-17 12:17:14 -0700921 TrackHandle(const sp<PlaybackThread::Track>& track);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800922 virtual ~TrackHandle();
Glenn Kasten0ae4d972012-01-26 13:40:12 -0800923 virtual sp<IMemory> getCblk() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800924 virtual status_t start();
925 virtual void stop();
926 virtual void flush();
927 virtual void mute(bool);
928 virtual void pause();
Eric Laurent65b65452010-06-01 23:49:17 -0700929 virtual status_t attachAuxEffect(int effectId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800930 virtual status_t onTransact(
931 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
932 private:
Glenn Kastendc3ac852012-01-25 15:28:08 -0800933 const sp<PlaybackThread::Track> mTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800934 };
935
936 friend class Client;
Eric Laurenta553c252009-07-17 12:17:14 -0700937 friend class PlaybackThread::Track;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800938
939
Eric Laurentb9481d82009-09-17 05:12:56 -0700940 void removeClient_l(pid_t pid);
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700941 void removeNotificationClient(pid_t pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800942
943
Eric Laurenta553c252009-07-17 12:17:14 -0700944 // record thread
945 class RecordThread : public ThreadBase, public AudioBufferProvider
946 {
947 public:
948
949 // record track
950 class RecordTrack : public TrackBase {
951 public:
952 RecordTrack(const wp<ThreadBase>& thread,
953 const sp<Client>& client,
954 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800955 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700956 uint32_t channelMask,
Eric Laurenta553c252009-07-17 12:17:14 -0700957 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -0700958 uint32_t flags,
959 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800960 virtual ~RecordTrack();
Eric Laurenta553c252009-07-17 12:17:14 -0700961
962 virtual status_t start();
963 virtual void stop();
964
965 bool overflow() { bool tmp = mOverflow; mOverflow = false; return tmp; }
966 bool setOverflow() { bool tmp = mOverflow; mOverflow = true; return tmp; }
967
Eric Laurent3fdb1262009-11-07 00:01:32 -0800968 void dump(char* buffer, size_t size);
Eric Laurentf82fccd2011-07-27 19:49:51 -0700969
Eric Laurenta553c252009-07-17 12:17:14 -0700970 private:
971 friend class AudioFlinger;
Eric Laurent2c817f52009-07-23 13:17:39 -0700972 friend class RecordThread;
Eric Laurenta553c252009-07-17 12:17:14 -0700973
974 RecordTrack(const RecordTrack&);
975 RecordTrack& operator = (const RecordTrack&);
976
977 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
978
979 bool mOverflow;
980 };
981
982
983 RecordThread(const sp<AudioFlinger>& audioFlinger,
Dima Zavin31f188892011-04-18 16:57:27 -0700984 AudioStreamIn *input,
Eric Laurenta553c252009-07-17 12:17:14 -0700985 uint32_t sampleRate,
Eric Laurent49f02be2009-11-19 09:00:56 -0800986 uint32_t channels,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800987 audio_io_handle_t id,
Eric Laurent464d5b32011-06-17 21:29:58 -0700988 uint32_t device);
Glenn Kastenb1631382012-01-30 14:54:39 -0800989 virtual ~RecordThread();
Eric Laurenta553c252009-07-17 12:17:14 -0700990
991 virtual bool threadLoop();
Eric Laurent828b9772011-08-07 16:32:26 -0700992 virtual status_t readyToRun();
Eric Laurenta553c252009-07-17 12:17:14 -0700993 virtual void onFirstRef();
994
Glenn Kastenc434c902011-12-13 11:53:26 -0800995 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700996 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
997 const sp<AudioFlinger::Client>& client,
998 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800999 audio_format_t format,
Eric Laurent464d5b32011-06-17 21:29:58 -07001000 int channelMask,
1001 int frameCount,
1002 uint32_t flags,
1003 int sessionId,
1004 status_t *status);
1005
Eric Laurenta553c252009-07-17 12:17:14 -07001006 status_t start(RecordTrack* recordTrack);
1007 void stop(RecordTrack* recordTrack);
1008 status_t dump(int fd, const Vector<String16>& args);
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001009 AudioStreamIn* getInput() const;
Eric Laurent828b9772011-08-07 16:32:26 -07001010 AudioStreamIn* clearInput();
1011 virtual audio_stream_t* stream();
Eric Laurenta553c252009-07-17 12:17:14 -07001012
1013 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer);
1014 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
1015 virtual bool checkForNewParameters_l();
1016 virtual String8 getParameters(const String8& keys);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001017 virtual void audioConfigChanged_l(int event, int param = 0);
Eric Laurenta553c252009-07-17 12:17:14 -07001018 void readInputParameters();
Eric Laurent47d0a922010-02-26 02:47:27 -08001019 virtual unsigned int getInputFramesLost();
Eric Laurenta553c252009-07-17 12:17:14 -07001020
Eric Laurent464d5b32011-06-17 21:29:58 -07001021 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
1022 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
1023 virtual uint32_t hasAudioSession(int sessionId);
Eric Laurent6639b552011-08-01 09:52:20 -07001024 RecordTrack* track();
Eric Laurent464d5b32011-06-17 21:29:58 -07001025
Eric Laurenta553c252009-07-17 12:17:14 -07001026 private:
1027 RecordThread();
Dima Zavin31f188892011-04-18 16:57:27 -07001028 AudioStreamIn *mInput;
Eric Laurent464d5b32011-06-17 21:29:58 -07001029 RecordTrack* mTrack;
Eric Laurenta553c252009-07-17 12:17:14 -07001030 sp<RecordTrack> mActiveTrack;
1031 Condition mStartStopCond;
1032 AudioResampler *mResampler;
1033 int32_t *mRsmpOutBuffer;
1034 int16_t *mRsmpInBuffer;
1035 size_t mRsmpInIndex;
1036 size_t mInputBytes;
Glenn Kastendc3ac852012-01-25 15:28:08 -08001037 const int mReqChannelCount;
1038 const uint32_t mReqSampleRate;
Eric Laurent9cc489a22009-12-05 05:20:01 -08001039 ssize_t mBytesRead;
Eric Laurenta553c252009-07-17 12:17:14 -07001040 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001041
1042 class RecordHandle : public android::BnAudioRecord {
1043 public:
Eric Laurenta553c252009-07-17 12:17:14 -07001044 RecordHandle(const sp<RecordThread::RecordTrack>& recordTrack);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001045 virtual ~RecordHandle();
Glenn Kasten0ae4d972012-01-26 13:40:12 -08001046 virtual sp<IMemory> getCblk() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001047 virtual status_t start();
1048 virtual void stop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001049 virtual status_t onTransact(
1050 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1051 private:
Glenn Kastendc3ac852012-01-25 15:28:08 -08001052 const sp<RecordThread::RecordTrack> mRecordTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001053 };
1054
Eric Laurent65b65452010-06-01 23:49:17 -07001055 //--- Audio Effect Management
1056
1057 // EffectModule and EffectChain classes both have their own mutex to protect
1058 // state changes or resource modifications. Always respect the following order
1059 // if multiple mutexes must be acquired to avoid cross deadlock:
1060 // AudioFlinger -> ThreadBase -> EffectChain -> EffectModule
1061
1062 // The EffectModule class is a wrapper object controlling the effect engine implementation
1063 // in the effect library. It prevents concurrent calls to process() and command() functions
1064 // from different client threads. It keeps a list of EffectHandle objects corresponding
1065 // to all client applications using this effect and notifies applications of effect state,
1066 // control or parameter changes. It manages the activation state machine to send appropriate
1067 // reset, enable, disable commands to effect engine and provide volume
1068 // ramping when effects are activated/deactivated.
1069 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
1070 // the attached track(s) to accumulate their auxiliary channel.
1071 class EffectModule: public RefBase {
1072 public:
1073 EffectModule(const wp<ThreadBase>& wThread,
1074 const wp<AudioFlinger::EffectChain>& chain,
1075 effect_descriptor_t *desc,
1076 int id,
1077 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001078 virtual ~EffectModule();
Eric Laurent65b65452010-06-01 23:49:17 -07001079
1080 enum effect_state {
1081 IDLE,
Eric Laurent7d850f22010-07-09 13:34:17 -07001082 RESTART,
Eric Laurent65b65452010-06-01 23:49:17 -07001083 STARTING,
1084 ACTIVE,
1085 STOPPING,
Eric Laurent21b5c472011-07-26 20:54:46 -07001086 STOPPED,
1087 DESTROYED
Eric Laurent65b65452010-06-01 23:49:17 -07001088 };
1089
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001090 int id() const { return mId; }
Eric Laurent65b65452010-06-01 23:49:17 -07001091 void process();
Eric Laurent7d850f22010-07-09 13:34:17 -07001092 void updateState();
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001093 status_t command(uint32_t cmdCode,
1094 uint32_t cmdSize,
1095 void *pCmdData,
1096 uint32_t *replySize,
1097 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001098
Eric Laurentdf9b81c2010-07-02 08:12:41 -07001099 void reset_l();
Eric Laurent65b65452010-06-01 23:49:17 -07001100 status_t configure();
1101 status_t init();
Glenn Kasten452d6d62012-01-26 13:43:46 -08001102 effect_state state() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001103 return mState;
1104 }
1105 uint32_t status() {
1106 return mStatus;
1107 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001108 int sessionId() const {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001109 return mSessionId;
1110 }
Eric Laurent65b65452010-06-01 23:49:17 -07001111 status_t setEnabled(bool enabled);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001112 bool isEnabled() const;
1113 bool isProcessEnabled() const;
Eric Laurent65b65452010-06-01 23:49:17 -07001114
1115 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
1116 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
1117 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
1118 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001119 void setChain(const wp<EffectChain>& chain) { mChain = chain; }
1120 void setThread(const wp<ThreadBase>& thread) { mThread = thread; }
Glenn Kastendc3ac852012-01-25 15:28:08 -08001121 const wp<ThreadBase>& thread() { return mThread; }
Eric Laurent65b65452010-06-01 23:49:17 -07001122
Glenn Kasten1f812f72012-01-30 10:15:48 -08001123 status_t addHandle(const sp<EffectHandle>& handle);
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001124 void disconnect(const wp<EffectHandle>& handle, bool unpiniflast);
Eric Laurent65b65452010-06-01 23:49:17 -07001125 size_t removeHandle (const wp<EffectHandle>& handle);
1126
1127 effect_descriptor_t& desc() { return mDescriptor; }
Eric Laurent53334cd2010-06-23 17:38:20 -07001128 wp<EffectChain>& chain() { return mChain; }
Eric Laurent65b65452010-06-01 23:49:17 -07001129
1130 status_t setDevice(uint32_t device);
1131 status_t setVolume(uint32_t *left, uint32_t *right, bool controller);
Glenn Kastenaccb1142012-01-04 11:00:47 -08001132 status_t setMode(audio_mode_t mode);
Eric Laurent6fccbd02011-10-05 17:42:25 -07001133 status_t start();
Eric Laurent21b5c472011-07-26 20:54:46 -07001134 status_t stop();
Eric Laurentf82fccd2011-07-27 19:49:51 -07001135 void setSuspended(bool suspended);
Glenn Kasten1dce8412012-01-04 11:01:11 -08001136 bool suspended() const;
Eric Laurentf82fccd2011-07-27 19:49:51 -07001137
1138 sp<EffectHandle> controlHandle();
Eric Laurent65b65452010-06-01 23:49:17 -07001139
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001140 bool isPinned() const { return mPinned; }
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001141 void unPin() { mPinned = false; }
1142
Eric Laurent65b65452010-06-01 23:49:17 -07001143 status_t dump(int fd, const Vector<String16>& args);
1144
1145 protected:
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001146 friend class EffectHandle;
1147 friend class AudioFlinger;
1148 bool mPinned;
Eric Laurent65b65452010-06-01 23:49:17 -07001149
Eric Laurent7d850f22010-07-09 13:34:17 -07001150 // Maximum time allocated to effect engines to complete the turn off sequence
1151 static const uint32_t MAX_DISABLE_TIME_MS = 10000;
1152
Eric Laurent65b65452010-06-01 23:49:17 -07001153 EffectModule(const EffectModule&);
1154 EffectModule& operator = (const EffectModule&);
1155
Eric Laurentdf9b81c2010-07-02 08:12:41 -07001156 status_t start_l();
1157 status_t stop_l();
Eric Laurent65b65452010-06-01 23:49:17 -07001158
Glenn Kasten1dce8412012-01-04 11:01:11 -08001159mutable Mutex mLock; // mutex for process, commands and handles list protection
Eric Laurent65b65452010-06-01 23:49:17 -07001160 wp<ThreadBase> mThread; // parent thread
1161 wp<EffectChain> mChain; // parent effect chain
1162 int mId; // this instance unique ID
1163 int mSessionId; // audio session ID
1164 effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
1165 effect_config_t mConfig; // input and output audio configuration
Eric Laurent0fb66c22011-05-17 19:16:02 -07001166 effect_handle_t mEffectInterface; // Effect module C API
Glenn Kasten452d6d62012-01-26 13:43:46 -08001167 status_t mStatus; // initialization status
1168 effect_state mState; // current activation state
Eric Laurent65b65452010-06-01 23:49:17 -07001169 Vector< wp<EffectHandle> > mHandles; // list of client handles
Eric Laurent7d850f22010-07-09 13:34:17 -07001170 uint32_t mMaxDisableWaitCnt; // maximum grace period before forcing an effect off after
1171 // sending disable command.
1172 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
Eric Laurentf82fccd2011-07-27 19:49:51 -07001173 bool mSuspended; // effect is suspended: temporarily disabled by framework
Eric Laurent65b65452010-06-01 23:49:17 -07001174 };
1175
1176 // The EffectHandle class implements the IEffect interface. It provides resources
1177 // to receive parameter updates, keeps track of effect control
1178 // ownership and state and has a pointer to the EffectModule object it is controlling.
1179 // There is one EffectHandle object for each application controlling (or using)
1180 // an effect module.
1181 // The EffectHandle is obtained by calling AudioFlinger::createEffect().
1182 class EffectHandle: public android::BnEffect {
1183 public:
1184
1185 EffectHandle(const sp<EffectModule>& effect,
1186 const sp<AudioFlinger::Client>& client,
1187 const sp<IEffectClient>& effectClient,
1188 int32_t priority);
1189 virtual ~EffectHandle();
1190
1191 // IEffect
1192 virtual status_t enable();
1193 virtual status_t disable();
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001194 virtual status_t command(uint32_t cmdCode,
1195 uint32_t cmdSize,
1196 void *pCmdData,
1197 uint32_t *replySize,
1198 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001199 virtual void disconnect();
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001200 virtual void disconnect(bool unpiniflast);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001201 virtual sp<IMemory> getCblk() const { return mCblkMemory; }
Eric Laurent65b65452010-06-01 23:49:17 -07001202 virtual status_t onTransact(uint32_t code, const Parcel& data,
1203 Parcel* reply, uint32_t flags);
1204
1205
1206 // Give or take control of effect module
Eric Laurentf82fccd2011-07-27 19:49:51 -07001207 // - hasControl: true if control is given, false if removed
1208 // - signal: true client app should be signaled of change, false otherwise
1209 // - enabled: state of the effect when control is passed
1210 void setControl(bool hasControl, bool signal, bool enabled);
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001211 void commandExecuted(uint32_t cmdCode,
1212 uint32_t cmdSize,
1213 void *pCmdData,
1214 uint32_t replySize,
1215 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001216 void setEnabled(bool enabled);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001217 bool enabled() const { return mEnabled; }
Eric Laurent65b65452010-06-01 23:49:17 -07001218
1219 // Getters
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001220 int id() const { return mEffect->id(); }
1221 int priority() const { return mPriority; }
1222 bool hasControl() const { return mHasControl; }
1223 sp<EffectModule> effect() const { return mEffect; }
Eric Laurent65b65452010-06-01 23:49:17 -07001224
1225 void dump(char* buffer, size_t size);
1226
1227 protected:
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001228 friend class AudioFlinger;
1229 friend class EffectModule;
Eric Laurent65b65452010-06-01 23:49:17 -07001230 EffectHandle(const EffectHandle&);
1231 EffectHandle& operator =(const EffectHandle&);
1232
1233 sp<EffectModule> mEffect; // pointer to controlled EffectModule
1234 sp<IEffectClient> mEffectClient; // callback interface for client notifications
Glenn Kasten803a86a2012-01-25 14:28:29 -08001235 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
Eric Laurent65b65452010-06-01 23:49:17 -07001236 sp<IMemory> mCblkMemory; // shared memory for control block
1237 effect_param_cblk_t* mCblk; // control block for deferred parameter setting via shared memory
1238 uint8_t* mBuffer; // pointer to parameter area in shared memory
1239 int mPriority; // client application priority to control the effect
1240 bool mHasControl; // true if this handle is controlling the effect
Eric Laurentf82fccd2011-07-27 19:49:51 -07001241 bool mEnabled; // cached enable state: needed when the effect is
1242 // restored after being suspended
Eric Laurent65b65452010-06-01 23:49:17 -07001243 };
1244
1245 // the EffectChain class represents a group of effects associated to one audio session.
1246 // There can be any number of EffectChain objects per output mixer thread (PlaybackThread).
1247 // The EffecChain with session ID 0 contains global effects applied to the output mix.
1248 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to tracks)
1249 // are insert only. The EffectChain maintains an ordered list of effect module, the order corresponding
1250 // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
1251 // input buffer used by the track as accumulation buffer.
1252 class EffectChain: public RefBase {
1253 public:
1254 EffectChain(const wp<ThreadBase>& wThread, int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001255 virtual ~EffectChain();
Eric Laurent65b65452010-06-01 23:49:17 -07001256
Eric Laurentf82fccd2011-07-27 19:49:51 -07001257 // special key used for an entry in mSuspendedEffects keyed vector
1258 // corresponding to a suspend all request.
1259 static const int kKeyForSuspendAll = 0;
1260
Eric Laurentf9c361d2011-11-11 15:42:52 -08001261 // minimum duration during which we force calling effect process when last track on
1262 // a session is stopped or removed to allow effect tail to be rendered
1263 static const int kProcessTailDurationMs = 1000;
1264
Eric Laurent65b65452010-06-01 23:49:17 -07001265 void process_l();
1266
1267 void lock() {
1268 mLock.lock();
1269 }
1270 void unlock() {
1271 mLock.unlock();
1272 }
1273
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001274 status_t addEffect_l(const sp<EffectModule>& handle);
Eric Laurent76c40f72010-07-15 12:50:15 -07001275 size_t removeEffect_l(const sp<EffectModule>& handle);
Eric Laurent65b65452010-06-01 23:49:17 -07001276
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001277 int sessionId() const { return mSessionId; }
Eric Laurent464d5b32011-06-17 21:29:58 -07001278 void setSessionId(int sessionId) { mSessionId = sessionId; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001279
Eric Laurent76c40f72010-07-15 12:50:15 -07001280 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1281 sp<EffectModule> getEffectFromId_l(int id);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001282 sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type);
Eric Laurent76c40f72010-07-15 12:50:15 -07001283 bool setVolume_l(uint32_t *left, uint32_t *right);
1284 void setDevice_l(uint32_t device);
Glenn Kastenaccb1142012-01-04 11:00:47 -08001285 void setMode_l(audio_mode_t mode);
Eric Laurent53334cd2010-06-23 17:38:20 -07001286
Eric Laurent65b65452010-06-01 23:49:17 -07001287 void setInBuffer(int16_t *buffer, bool ownsBuffer = false) {
1288 mInBuffer = buffer;
1289 mOwnInBuffer = ownsBuffer;
1290 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001291 int16_t *inBuffer() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001292 return mInBuffer;
1293 }
1294 void setOutBuffer(int16_t *buffer) {
1295 mOutBuffer = buffer;
1296 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001297 int16_t *outBuffer() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001298 return mOutBuffer;
1299 }
1300
Eric Laurent90681d62011-05-09 12:09:06 -07001301 void incTrackCnt() { android_atomic_inc(&mTrackCnt); }
1302 void decTrackCnt() { android_atomic_dec(&mTrackCnt); }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001303 int32_t trackCnt() const { return mTrackCnt;}
Eric Laurent90681d62011-05-09 12:09:06 -07001304
Eric Laurentf9c361d2011-11-11 15:42:52 -08001305 void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt);
1306 mTailBufferCount = mMaxTailBuffers; }
Eric Laurent90681d62011-05-09 12:09:06 -07001307 void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001308 int32_t activeTrackCnt() const { return mActiveTrackCnt;}
Eric Laurent65b65452010-06-01 23:49:17 -07001309
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001310 uint32_t strategy() const { return mStrategy; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001311 void setStrategy(uint32_t strategy)
1312 { mStrategy = strategy; }
1313
Eric Laurentf82fccd2011-07-27 19:49:51 -07001314 // suspend effect of the given type
1315 void setEffectSuspended_l(const effect_uuid_t *type,
1316 bool suspend);
1317 // suspend all eligible effects
1318 void setEffectSuspendedAll_l(bool suspend);
1319 // check if effects should be suspend or restored when a given effect is enable or disabled
Eric Laurent7fa1cee2011-10-19 11:44:54 -07001320 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurentf82fccd2011-07-27 19:49:51 -07001321 bool enabled);
1322
Eric Laurent65b65452010-06-01 23:49:17 -07001323 status_t dump(int fd, const Vector<String16>& args);
1324
1325 protected:
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001326 friend class AudioFlinger;
Eric Laurent65b65452010-06-01 23:49:17 -07001327 EffectChain(const EffectChain&);
1328 EffectChain& operator =(const EffectChain&);
1329
Eric Laurentf82fccd2011-07-27 19:49:51 -07001330 class SuspendedEffectDesc : public RefBase {
1331 public:
1332 SuspendedEffectDesc() : mRefCount(0) {}
1333
1334 int mRefCount;
1335 effect_uuid_t mType;
1336 wp<EffectModule> mEffect;
1337 };
1338
1339 // get a list of effect modules to suspend when an effect of the type
1340 // passed is enabled.
Glenn Kasten97040262012-01-30 12:56:03 -08001341 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects);
1342
Eric Laurentf82fccd2011-07-27 19:49:51 -07001343 // get an effect module if it is currently enable
1344 sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type);
Eric Laurent6752ec82011-08-10 10:37:50 -07001345 // true if the effect whose descriptor is passed can be suspended
1346 // OEMs can modify the rules implemented in this method to exclude specific effect
1347 // types or implementations from the suspend/restore mechanism.
1348 bool isEffectEligibleForSuspend(const effect_descriptor_t& desc);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001349
Eric Laurent65b65452010-06-01 23:49:17 -07001350 wp<ThreadBase> mThread; // parent mixer thread
1351 Mutex mLock; // mutex protecting effect list
1352 Vector<sp<EffectModule> > mEffects; // list of effect modules
1353 int mSessionId; // audio session ID
1354 int16_t *mInBuffer; // chain input buffer
1355 int16_t *mOutBuffer; // chain output buffer
Eric Laurent90681d62011-05-09 12:09:06 -07001356 volatile int32_t mActiveTrackCnt; // number of active tracks connected
1357 volatile int32_t mTrackCnt; // number of tracks connected
Eric Laurentf9c361d2011-11-11 15:42:52 -08001358 int32_t mTailBufferCount; // current effect tail buffer count
1359 int32_t mMaxTailBuffers; // maximum effect tail buffers
Eric Laurent65b65452010-06-01 23:49:17 -07001360 bool mOwnInBuffer; // true if the chain owns its input buffer
Eric Laurent76c40f72010-07-15 12:50:15 -07001361 int mVolumeCtrlIdx; // index of insert effect having control over volume
1362 uint32_t mLeftVolume; // previous volume on left channel
1363 uint32_t mRightVolume; // previous volume on right channel
Eric Laurent0d7e0482010-07-19 06:24:46 -07001364 uint32_t mNewLeftVolume; // new volume on left channel
1365 uint32_t mNewRightVolume; // new volume on right channel
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001366 uint32_t mStrategy; // strategy for this effect chain
Eric Laurentf82fccd2011-07-27 19:49:51 -07001367 // mSuspendedEffects lists all effect currently suspended in the chain
1368 // use effect type UUID timelow field as key. There is no real risk of identical
1369 // timeLow fields among effect type UUIDs.
1370 KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
Eric Laurent65b65452010-06-01 23:49:17 -07001371 };
1372
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001373 // AudioStreamOut and AudioStreamIn are immutable, so their fields are const.
1374 // For emphasis, we could also make all pointers to them be "const *",
1375 // but that would clutter the code unnecessarily.
1376
Dima Zavin31f188892011-04-18 16:57:27 -07001377 struct AudioStreamOut {
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001378 audio_hw_device_t* const hwDev;
1379 audio_stream_out_t* const stream;
Dima Zavin31f188892011-04-18 16:57:27 -07001380
1381 AudioStreamOut(audio_hw_device_t *dev, audio_stream_out_t *out) :
1382 hwDev(dev), stream(out) {}
1383 };
1384
1385 struct AudioStreamIn {
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001386 audio_hw_device_t* const hwDev;
1387 audio_stream_in_t* const stream;
Dima Zavin31f188892011-04-18 16:57:27 -07001388
1389 AudioStreamIn(audio_hw_device_t *dev, audio_stream_in_t *in) :
1390 hwDev(dev), stream(in) {}
1391 };
1392
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001393 struct AudioSessionRef {
Glenn Kastendc3ac852012-01-25 15:28:08 -08001394 // FIXME rename parameter names when fields get "m" prefix
1395 AudioSessionRef(int sessionid_, pid_t pid_) :
1396 sessionid(sessionid_), pid(pid_), cnt(1) {}
1397 const int sessionid;
1398 const pid_t pid;
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001399 int cnt;
1400 };
1401
Eric Laurenta553c252009-07-17 12:17:14 -07001402 friend class RecordThread;
1403 friend class PlaybackThread;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001404
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001405 mutable Mutex mLock;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001406
Glenn Kasten803a86a2012-01-25 14:28:29 -08001407 DefaultKeyedVector< pid_t, wp<Client> > mClients; // see ~Client()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001408
Eric Laurenta553c252009-07-17 12:17:14 -07001409 mutable Mutex mHardwareLock;
Dima Zavin31f188892011-04-18 16:57:27 -07001410 audio_hw_device_t* mPrimaryHardwareDev;
1411 Vector<audio_hw_device_t*> mAudioHwDevs;
Glenn Kastena934c2c2012-01-04 11:02:33 -08001412 mutable hardware_call_state mHardwareStatus; // for dump only
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001413
Eric Laurenta553c252009-07-17 12:17:14 -07001414
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001415 DefaultKeyedVector< audio_io_handle_t, sp<PlaybackThread> > mPlaybackThreads;
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001416 PlaybackThread::stream_type_t mStreamTypes[AUDIO_STREAM_CNT];
Glenn Kastene6f8a422011-12-13 11:47:54 -08001417
1418 // both are protected by mLock
Eric Laurenta553c252009-07-17 12:17:14 -07001419 float mMasterVolume;
1420 bool mMasterMute;
1421
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001422 DefaultKeyedVector< audio_io_handle_t, sp<RecordThread> > mRecordThreads;
Eric Laurenta553c252009-07-17 12:17:14 -07001423
Eric Laurent4f0f17d2010-05-12 02:05:53 -07001424 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
Eric Laurent65b65452010-06-01 23:49:17 -07001425 volatile int32_t mNextUniqueId;
Glenn Kastenaccb1142012-01-04 11:00:47 -08001426 audio_mode_t mMode;
Eric Laurent2d95dfb2011-08-29 12:42:48 -07001427 bool mBtNrecIsOff;
Eric Laurent53334cd2010-06-23 17:38:20 -07001428
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001429 Vector<AudioSessionRef*> mAudioSessionRefs;
Glenn Kastene6f8a422011-12-13 11:47:54 -08001430
1431 float masterVolume_l() const { return mMasterVolume; }
1432 bool masterMute_l() const { return mMasterMute; }
Glenn Kasten803a86a2012-01-25 14:28:29 -08001433
1434private:
1435 sp<Client> registerPid_l(pid_t pid); // always returns non-0
1436
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001437};
1438
Dima Zavin31f188892011-04-18 16:57:27 -07001439
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001440// ----------------------------------------------------------------------------
1441
1442}; // namespace android
1443
1444#endif // ANDROID_AUDIO_FLINGER_H