blob: 2a5d805d1df017245103ba0c1636f42408a502d8 [file] [log] [blame]
Glenn Kasten99e53b82012-01-19 08:59:58 -08001/*
Mathias Agopian65ab4712010-07-14 17:59:35 -07002**
3** Copyright 2007, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#ifndef ANDROID_AUDIO_FLINGER_H
19#define ANDROID_AUDIO_FLINGER_H
20
21#include <stdint.h>
22#include <sys/types.h>
23#include <limits.h>
24
John Grossman4ff14ba2012-02-08 16:37:41 -080025#include <common_time/cc_helper.h>
26
Mathias Agopian65ab4712010-07-14 17:59:35 -070027#include <media/IAudioFlinger.h>
28#include <media/IAudioFlingerClient.h>
29#include <media/IAudioTrack.h>
30#include <media/IAudioRecord.h>
Glenn Kasten335787f2012-01-20 17:00:00 -080031#include <media/AudioSystem.h>
John Grossman4ff14ba2012-02-08 16:37:41 -080032#include <media/AudioTrack.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070033
34#include <utils/Atomic.h>
35#include <utils/Errors.h>
36#include <utils/threads.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070037#include <utils/SortedVector.h>
Dima Zavin799a70e2011-04-18 16:57:27 -070038#include <utils/TypeHelpers.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070039#include <utils/Vector.h>
40
Mathias Agopian5462fc92010-07-14 18:41:18 -070041#include <binder/BinderService.h>
42#include <binder/MemoryDealer.h>
43
Dima Zavin64760242011-05-11 14:15:23 -070044#include <system/audio.h>
Dima Zavin7394a4f2011-06-13 18:16:26 -070045#include <hardware/audio.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070046
47#include "AudioBufferProvider.h"
48
Eric Laurentfeb0db62011-07-22 09:04:31 -070049#include <powermanager/IPowerManager.h>
50
Mathias Agopian65ab4712010-07-14 17:59:35 -070051namespace android {
52
53class audio_track_cblk_t;
54class effect_param_cblk_t;
55class AudioMixer;
56class AudioBuffer;
57class AudioResampler;
58
Mathias Agopian65ab4712010-07-14 17:59:35 -070059// ----------------------------------------------------------------------------
60
John Grossman4ff14ba2012-02-08 16:37:41 -080061static const nsecs_t kDefaultStandbyTimeInNsecs = seconds(3);
Mathias Agopian65ab4712010-07-14 17:59:35 -070062
Mathias Agopian5462fc92010-07-14 18:41:18 -070063class AudioFlinger :
64 public BinderService<AudioFlinger>,
65 public BnAudioFlinger
Mathias Agopian65ab4712010-07-14 17:59:35 -070066{
Mathias Agopian5462fc92010-07-14 18:41:18 -070067 friend class BinderService<AudioFlinger>;
Mathias Agopian65ab4712010-07-14 17:59:35 -070068public:
Glenn Kasten54c3b662012-01-06 07:46:30 -080069 static const char* getServiceName() { return "media.audio_flinger"; }
Mathias Agopian65ab4712010-07-14 17:59:35 -070070
71 virtual status_t dump(int fd, const Vector<String16>& args);
72
Glenn Kasten2f732eb2012-01-26 09:48:03 -080073 // IAudioFlinger interface, in binder opcode order
Mathias Agopian65ab4712010-07-14 17:59:35 -070074 virtual sp<IAudioTrack> createTrack(
75 pid_t pid,
Glenn Kastenfff6d712012-01-12 16:38:12 -080076 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -070077 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -080078 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -070079 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -070080 int frameCount,
81 uint32_t flags,
82 const sp<IMemory>& sharedBuffer,
Glenn Kasten72ef00d2012-01-17 11:09:42 -080083 audio_io_handle_t output,
John Grossman4ff14ba2012-02-08 16:37:41 -080084 bool isTimed,
Mathias Agopian65ab4712010-07-14 17:59:35 -070085 int *sessionId,
86 status_t *status);
87
Glenn Kasten2f732eb2012-01-26 09:48:03 -080088 virtual sp<IAudioRecord> openRecord(
89 pid_t pid,
90 audio_io_handle_t input,
91 uint32_t sampleRate,
92 audio_format_t format,
93 uint32_t channelMask,
94 int frameCount,
95 uint32_t flags,
96 int *sessionId,
97 status_t *status);
98
Glenn Kasten72ef00d2012-01-17 11:09:42 -080099 virtual uint32_t sampleRate(audio_io_handle_t output) const;
100 virtual int channelCount(audio_io_handle_t output) const;
101 virtual audio_format_t format(audio_io_handle_t output) const;
102 virtual size_t frameCount(audio_io_handle_t output) const;
103 virtual uint32_t latency(audio_io_handle_t output) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700104
105 virtual status_t setMasterVolume(float value);
106 virtual status_t setMasterMute(bool muted);
107
108 virtual float masterVolume() const;
John Grossman4ff14ba2012-02-08 16:37:41 -0800109 virtual float masterVolumeSW() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700110 virtual bool masterMute() const;
111
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800112 virtual status_t setStreamVolume(audio_stream_type_t stream, float value,
113 audio_io_handle_t output);
Glenn Kastenfff6d712012-01-12 16:38:12 -0800114 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700115
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800116 virtual float streamVolume(audio_stream_type_t stream,
117 audio_io_handle_t output) const;
Glenn Kastenfff6d712012-01-12 16:38:12 -0800118 virtual bool streamMute(audio_stream_type_t stream) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700119
Glenn Kastenf78aee72012-01-04 11:00:47 -0800120 virtual status_t setMode(audio_mode_t mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700121
122 virtual status_t setMicMute(bool state);
123 virtual bool getMicMute() const;
124
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800125 virtual status_t setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs);
126 virtual String8 getParameters(audio_io_handle_t ioHandle, const String8& keys) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700127
128 virtual void registerClient(const sp<IAudioFlingerClient>& client);
129
Glenn Kastenf587ba52012-01-26 16:25:10 -0800130 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700131
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800132 virtual audio_io_handle_t openOutput(uint32_t *pDevices,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700133 uint32_t *pSamplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800134 audio_format_t *pFormat,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700135 uint32_t *pChannels,
136 uint32_t *pLatencyMs,
137 uint32_t flags);
138
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800139 virtual audio_io_handle_t openDuplicateOutput(audio_io_handle_t output1,
140 audio_io_handle_t output2);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700141
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800142 virtual status_t closeOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700143
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800144 virtual status_t suspendOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700145
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800146 virtual status_t restoreOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700147
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800148 virtual audio_io_handle_t openInput(uint32_t *pDevices,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700149 uint32_t *pSamplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800150 audio_format_t *pFormat,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700151 uint32_t *pChannels,
Glenn Kastende9719b2012-01-27 12:32:34 -0800152 audio_in_acoustics_t acoustics);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700153
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800154 virtual status_t closeInput(audio_io_handle_t input);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700155
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800156 virtual status_t setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700157
158 virtual status_t setVoiceVolume(float volume);
159
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800160 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
161 audio_io_handle_t output) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700162
Glenn Kasten2f732eb2012-01-26 09:48:03 -0800163 virtual unsigned int getInputFramesLost(audio_io_handle_t ioHandle) const;
164
Mathias Agopian65ab4712010-07-14 17:59:35 -0700165 virtual int newAudioSessionId();
166
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700167 virtual void acquireAudioSessionId(int audioSession);
168
169 virtual void releaseAudioSessionId(int audioSession);
170
Glenn Kastenf587ba52012-01-26 16:25:10 -0800171 virtual status_t queryNumberEffects(uint32_t *numEffects) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700172
Glenn Kastenf587ba52012-01-26 16:25:10 -0800173 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700174
Glenn Kasten5e92a782012-01-30 07:40:52 -0800175 virtual status_t getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kastenf587ba52012-01-26 16:25:10 -0800176 effect_descriptor_t *descriptor) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700177
178 virtual sp<IEffect> createEffect(pid_t pid,
179 effect_descriptor_t *pDesc,
180 const sp<IEffectClient>& effectClient,
181 int32_t priority,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800182 audio_io_handle_t io,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700183 int sessionId,
184 status_t *status,
185 int *id,
186 int *enabled);
187
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800188 virtual status_t moveEffects(int sessionId, audio_io_handle_t srcOutput,
189 audio_io_handle_t dstOutput);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700190
Mathias Agopian65ab4712010-07-14 17:59:35 -0700191 virtual status_t onTransact(
192 uint32_t code,
193 const Parcel& data,
194 Parcel* reply,
195 uint32_t flags);
196
Glenn Kasten2f732eb2012-01-26 09:48:03 -0800197 // end of IAudioFlinger interface
198
199private:
Glenn Kastenf78aee72012-01-04 11:00:47 -0800200 audio_mode_t getMode() const { return mMode; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700201
Glenn Kastenc59c0042012-02-02 14:06:11 -0800202 bool btNrecIsOff() const { return mBtNrecIsOff; }
Eric Laurent59bd0da2011-08-01 09:52:20 -0700203
Mathias Agopian65ab4712010-07-14 17:59:35 -0700204 AudioFlinger();
205 virtual ~AudioFlinger();
206
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800207 // call in any IAudioFlinger method that accesses mPrimaryHardwareDev
208 status_t initCheck() const { return mPrimaryHardwareDev == NULL ? NO_INIT : NO_ERROR; }
209
Dima Zavin5a61d2f2011-04-19 19:04:32 -0700210 virtual void onFirstRef();
Dima Zavin799a70e2011-04-18 16:57:27 -0700211 audio_hw_device_t* findSuitableHwDev_l(uint32_t devices);
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700212 void purgeStaleEffects_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700213
John Grossman4ff14ba2012-02-08 16:37:41 -0800214 static nsecs_t mStandbyTimeInNsecs;
215
Mathias Agopian65ab4712010-07-14 17:59:35 -0700216 // Internal dump utilites.
217 status_t dumpPermissionDenial(int fd, const Vector<String16>& args);
218 status_t dumpClients(int fd, const Vector<String16>& args);
219 status_t dumpInternals(int fd, const Vector<String16>& args);
220
221 // --- Client ---
222 class Client : public RefBase {
223 public:
224 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
225 virtual ~Client();
Glenn Kasten435dbe62012-01-30 10:15:48 -0800226 sp<MemoryDealer> heap() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700227 pid_t pid() const { return mPid; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800228 sp<AudioFlinger> audioFlinger() const { return mAudioFlinger; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700229
John Grossman4ff14ba2012-02-08 16:37:41 -0800230 bool reserveTimedTrack();
231 void releaseTimedTrack();
232
Mathias Agopian65ab4712010-07-14 17:59:35 -0700233 private:
234 Client(const Client&);
235 Client& operator = (const Client&);
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800236 const sp<AudioFlinger> mAudioFlinger;
237 const sp<MemoryDealer> mMemoryDealer;
238 const pid_t mPid;
John Grossman4ff14ba2012-02-08 16:37:41 -0800239
240 Mutex mTimedTrackLock;
241 int mTimedTrackCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700242 };
243
244 // --- Notification Client ---
245 class NotificationClient : public IBinder::DeathRecipient {
246 public:
247 NotificationClient(const sp<AudioFlinger>& audioFlinger,
248 const sp<IAudioFlingerClient>& client,
249 pid_t pid);
250 virtual ~NotificationClient();
251
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800252 sp<IAudioFlingerClient> audioFlingerClient() const { return mAudioFlingerClient; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700253
254 // IBinder::DeathRecipient
255 virtual void binderDied(const wp<IBinder>& who);
256
257 private:
258 NotificationClient(const NotificationClient&);
259 NotificationClient& operator = (const NotificationClient&);
260
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800261 const sp<AudioFlinger> mAudioFlinger;
262 const pid_t mPid;
263 const sp<IAudioFlingerClient> mAudioFlingerClient;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700264 };
265
266 class TrackHandle;
267 class RecordHandle;
268 class RecordThread;
269 class PlaybackThread;
270 class MixerThread;
271 class DirectOutputThread;
272 class DuplicatingThread;
273 class Track;
274 class RecordTrack;
275 class EffectModule;
276 class EffectHandle;
277 class EffectChain;
Dima Zavin799a70e2011-04-18 16:57:27 -0700278 struct AudioStreamOut;
279 struct AudioStreamIn;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700280
281 class ThreadBase : public Thread {
282 public:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700283
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800284 enum type_t {
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700285 MIXER, // Thread class is MixerThread
286 DIRECT, // Thread class is DirectOutputThread
287 DUPLICATING, // Thread class is DuplicatingThread
288 RECORD // Thread class is RecordThread
289 };
290
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800291 ThreadBase (const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id, uint32_t device, type_t type);
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800292 virtual ~ThreadBase();
293
Mathias Agopian65ab4712010-07-14 17:59:35 -0700294 status_t dumpBase(int fd, const Vector<String16>& args);
Eric Laurent1d2bff02011-07-24 17:49:51 -0700295 status_t dumpEffectChains(int fd, const Vector<String16>& args);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700296
Eric Laurentfeb0db62011-07-22 09:04:31 -0700297 void clearPowerManager();
298
Mathias Agopian65ab4712010-07-14 17:59:35 -0700299 // base for record and playback
300 class TrackBase : public AudioBufferProvider, public RefBase {
301
302 public:
303 enum track_state {
304 IDLE,
305 TERMINATED,
Glenn Kasten99e53b82012-01-19 08:59:58 -0800306 // These are order-sensitive; do not change order without reviewing the impact.
307 // In particular there are assumptions about > STOPPED.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700308 STOPPED,
309 RESUMING,
310 ACTIVE,
311 PAUSING,
312 PAUSED
313 };
314
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800315 TrackBase(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700316 const sp<Client>& client,
317 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800318 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700319 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700320 int frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700321 const sp<IMemory>& sharedBuffer,
322 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800323 virtual ~TrackBase();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700324
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800325 virtual status_t start(pid_t tid) = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700326 virtual void stop() = 0;
Glenn Kastenc59c0042012-02-02 14:06:11 -0800327 sp<IMemory> getCblk() const { return mCblkMemory; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700328 audio_track_cblk_t* cblk() const { return mCblk; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800329 int sessionId() const { return mSessionId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700330
331 protected:
332 friend class ThreadBase;
333 friend class RecordHandle;
334 friend class PlaybackThread;
335 friend class RecordThread;
336 friend class MixerThread;
337 friend class DirectOutputThread;
338
339 TrackBase(const TrackBase&);
340 TrackBase& operator = (const TrackBase&);
341
John Grossman4ff14ba2012-02-08 16:37:41 -0800342 virtual status_t getNextBuffer(
343 AudioBufferProvider::Buffer* buffer,
344 int64_t pts) = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700345 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
346
Glenn Kasten58f30212012-01-12 12:27:51 -0800347 audio_format_t format() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700348 return mFormat;
349 }
350
Glenn Kastenc59c0042012-02-02 14:06:11 -0800351 int channelCount() const { return mChannelCount; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700352
Glenn Kastenc59c0042012-02-02 14:06:11 -0800353 uint32_t channelMask() const { return mChannelMask; }
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700354
Glenn Kastenc59c0042012-02-02 14:06:11 -0800355 int sampleRate() const; // FIXME inline after cblk sr moved
Mathias Agopian65ab4712010-07-14 17:59:35 -0700356
357 void* getBuffer(uint32_t offset, uint32_t frames) const;
358
359 bool isStopped() const {
360 return mState == STOPPED;
361 }
362
363 bool isTerminated() const {
364 return mState == TERMINATED;
365 }
366
367 bool step();
368 void reset();
369
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800370 const wp<ThreadBase> mThread;
371 /*const*/ sp<Client> mClient; // see explanation at ~TrackBase() why not const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700372 sp<IMemory> mCblkMemory;
373 audio_track_cblk_t* mCblk;
374 void* mBuffer;
375 void* mBufferEnd;
376 uint32_t mFrameCount;
377 // we don't really need a lock for these
Glenn Kastenb853e982012-01-26 13:39:18 -0800378 track_state mState;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800379 const audio_format_t mFormat;
Glenn Kasten5cf034d2012-02-21 10:35:56 -0800380 bool mStepServerFailed;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800381 const int mSessionId;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700382 uint8_t mChannelCount;
383 uint32_t mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700384 };
385
386 class ConfigEvent {
387 public:
388 ConfigEvent() : mEvent(0), mParam(0) {}
389
390 int mEvent;
391 int mParam;
392 };
393
Eric Laurentfeb0db62011-07-22 09:04:31 -0700394 class PMDeathRecipient : public IBinder::DeathRecipient {
395 public:
396 PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
397 virtual ~PMDeathRecipient() {}
398
399 // IBinder::DeathRecipient
400 virtual void binderDied(const wp<IBinder>& who);
401
402 private:
403 PMDeathRecipient(const PMDeathRecipient&);
404 PMDeathRecipient& operator = (const PMDeathRecipient&);
405
406 wp<ThreadBase> mThread;
407 };
408
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700409 virtual status_t initCheck() const = 0;
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800410 type_t type() const { return mType; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800411 uint32_t sampleRate() const { return mSampleRate; }
412 int channelCount() const { return mChannelCount; }
413 audio_format_t format() const { return mFormat; }
414 size_t frameCount() const { return mFrameCount; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700415 void wakeUp() { mWaitWorkCV.broadcast(); }
Glenn Kastenb28686f2012-01-06 08:39:38 -0800416 // Should be "virtual status_t requestExitAndWait()" and override same
417 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700418 void exit();
419 virtual bool checkForNewParameters_l() = 0;
420 virtual status_t setParameters(const String8& keyValuePairs);
421 virtual String8 getParameters(const String8& keys) = 0;
422 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
423 void sendConfigEvent(int event, int param = 0);
424 void sendConfigEvent_l(int event, int param = 0);
425 void processConfigEvents();
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800426 audio_io_handle_t id() const { return mId;}
Mathias Agopian65ab4712010-07-14 17:59:35 -0700427 bool standby() { return mStandby; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700428 uint32_t device() { return mDevice; }
429 virtual audio_stream_t* stream() = 0;
430
431 sp<EffectHandle> createEffect_l(
432 const sp<AudioFlinger::Client>& client,
433 const sp<IEffectClient>& effectClient,
434 int32_t priority,
435 int sessionId,
436 effect_descriptor_t *desc,
437 int *enabled,
438 status_t *status);
439 void disconnectEffect(const sp< EffectModule>& effect,
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700440 const wp<EffectHandle>& handle,
Glenn Kasten58123c32012-02-03 10:32:24 -0800441 bool unpinIfLast);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700442
443 // return values for hasAudioSession (bit field)
444 enum effect_state {
445 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
446 // effect
447 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
448 // track
449 };
450
451 // get effect chain corresponding to session Id.
452 sp<EffectChain> getEffectChain(int sessionId);
453 // same as getEffectChain() but must be called with ThreadBase mutex locked
454 sp<EffectChain> getEffectChain_l(int sessionId);
455 // add an effect chain to the chain list (mEffectChains)
456 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
457 // remove an effect chain from the chain list (mEffectChains)
458 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
459 // lock mall effect chains Mutexes. Must be called before releasing the
460 // ThreadBase mutex before processing the mixer and effects. This guarantees the
461 // integrity of the chains during the process.
462 void lockEffectChains_l(Vector<sp <EffectChain> >& effectChains);
463 // unlock effect chains after process
464 void unlockEffectChains(Vector<sp <EffectChain> >& effectChains);
465 // set audio mode to all effect chains
Glenn Kastenf78aee72012-01-04 11:00:47 -0800466 void setMode(audio_mode_t mode);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700467 // get effect module with corresponding ID on specified audio session
468 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
469 // add and effect module. Also creates the effect chain is none exists for
470 // the effects audio session
471 status_t addEffect_l(const sp< EffectModule>& effect);
472 // remove and effect module. Also removes the effect chain is this was the last
473 // effect
474 void removeEffect_l(const sp< EffectModule>& effect);
475 // detach all tracks connected to an auxiliary effect
476 virtual void detachAuxEffect_l(int effectId) {}
477 // returns either EFFECT_SESSION if effects on this audio session exist in one
478 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
479 virtual uint32_t hasAudioSession(int sessionId) = 0;
480 // the value returned by default implementation is not important as the
481 // strategy is only meaningful for PlaybackThread which implements this method
482 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700483
Eric Laurent59255e42011-07-27 19:49:51 -0700484 // suspend or restore effect according to the type of effect passed. a NULL
485 // type pointer means suspend all effects in the session
486 void setEffectSuspended(const effect_uuid_t *type,
487 bool suspend,
488 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
489 // check if some effects must be suspended/restored when an effect is enabled
490 // or disabled
Eric Laurenta85a74a2011-10-19 11:44:54 -0700491 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurent59255e42011-07-27 19:49:51 -0700492 bool enabled,
493 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurenta85a74a2011-10-19 11:44:54 -0700494 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
495 bool enabled,
496 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700497 mutable Mutex mLock;
498
499 protected:
500
Eric Laurent59255e42011-07-27 19:49:51 -0700501 // entry describing an effect being suspended in mSuspendedSessions keyed vector
502 class SuspendedSessionDesc : public RefBase {
503 public:
504 SuspendedSessionDesc() : mRefCount(0) {}
505
506 int mRefCount; // number of active suspend requests
507 effect_uuid_t mType; // effect type UUID
508 };
509
Eric Laurentfeb0db62011-07-22 09:04:31 -0700510 void acquireWakeLock();
511 void acquireWakeLock_l();
512 void releaseWakeLock();
513 void releaseWakeLock_l();
Eric Laurent59255e42011-07-27 19:49:51 -0700514 void setEffectSuspended_l(const effect_uuid_t *type,
515 bool suspend,
516 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
517 // updated mSuspendedSessions when an effect suspended or restored
518 void updateSuspendedSessions_l(const effect_uuid_t *type,
519 bool suspend,
520 int sessionId);
521 // check if some effects must be suspended when an effect chain is added
522 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
Eric Laurentfeb0db62011-07-22 09:04:31 -0700523
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700524 friend class AudioFlinger;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700525 friend class Track;
526 friend class TrackBase;
527 friend class PlaybackThread;
528 friend class MixerThread;
529 friend class DirectOutputThread;
530 friend class DuplicatingThread;
531 friend class RecordThread;
532 friend class RecordTrack;
533
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800534 const type_t mType;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700535 Condition mWaitWorkCV;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800536 const sp<AudioFlinger> mAudioFlinger;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700537 uint32_t mSampleRate;
538 size_t mFrameCount;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700539 uint32_t mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700540 uint16_t mChannelCount;
Glenn Kastenb9980652012-01-11 09:48:27 -0800541 size_t mFrameSize;
Glenn Kasten58f30212012-01-12 12:27:51 -0800542 audio_format_t mFormat;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700543 Condition mParamCond;
544 Vector<String8> mNewParameters;
545 status_t mParamStatus;
Glenn Kastenf3990f22011-12-13 11:50:00 -0800546 Vector<ConfigEvent> mConfigEvents;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700547 bool mStandby;
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800548 const audio_io_handle_t mId;
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700549 Vector< sp<EffectChain> > mEffectChains;
550 uint32_t mDevice; // output device for PlaybackThread
551 // input + output devices for RecordThread
Eric Laurentfeb0db62011-07-22 09:04:31 -0700552 static const int kNameLength = 32;
553 char mName[kNameLength];
554 sp<IPowerManager> mPowerManager;
555 sp<IBinder> mWakeLockToken;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800556 const sp<PMDeathRecipient> mDeathRecipient;
Eric Laurent59255e42011-07-27 19:49:51 -0700557 // list of suspended effects per session and per type. The first vector is
558 // keyed by session ID, the second by type UUID timeLow field
559 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > > mSuspendedSessions;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700560 };
561
Glenn Kastenb7bf7962012-02-08 12:36:25 -0800562 struct stream_type_t {
563 stream_type_t()
564 : volume(1.0f),
565 mute(false),
566 valid(true)
567 {
568 }
569 float volume;
570 bool mute;
571 bool valid;
572 };
573
Mathias Agopian65ab4712010-07-14 17:59:35 -0700574 // --- PlaybackThread ---
575 class PlaybackThread : public ThreadBase {
576 public:
577
Mathias Agopian65ab4712010-07-14 17:59:35 -0700578 enum mixer_state {
579 MIXER_IDLE,
580 MIXER_TRACKS_ENABLED,
581 MIXER_TRACKS_READY
582 };
583
584 // playback track
585 class Track : public TrackBase {
586 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800587 Track( PlaybackThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700588 const sp<Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800589 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700590 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800591 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700592 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700593 int frameCount,
594 const sp<IMemory>& sharedBuffer,
595 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800596 virtual ~Track();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700597
598 void dump(char* buffer, size_t size);
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800599 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700600 virtual void stop();
601 void pause();
602
603 void flush();
604 void destroy();
605 void mute(bool);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700606 int name() const {
607 return mName;
608 }
609
Glenn Kasten02bbd202012-02-08 12:35:35 -0800610 audio_stream_type_t streamType() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700611 return mStreamType;
612 }
613 status_t attachAuxEffect(int EffectId);
614 void setAuxBuffer(int EffectId, int32_t *buffer);
Glenn Kastenc59c0042012-02-02 14:06:11 -0800615 int32_t *auxBuffer() const { return mAuxBuffer; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700616 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800617 int16_t *mainBuffer() const { return mMainBuffer; }
618 int auxEffectId() const { return mAuxEffectId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700619
Mathias Agopian65ab4712010-07-14 17:59:35 -0700620 protected:
621 friend class ThreadBase;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700622 friend class TrackHandle;
623 friend class PlaybackThread;
624 friend class MixerThread;
625 friend class DirectOutputThread;
626
627 Track(const Track&);
628 Track& operator = (const Track&);
629
John Grossman4ff14ba2012-02-08 16:37:41 -0800630 virtual status_t getNextBuffer(
631 AudioBufferProvider::Buffer* buffer,
632 int64_t pts);
633 virtual uint32_t framesReady() const;
634
Glenn Kastenc59c0042012-02-02 14:06:11 -0800635 bool isMuted() const { return mMute; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700636 bool isPausing() const {
637 return mState == PAUSING;
638 }
639 bool isPaused() const {
640 return mState == PAUSED;
641 }
642 bool isReady() const;
643 void setPaused() { mState = PAUSED; }
644 void reset();
645
646 bool isOutputTrack() const {
Dima Zavinfce7a472011-04-19 22:30:36 -0700647 return (mStreamType == AUDIO_STREAM_CNT);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700648 }
649
John Grossman4ff14ba2012-02-08 16:37:41 -0800650 virtual bool isTimedTrack() const { return false; }
651
Mathias Agopian65ab4712010-07-14 17:59:35 -0700652 // we don't really need a lock for these
Mathias Agopian65ab4712010-07-14 17:59:35 -0700653 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 Kastenfff6d712012-01-12 16:38:12 -0800660 audio_stream_type_t mStreamType;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700661 int mName;
662 int16_t *mMainBuffer;
663 int32_t *mAuxBuffer;
664 int mAuxEffectId;
Eric Laurent8f45bd72010-08-31 13:50:07 -0700665 bool mHasVolumeController;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700666 }; // end of Track
667
John Grossman4ff14ba2012-02-08 16:37:41 -0800668 class TimedTrack : public Track {
669 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800670 static sp<TimedTrack> create(PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -0800671 const sp<Client>& client,
672 audio_stream_type_t streamType,
673 uint32_t sampleRate,
674 audio_format_t format,
675 uint32_t channelMask,
676 int frameCount,
677 const sp<IMemory>& sharedBuffer,
678 int sessionId);
679 ~TimedTrack();
680
681 class TimedBuffer {
682 public:
683 TimedBuffer();
684 TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
685 const sp<IMemory>& buffer() const { return mBuffer; }
686 int64_t pts() const { return mPTS; }
687 int position() const { return mPosition; }
688 void setPosition(int pos) { mPosition = pos; }
689 private:
690 sp<IMemory> mBuffer;
691 int64_t mPTS;
692 int mPosition;
693 };
694
695 virtual bool isTimedTrack() const { return true; }
696
697 virtual uint32_t framesReady() const;
698
699 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer,
700 int64_t pts);
701 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
702 void timedYieldSamples(AudioBufferProvider::Buffer* buffer);
703 void timedYieldSilence(uint32_t numFrames,
704 AudioBufferProvider::Buffer* buffer);
705
706 status_t allocateTimedBuffer(size_t size,
707 sp<IMemory>* buffer);
708 status_t queueTimedBuffer(const sp<IMemory>& buffer,
709 int64_t pts);
710 status_t setMediaTimeTransform(const LinearTransform& xform,
711 TimedAudioTrack::TargetTimeline target);
712 void trimTimedBufferQueue_l();
713
714 private:
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800715 TimedTrack(PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -0800716 const sp<Client>& client,
717 audio_stream_type_t streamType,
718 uint32_t sampleRate,
719 audio_format_t format,
720 uint32_t channelMask,
721 int frameCount,
722 const sp<IMemory>& sharedBuffer,
723 int sessionId);
724
725 uint64_t mLocalTimeFreq;
726 LinearTransform mLocalTimeToSampleTransform;
727 sp<MemoryDealer> mTimedMemoryDealer;
728 Vector<TimedBuffer> mTimedBufferQueue;
729 uint8_t* mTimedSilenceBuffer;
730 uint32_t mTimedSilenceBufferSize;
731 mutable Mutex mTimedBufferQueueLock;
732 bool mTimedAudioOutputOnTime;
733 CCHelper mCCHelper;
734
735 Mutex mMediaTimeTransformLock;
736 LinearTransform mMediaTimeTransform;
737 bool mMediaTimeTransformValid;
738 TimedAudioTrack::TargetTimeline mMediaTimeTransformTarget;
739 };
740
Mathias Agopian65ab4712010-07-14 17:59:35 -0700741
742 // playback track
743 class OutputTrack : public Track {
744 public:
745
746 class Buffer: public AudioBufferProvider::Buffer {
747 public:
748 int16_t *mBuffer;
749 };
750
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800751 OutputTrack(PlaybackThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700752 DuplicatingThread *sourceThread,
753 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800754 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700755 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700756 int frameCount);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800757 virtual ~OutputTrack();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700758
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800759 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700760 virtual void stop();
761 bool write(int16_t* data, uint32_t frames);
Glenn Kastena1117922012-01-26 10:53:32 -0800762 bool bufferQueueEmpty() const { return mBufferQueue.size() == 0; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800763 bool isActive() const { return mActive; }
764 const wp<ThreadBase>& thread() const { return mThread; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700765
766 private:
767
Glenn Kasten335787f2012-01-20 17:00:00 -0800768 enum {
769 NO_MORE_BUFFERS = 0x80000001, // same in AudioTrack.h, ok to be different value
770 };
771
Mathias Agopian65ab4712010-07-14 17:59:35 -0700772 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
773 void clearBufferQueue();
774
775 // Maximum number of pending buffers allocated by OutputTrack::write()
776 static const uint8_t kMaxOverFlowBuffers = 10;
777
778 Vector < Buffer* > mBufferQueue;
779 AudioBufferProvider::Buffer mOutBuffer;
780 bool mActive;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800781 DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
Mathias Agopian65ab4712010-07-14 17:59:35 -0700782 }; // end of OutputTrack
783
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800784 PlaybackThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
785 audio_io_handle_t id, uint32_t device, type_t type);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700786 virtual ~PlaybackThread();
787
788 virtual status_t dump(int fd, const Vector<String16>& args);
789
790 // Thread virtuals
791 virtual status_t readyToRun();
792 virtual void onFirstRef();
793
Glenn Kastene0feee32011-12-13 11:53:26 -0800794 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700795
Mathias Agopian65ab4712010-07-14 17:59:35 -0700796 virtual uint32_t latency() const;
797
Glenn Kasten6637baa2012-01-09 09:40:36 -0800798 void setMasterVolume(float value);
799 void setMasterMute(bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700800
Glenn Kasten6637baa2012-01-09 09:40:36 -0800801 void setStreamVolume(audio_stream_type_t stream, float value);
802 void setStreamMute(audio_stream_type_t stream, bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700803
Glenn Kasten6637baa2012-01-09 09:40:36 -0800804 float streamVolume(audio_stream_type_t stream) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700805
Mathias Agopian65ab4712010-07-14 17:59:35 -0700806 sp<Track> createTrack_l(
807 const sp<AudioFlinger::Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800808 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700809 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800810 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700811 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700812 int frameCount,
813 const sp<IMemory>& sharedBuffer,
814 int sessionId,
John Grossman4ff14ba2012-02-08 16:37:41 -0800815 bool isTimed,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700816 status_t *status);
817
Glenn Kastenaed850d2012-01-26 09:46:34 -0800818 AudioStreamOut* getOutput() const;
Eric Laurentb8ba0a92011-08-07 16:32:26 -0700819 AudioStreamOut* clearOutput();
820 virtual audio_stream_t* stream();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700821
Mathias Agopian65ab4712010-07-14 17:59:35 -0700822 void suspend() { mSuspended++; }
823 void restore() { if (mSuspended) mSuspended--; }
Glenn Kastena3a85482012-01-04 11:01:11 -0800824 bool isSuspended() const { return (mSuspended != 0); }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700825 virtual String8 getParameters(const String8& keys);
826 virtual void audioConfigChanged_l(int event, int param = 0);
827 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
Glenn Kastenc59c0042012-02-02 14:06:11 -0800828 int16_t *mixBuffer() const { return mMixBuffer; };
Mathias Agopian65ab4712010-07-14 17:59:35 -0700829
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700830 virtual void detachAuxEffect_l(int effectId);
Eric Laurentde070132010-07-13 04:45:46 -0700831 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
832 int EffectId);
833 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
834 int EffectId);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700835
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700836 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
837 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
838 virtual uint32_t hasAudioSession(int sessionId);
839 virtual uint32_t getStrategyForSession_l(int sessionId);
Eric Laurentde070132010-07-13 04:45:46 -0700840
Glenn Kastenfff6d712012-01-12 16:38:12 -0800841 void setStreamValid(audio_stream_type_t streamType, bool valid);
Eric Laurent9f6530f2011-08-30 10:18:54 -0700842
Mathias Agopian65ab4712010-07-14 17:59:35 -0700843 protected:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700844 int16_t* mMixBuffer;
845 int mSuspended;
846 int mBytesWritten;
Glenn Kasten98067102011-12-13 11:47:54 -0800847 private:
Glenn Kasten99e53b82012-01-19 08:59:58 -0800848 // mMasterMute is in both PlaybackThread and in AudioFlinger. When a
849 // PlaybackThread needs to find out if master-muted, it checks it's local
850 // copy rather than the one in AudioFlinger. This optimization saves a lock.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700851 bool mMasterMute;
Glenn Kasten6637baa2012-01-09 09:40:36 -0800852 void setMasterMute_l(bool muted) { mMasterMute = muted; }
Glenn Kasten98067102011-12-13 11:47:54 -0800853 protected:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700854 SortedVector< wp<Track> > mActiveTracks;
855
856 virtual int getTrackName_l() = 0;
857 virtual void deleteTrackName_l(int name) = 0;
Eric Laurent162b40b2011-12-05 09:47:19 -0800858 virtual uint32_t activeSleepTimeUs();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700859 virtual uint32_t idleSleepTimeUs() = 0;
Eric Laurent25cbe0e2010-08-18 18:13:17 -0700860 virtual uint32_t suspendSleepTimeUs() = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700861
Glenn Kasten37d825e2012-02-24 07:21:48 -0800862 // Code snippets that are temporarily lifted up out of threadLoop() until the merge
863 void checkSilentMode_l();
864
Mathias Agopian65ab4712010-07-14 17:59:35 -0700865 private:
866
867 friend class AudioFlinger;
868 friend class OutputTrack;
869 friend class Track;
870 friend class TrackBase;
871 friend class MixerThread;
872 friend class DirectOutputThread;
873 friend class DuplicatingThread;
874
875 PlaybackThread(const Client&);
876 PlaybackThread& operator = (const PlaybackThread&);
877
878 status_t addTrack_l(const sp<Track>& track);
879 void destroyTrack_l(const sp<Track>& track);
Eric Laurentb469b942011-05-09 12:09:06 -0700880 void removeTrack_l(const sp<Track>& track);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700881
882 void readOutputParameters();
883
Mathias Agopian65ab4712010-07-14 17:59:35 -0700884 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
885 status_t dumpTracks(int fd, const Vector<String16>& args);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700886
887 SortedVector< sp<Track> > mTracks;
Glenn Kasten263709e2012-01-06 08:40:01 -0800888 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by DuplicatingThread
Dima Zavinfce7a472011-04-19 22:30:36 -0700889 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
Glenn Kastenaed850d2012-01-26 09:46:34 -0800890 AudioStreamOut *mOutput;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700891 float mMasterVolume;
892 nsecs_t mLastWriteTime;
893 int mNumWrites;
894 int mNumDelayedWrites;
895 bool mInWrite;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700896 };
897
898 class MixerThread : public PlaybackThread {
899 public:
Eric Laurentde070132010-07-13 04:45:46 -0700900 MixerThread (const sp<AudioFlinger>& audioFlinger,
Dima Zavin799a70e2011-04-18 16:57:27 -0700901 AudioStreamOut* output,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800902 audio_io_handle_t id,
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800903 uint32_t device,
904 type_t type = MIXER);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700905 virtual ~MixerThread();
906
907 // Thread virtuals
908 virtual bool threadLoop();
909
Glenn Kastenfff6d712012-01-12 16:38:12 -0800910 void invalidateTracks(audio_stream_type_t streamType);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700911 virtual bool checkForNewParameters_l();
912 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
913
914 protected:
Glenn Kasten29c23c32012-01-26 13:37:52 -0800915 mixer_state prepareTracks_l(const SortedVector< wp<Track> >& activeTracks,
Eric Laurentde070132010-07-13 04:45:46 -0700916 Vector< sp<Track> > *tracksToRemove);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700917 virtual int getTrackName_l();
918 virtual void deleteTrackName_l(int name);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700919 virtual uint32_t idleSleepTimeUs();
Eric Laurent25cbe0e2010-08-18 18:13:17 -0700920 virtual uint32_t suspendSleepTimeUs();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700921
Eric Laurent27741442012-01-17 19:20:12 -0800922 AudioMixer* mAudioMixer;
Glenn Kasten29c23c32012-01-26 13:37:52 -0800923 mixer_state mPrevMixerStatus; // previous status returned by prepareTracks_l()
Mathias Agopian65ab4712010-07-14 17:59:35 -0700924 };
925
926 class DirectOutputThread : public PlaybackThread {
927 public:
928
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800929 DirectOutputThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
930 audio_io_handle_t id, uint32_t device);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800931 virtual ~DirectOutputThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700932
933 // Thread virtuals
934 virtual bool threadLoop();
935
936 virtual bool checkForNewParameters_l();
937
938 protected:
939 virtual int getTrackName_l();
940 virtual void deleteTrackName_l(int name);
941 virtual uint32_t activeSleepTimeUs();
942 virtual uint32_t idleSleepTimeUs();
Eric Laurent25cbe0e2010-08-18 18:13:17 -0700943 virtual uint32_t suspendSleepTimeUs();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700944
945 private:
946 void applyVolume(uint16_t leftVol, uint16_t rightVol, bool ramp);
947
Glenn Kasten99e53b82012-01-19 08:59:58 -0800948 // volumes last sent to audio HAL with stream->set_volume()
949 // FIXME use standard representation and names
Mathias Agopian65ab4712010-07-14 17:59:35 -0700950 float mLeftVolFloat;
951 float mRightVolFloat;
952 uint16_t mLeftVolShort;
953 uint16_t mRightVolShort;
954 };
955
956 class DuplicatingThread : public MixerThread {
957 public:
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800958 DuplicatingThread (const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
959 audio_io_handle_t id);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800960 virtual ~DuplicatingThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700961
962 // Thread virtuals
963 virtual bool threadLoop();
964 void addOutputTrack(MixerThread* thread);
965 void removeOutputTrack(MixerThread* thread);
966 uint32_t waitTimeMs() { return mWaitTimeMs; }
967 protected:
968 virtual uint32_t activeSleepTimeUs();
969
970 private:
971 bool outputsReady(SortedVector< sp<OutputTrack> > &outputTracks);
972 void updateWaitTime();
973
974 SortedVector < sp<OutputTrack> > mOutputTracks;
975 uint32_t mWaitTimeMs;
976 };
977
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800978 PlaybackThread *checkPlaybackThread_l(audio_io_handle_t output) const;
979 MixerThread *checkMixerThread_l(audio_io_handle_t output) const;
980 RecordThread *checkRecordThread_l(audio_io_handle_t input) const;
Glenn Kasten6637baa2012-01-09 09:40:36 -0800981 // no range check, AudioFlinger::mLock held
982 bool streamMute_l(audio_stream_type_t stream) const
983 { return mStreamTypes[stream].mute; }
984 // no range check, doesn't check per-thread stream volume, AudioFlinger::mLock held
985 float streamVolume_l(audio_stream_type_t stream) const
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800986 { return mStreamTypes[stream].volume; }
987 void audioConfigChanged_l(int event, audio_io_handle_t ioHandle, void *param2);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700988
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800989 // allocate an audio_io_handle_t, session ID, or effect ID
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700990 uint32_t nextUniqueId();
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800991
Eric Laurent59255e42011-07-27 19:49:51 -0700992 status_t moveEffectChain_l(int sessionId,
Glenn Kastena1117922012-01-26 10:53:32 -0800993 PlaybackThread *srcThread,
994 PlaybackThread *dstThread,
Eric Laurent39e94f82010-07-28 01:32:47 -0700995 bool reRegister);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700996 PlaybackThread *primaryPlaybackThread_l();
997 uint32_t primaryOutputDevice_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700998
999 friend class AudioBuffer;
1000
Glenn Kasten99e53b82012-01-19 08:59:58 -08001001 // server side of the client's IAudioTrack
Mathias Agopian65ab4712010-07-14 17:59:35 -07001002 class TrackHandle : public android::BnAudioTrack {
1003 public:
1004 TrackHandle(const sp<PlaybackThread::Track>& track);
1005 virtual ~TrackHandle();
Glenn Kasten90716c52012-01-26 13:40:12 -08001006 virtual sp<IMemory> getCblk() const;
Glenn Kasten6dbc1352012-02-02 10:56:47 -08001007 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001008 virtual void stop();
1009 virtual void flush();
1010 virtual void mute(bool);
1011 virtual void pause();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001012 virtual status_t attachAuxEffect(int effectId);
John Grossman4ff14ba2012-02-08 16:37:41 -08001013 virtual status_t allocateTimedBuffer(size_t size,
1014 sp<IMemory>* buffer);
1015 virtual status_t queueTimedBuffer(const sp<IMemory>& buffer,
1016 int64_t pts);
1017 virtual status_t setMediaTimeTransform(const LinearTransform& xform,
1018 int target);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001019 virtual status_t onTransact(
1020 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1021 private:
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001022 const sp<PlaybackThread::Track> mTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001023 };
1024
1025 friend class Client;
1026 friend class PlaybackThread::Track;
1027
1028
1029 void removeClient_l(pid_t pid);
1030 void removeNotificationClient(pid_t pid);
1031
1032
1033 // record thread
1034 class RecordThread : public ThreadBase, public AudioBufferProvider
1035 {
1036 public:
1037
1038 // record track
1039 class RecordTrack : public TrackBase {
1040 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -08001041 RecordTrack(RecordThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001042 const sp<Client>& client,
1043 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08001044 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001045 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001046 int frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001047 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001048 virtual ~RecordTrack();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001049
Glenn Kasten6dbc1352012-02-02 10:56:47 -08001050 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001051 virtual void stop();
1052
1053 bool overflow() { bool tmp = mOverflow; mOverflow = false; return tmp; }
1054 bool setOverflow() { bool tmp = mOverflow; mOverflow = true; return tmp; }
1055
1056 void dump(char* buffer, size_t size);
Eric Laurent59255e42011-07-27 19:49:51 -07001057
Mathias Agopian65ab4712010-07-14 17:59:35 -07001058 private:
1059 friend class AudioFlinger;
1060 friend class RecordThread;
1061
1062 RecordTrack(const RecordTrack&);
1063 RecordTrack& operator = (const RecordTrack&);
1064
John Grossman4ff14ba2012-02-08 16:37:41 -08001065 virtual status_t getNextBuffer(
1066 AudioBufferProvider::Buffer* buffer,
1067 int64_t pts);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001068
1069 bool mOverflow;
1070 };
1071
1072
1073 RecordThread(const sp<AudioFlinger>& audioFlinger,
Dima Zavin799a70e2011-04-18 16:57:27 -07001074 AudioStreamIn *input,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001075 uint32_t sampleRate,
1076 uint32_t channels,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001077 audio_io_handle_t id,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001078 uint32_t device);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001079 virtual ~RecordThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001080
1081 virtual bool threadLoop();
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001082 virtual status_t readyToRun();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001083 virtual void onFirstRef();
1084
Glenn Kastene0feee32011-12-13 11:53:26 -08001085 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001086 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
1087 const sp<AudioFlinger::Client>& client,
1088 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08001089 audio_format_t format,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001090 int channelMask,
1091 int frameCount,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001092 int sessionId,
1093 status_t *status);
1094
Mathias Agopian65ab4712010-07-14 17:59:35 -07001095 status_t start(RecordTrack* recordTrack);
Glenn Kasten6dbc1352012-02-02 10:56:47 -08001096 status_t start(RecordTrack* recordTrack, pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001097 void stop(RecordTrack* recordTrack);
1098 status_t dump(int fd, const Vector<String16>& args);
Glenn Kastenaed850d2012-01-26 09:46:34 -08001099 AudioStreamIn* getInput() const;
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001100 AudioStreamIn* clearInput();
1101 virtual audio_stream_t* stream();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001102
John Grossman4ff14ba2012-02-08 16:37:41 -08001103 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer,
1104 int64_t pts);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001105 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
1106 virtual bool checkForNewParameters_l();
1107 virtual String8 getParameters(const String8& keys);
1108 virtual void audioConfigChanged_l(int event, int param = 0);
1109 void readInputParameters();
1110 virtual unsigned int getInputFramesLost();
1111
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001112 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
1113 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
1114 virtual uint32_t hasAudioSession(int sessionId);
Eric Laurent59bd0da2011-08-01 09:52:20 -07001115 RecordTrack* track();
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001116
Mathias Agopian65ab4712010-07-14 17:59:35 -07001117 private:
1118 RecordThread();
Dima Zavin799a70e2011-04-18 16:57:27 -07001119 AudioStreamIn *mInput;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001120 RecordTrack* mTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001121 sp<RecordTrack> mActiveTrack;
1122 Condition mStartStopCond;
1123 AudioResampler *mResampler;
1124 int32_t *mRsmpOutBuffer;
1125 int16_t *mRsmpInBuffer;
1126 size_t mRsmpInIndex;
1127 size_t mInputBytes;
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001128 const int mReqChannelCount;
1129 const uint32_t mReqSampleRate;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001130 ssize_t mBytesRead;
1131 };
1132
Glenn Kasten99e53b82012-01-19 08:59:58 -08001133 // server side of the client's IAudioRecord
Mathias Agopian65ab4712010-07-14 17:59:35 -07001134 class RecordHandle : public android::BnAudioRecord {
1135 public:
1136 RecordHandle(const sp<RecordThread::RecordTrack>& recordTrack);
1137 virtual ~RecordHandle();
Glenn Kasten90716c52012-01-26 13:40:12 -08001138 virtual sp<IMemory> getCblk() const;
Glenn Kasten6dbc1352012-02-02 10:56:47 -08001139 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001140 virtual void stop();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001141 virtual status_t onTransact(
1142 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1143 private:
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001144 const sp<RecordThread::RecordTrack> mRecordTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001145 };
1146
1147 //--- Audio Effect Management
1148
1149 // EffectModule and EffectChain classes both have their own mutex to protect
1150 // state changes or resource modifications. Always respect the following order
1151 // if multiple mutexes must be acquired to avoid cross deadlock:
1152 // AudioFlinger -> ThreadBase -> EffectChain -> EffectModule
1153
1154 // The EffectModule class is a wrapper object controlling the effect engine implementation
1155 // in the effect library. It prevents concurrent calls to process() and command() functions
1156 // from different client threads. It keeps a list of EffectHandle objects corresponding
1157 // to all client applications using this effect and notifies applications of effect state,
1158 // control or parameter changes. It manages the activation state machine to send appropriate
1159 // reset, enable, disable commands to effect engine and provide volume
1160 // ramping when effects are activated/deactivated.
1161 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
1162 // the attached track(s) to accumulate their auxiliary channel.
1163 class EffectModule: public RefBase {
1164 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -08001165 EffectModule(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001166 const wp<AudioFlinger::EffectChain>& chain,
1167 effect_descriptor_t *desc,
1168 int id,
1169 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001170 virtual ~EffectModule();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001171
1172 enum effect_state {
1173 IDLE,
1174 RESTART,
1175 STARTING,
1176 ACTIVE,
1177 STOPPING,
Eric Laurentec437d82011-07-26 20:54:46 -07001178 STOPPED,
1179 DESTROYED
Mathias Agopian65ab4712010-07-14 17:59:35 -07001180 };
1181
Glenn Kastenc59c0042012-02-02 14:06:11 -08001182 int id() const { return mId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001183 void process();
1184 void updateState();
Eric Laurent25f43952010-07-28 05:40:18 -07001185 status_t command(uint32_t cmdCode,
1186 uint32_t cmdSize,
1187 void *pCmdData,
1188 uint32_t *replySize,
1189 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001190
1191 void reset_l();
1192 status_t configure();
1193 status_t init();
Glenn Kasten28243dd2012-01-26 13:43:46 -08001194 effect_state state() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001195 return mState;
1196 }
1197 uint32_t status() {
1198 return mStatus;
1199 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001200 int sessionId() const {
Eric Laurentde070132010-07-13 04:45:46 -07001201 return mSessionId;
1202 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001203 status_t setEnabled(bool enabled);
Glenn Kastenc59c0042012-02-02 14:06:11 -08001204 bool isEnabled() const;
1205 bool isProcessEnabled() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001206
1207 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
1208 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
1209 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
1210 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
Eric Laurentde070132010-07-13 04:45:46 -07001211 void setChain(const wp<EffectChain>& chain) { mChain = chain; }
1212 void setThread(const wp<ThreadBase>& thread) { mThread = thread; }
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001213 const wp<ThreadBase>& thread() { return mThread; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001214
Glenn Kasten435dbe62012-01-30 10:15:48 -08001215 status_t addHandle(const sp<EffectHandle>& handle);
Glenn Kasten58123c32012-02-03 10:32:24 -08001216 void disconnect(const wp<EffectHandle>& handle, bool unpinIfLast);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001217 size_t removeHandle (const wp<EffectHandle>& handle);
1218
1219 effect_descriptor_t& desc() { return mDescriptor; }
1220 wp<EffectChain>& chain() { return mChain; }
1221
1222 status_t setDevice(uint32_t device);
1223 status_t setVolume(uint32_t *left, uint32_t *right, bool controller);
Glenn Kastenf78aee72012-01-04 11:00:47 -08001224 status_t setMode(audio_mode_t mode);
Eric Laurentec35a142011-10-05 17:42:25 -07001225 status_t start();
Eric Laurentec437d82011-07-26 20:54:46 -07001226 status_t stop();
Eric Laurent59255e42011-07-27 19:49:51 -07001227 void setSuspended(bool suspended);
Glenn Kastena3a85482012-01-04 11:01:11 -08001228 bool suspended() const;
Eric Laurent59255e42011-07-27 19:49:51 -07001229
1230 sp<EffectHandle> controlHandle();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001231
Glenn Kastenc59c0042012-02-02 14:06:11 -08001232 bool isPinned() const { return mPinned; }
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001233 void unPin() { mPinned = false; }
1234
Mathias Agopian65ab4712010-07-14 17:59:35 -07001235 status_t dump(int fd, const Vector<String16>& args);
1236
1237 protected:
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001238 friend class EffectHandle;
1239 friend class AudioFlinger;
1240 bool mPinned;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001241
1242 // Maximum time allocated to effect engines to complete the turn off sequence
1243 static const uint32_t MAX_DISABLE_TIME_MS = 10000;
1244
1245 EffectModule(const EffectModule&);
1246 EffectModule& operator = (const EffectModule&);
1247
1248 status_t start_l();
1249 status_t stop_l();
1250
Glenn Kastena3a85482012-01-04 11:01:11 -08001251mutable Mutex mLock; // mutex for process, commands and handles list protection
Mathias Agopian65ab4712010-07-14 17:59:35 -07001252 wp<ThreadBase> mThread; // parent thread
1253 wp<EffectChain> mChain; // parent effect chain
1254 int mId; // this instance unique ID
1255 int mSessionId; // audio session ID
1256 effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
1257 effect_config_t mConfig; // input and output audio configuration
Eric Laurente1315cf2011-05-17 19:16:02 -07001258 effect_handle_t mEffectInterface; // Effect module C API
Glenn Kasten28243dd2012-01-26 13:43:46 -08001259 status_t mStatus; // initialization status
1260 effect_state mState; // current activation state
Mathias Agopian65ab4712010-07-14 17:59:35 -07001261 Vector< wp<EffectHandle> > mHandles; // list of client handles
Glenn Kasten99e53b82012-01-19 08:59:58 -08001262 // First handle in mHandles has highest priority and controls the effect module
Mathias Agopian65ab4712010-07-14 17:59:35 -07001263 uint32_t mMaxDisableWaitCnt; // maximum grace period before forcing an effect off after
1264 // sending disable command.
1265 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
Eric Laurent59255e42011-07-27 19:49:51 -07001266 bool mSuspended; // effect is suspended: temporarily disabled by framework
Mathias Agopian65ab4712010-07-14 17:59:35 -07001267 };
1268
1269 // The EffectHandle class implements the IEffect interface. It provides resources
1270 // to receive parameter updates, keeps track of effect control
1271 // ownership and state and has a pointer to the EffectModule object it is controlling.
1272 // There is one EffectHandle object for each application controlling (or using)
1273 // an effect module.
1274 // The EffectHandle is obtained by calling AudioFlinger::createEffect().
1275 class EffectHandle: public android::BnEffect {
1276 public:
1277
1278 EffectHandle(const sp<EffectModule>& effect,
1279 const sp<AudioFlinger::Client>& client,
1280 const sp<IEffectClient>& effectClient,
1281 int32_t priority);
1282 virtual ~EffectHandle();
1283
1284 // IEffect
1285 virtual status_t enable();
1286 virtual status_t disable();
Eric Laurent25f43952010-07-28 05:40:18 -07001287 virtual status_t command(uint32_t cmdCode,
1288 uint32_t cmdSize,
1289 void *pCmdData,
1290 uint32_t *replySize,
1291 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001292 virtual void disconnect();
Glenn Kasten58123c32012-02-03 10:32:24 -08001293 private:
1294 void disconnect(bool unpinIfLast);
1295 public:
Glenn Kastenc59c0042012-02-02 14:06:11 -08001296 virtual sp<IMemory> getCblk() const { return mCblkMemory; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001297 virtual status_t onTransact(uint32_t code, const Parcel& data,
1298 Parcel* reply, uint32_t flags);
1299
1300
1301 // Give or take control of effect module
Eric Laurent59255e42011-07-27 19:49:51 -07001302 // - hasControl: true if control is given, false if removed
1303 // - signal: true client app should be signaled of change, false otherwise
1304 // - enabled: state of the effect when control is passed
1305 void setControl(bool hasControl, bool signal, bool enabled);
Eric Laurent25f43952010-07-28 05:40:18 -07001306 void commandExecuted(uint32_t cmdCode,
1307 uint32_t cmdSize,
1308 void *pCmdData,
1309 uint32_t replySize,
1310 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001311 void setEnabled(bool enabled);
Glenn Kastenc59c0042012-02-02 14:06:11 -08001312 bool enabled() const { return mEnabled; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001313
1314 // Getters
Glenn Kastenc59c0042012-02-02 14:06:11 -08001315 int id() const { return mEffect->id(); }
1316 int priority() const { return mPriority; }
1317 bool hasControl() const { return mHasControl; }
1318 sp<EffectModule> effect() const { return mEffect; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001319
1320 void dump(char* buffer, size_t size);
1321
1322 protected:
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001323 friend class AudioFlinger;
1324 friend class EffectModule;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001325 EffectHandle(const EffectHandle&);
1326 EffectHandle& operator =(const EffectHandle&);
1327
1328 sp<EffectModule> mEffect; // pointer to controlled EffectModule
1329 sp<IEffectClient> mEffectClient; // callback interface for client notifications
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001330 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
Mathias Agopian65ab4712010-07-14 17:59:35 -07001331 sp<IMemory> mCblkMemory; // shared memory for control block
1332 effect_param_cblk_t* mCblk; // control block for deferred parameter setting via shared memory
1333 uint8_t* mBuffer; // pointer to parameter area in shared memory
1334 int mPriority; // client application priority to control the effect
1335 bool mHasControl; // true if this handle is controlling the effect
Eric Laurent59255e42011-07-27 19:49:51 -07001336 bool mEnabled; // cached enable state: needed when the effect is
1337 // restored after being suspended
Mathias Agopian65ab4712010-07-14 17:59:35 -07001338 };
1339
1340 // the EffectChain class represents a group of effects associated to one audio session.
1341 // There can be any number of EffectChain objects per output mixer thread (PlaybackThread).
1342 // The EffecChain with session ID 0 contains global effects applied to the output mix.
1343 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to tracks)
1344 // are insert only. The EffectChain maintains an ordered list of effect module, the order corresponding
1345 // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
1346 // input buffer used by the track as accumulation buffer.
1347 class EffectChain: public RefBase {
1348 public:
1349 EffectChain(const wp<ThreadBase>& wThread, int sessionId);
Glenn Kasten9eaa5572012-01-20 13:32:16 -08001350 EffectChain(ThreadBase *thread, int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001351 virtual ~EffectChain();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001352
Eric Laurent59255e42011-07-27 19:49:51 -07001353 // special key used for an entry in mSuspendedEffects keyed vector
1354 // corresponding to a suspend all request.
1355 static const int kKeyForSuspendAll = 0;
1356
Eric Laurent544fe9b2011-11-11 15:42:52 -08001357 // minimum duration during which we force calling effect process when last track on
1358 // a session is stopped or removed to allow effect tail to be rendered
1359 static const int kProcessTailDurationMs = 1000;
1360
Mathias Agopian65ab4712010-07-14 17:59:35 -07001361 void process_l();
1362
1363 void lock() {
1364 mLock.lock();
1365 }
1366 void unlock() {
1367 mLock.unlock();
1368 }
1369
Eric Laurentde070132010-07-13 04:45:46 -07001370 status_t addEffect_l(const sp<EffectModule>& handle);
Eric Laurentcab11242010-07-15 12:50:15 -07001371 size_t removeEffect_l(const sp<EffectModule>& handle);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001372
Glenn Kastenc59c0042012-02-02 14:06:11 -08001373 int sessionId() const { return mSessionId; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001374 void setSessionId(int sessionId) { mSessionId = sessionId; }
Eric Laurentde070132010-07-13 04:45:46 -07001375
Eric Laurentcab11242010-07-15 12:50:15 -07001376 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1377 sp<EffectModule> getEffectFromId_l(int id);
Eric Laurent59255e42011-07-27 19:49:51 -07001378 sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type);
Eric Laurentcab11242010-07-15 12:50:15 -07001379 bool setVolume_l(uint32_t *left, uint32_t *right);
1380 void setDevice_l(uint32_t device);
Glenn Kastenf78aee72012-01-04 11:00:47 -08001381 void setMode_l(audio_mode_t mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001382
Mathias Agopian65ab4712010-07-14 17:59:35 -07001383 void setInBuffer(int16_t *buffer, bool ownsBuffer = false) {
1384 mInBuffer = buffer;
1385 mOwnInBuffer = ownsBuffer;
1386 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001387 int16_t *inBuffer() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001388 return mInBuffer;
1389 }
1390 void setOutBuffer(int16_t *buffer) {
1391 mOutBuffer = buffer;
1392 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001393 int16_t *outBuffer() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001394 return mOutBuffer;
1395 }
1396
Eric Laurentb469b942011-05-09 12:09:06 -07001397 void incTrackCnt() { android_atomic_inc(&mTrackCnt); }
1398 void decTrackCnt() { android_atomic_dec(&mTrackCnt); }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001399 int32_t trackCnt() const { return mTrackCnt;}
Eric Laurentb469b942011-05-09 12:09:06 -07001400
Eric Laurent544fe9b2011-11-11 15:42:52 -08001401 void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt);
1402 mTailBufferCount = mMaxTailBuffers; }
Eric Laurentb469b942011-05-09 12:09:06 -07001403 void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001404 int32_t activeTrackCnt() const { return mActiveTrackCnt;}
Mathias Agopian65ab4712010-07-14 17:59:35 -07001405
Glenn Kastenc59c0042012-02-02 14:06:11 -08001406 uint32_t strategy() const { return mStrategy; }
Eric Laurentde070132010-07-13 04:45:46 -07001407 void setStrategy(uint32_t strategy)
1408 { mStrategy = strategy; }
1409
Eric Laurent59255e42011-07-27 19:49:51 -07001410 // suspend effect of the given type
1411 void setEffectSuspended_l(const effect_uuid_t *type,
1412 bool suspend);
1413 // suspend all eligible effects
1414 void setEffectSuspendedAll_l(bool suspend);
1415 // check if effects should be suspend or restored when a given effect is enable or disabled
Eric Laurenta85a74a2011-10-19 11:44:54 -07001416 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurent59255e42011-07-27 19:49:51 -07001417 bool enabled);
1418
Mathias Agopian65ab4712010-07-14 17:59:35 -07001419 status_t dump(int fd, const Vector<String16>& args);
1420
1421 protected:
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001422 friend class AudioFlinger;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001423 EffectChain(const EffectChain&);
1424 EffectChain& operator =(const EffectChain&);
1425
Eric Laurent59255e42011-07-27 19:49:51 -07001426 class SuspendedEffectDesc : public RefBase {
1427 public:
1428 SuspendedEffectDesc() : mRefCount(0) {}
1429
1430 int mRefCount;
1431 effect_uuid_t mType;
1432 wp<EffectModule> mEffect;
1433 };
1434
1435 // get a list of effect modules to suspend when an effect of the type
1436 // passed is enabled.
Glenn Kastend0539712012-01-30 12:56:03 -08001437 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects);
1438
Eric Laurent59255e42011-07-27 19:49:51 -07001439 // get an effect module if it is currently enable
1440 sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type);
Eric Laurentdb7c0792011-08-10 10:37:50 -07001441 // true if the effect whose descriptor is passed can be suspended
1442 // OEMs can modify the rules implemented in this method to exclude specific effect
1443 // types or implementations from the suspend/restore mechanism.
1444 bool isEffectEligibleForSuspend(const effect_descriptor_t& desc);
Eric Laurent59255e42011-07-27 19:49:51 -07001445
Mathias Agopian65ab4712010-07-14 17:59:35 -07001446 wp<ThreadBase> mThread; // parent mixer thread
1447 Mutex mLock; // mutex protecting effect list
1448 Vector<sp<EffectModule> > mEffects; // list of effect modules
1449 int mSessionId; // audio session ID
1450 int16_t *mInBuffer; // chain input buffer
1451 int16_t *mOutBuffer; // chain output buffer
Eric Laurentb469b942011-05-09 12:09:06 -07001452 volatile int32_t mActiveTrackCnt; // number of active tracks connected
1453 volatile int32_t mTrackCnt; // number of tracks connected
Eric Laurent544fe9b2011-11-11 15:42:52 -08001454 int32_t mTailBufferCount; // current effect tail buffer count
1455 int32_t mMaxTailBuffers; // maximum effect tail buffers
Mathias Agopian65ab4712010-07-14 17:59:35 -07001456 bool mOwnInBuffer; // true if the chain owns its input buffer
Eric Laurentcab11242010-07-15 12:50:15 -07001457 int mVolumeCtrlIdx; // index of insert effect having control over volume
1458 uint32_t mLeftVolume; // previous volume on left channel
1459 uint32_t mRightVolume; // previous volume on right channel
Eric Laurentf997cab2010-07-19 06:24:46 -07001460 uint32_t mNewLeftVolume; // new volume on left channel
1461 uint32_t mNewRightVolume; // new volume on right channel
Eric Laurentde070132010-07-13 04:45:46 -07001462 uint32_t mStrategy; // strategy for this effect chain
Eric Laurent59255e42011-07-27 19:49:51 -07001463 // mSuspendedEffects lists all effect currently suspended in the chain
1464 // use effect type UUID timelow field as key. There is no real risk of identical
1465 // timeLow fields among effect type UUIDs.
1466 KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001467 };
1468
Glenn Kastenaed850d2012-01-26 09:46:34 -08001469 // AudioStreamOut and AudioStreamIn are immutable, so their fields are const.
1470 // For emphasis, we could also make all pointers to them be "const *",
1471 // but that would clutter the code unnecessarily.
1472
Dima Zavin799a70e2011-04-18 16:57:27 -07001473 struct AudioStreamOut {
Glenn Kastenaed850d2012-01-26 09:46:34 -08001474 audio_hw_device_t* const hwDev;
1475 audio_stream_out_t* const stream;
Dima Zavin799a70e2011-04-18 16:57:27 -07001476
1477 AudioStreamOut(audio_hw_device_t *dev, audio_stream_out_t *out) :
1478 hwDev(dev), stream(out) {}
1479 };
1480
1481 struct AudioStreamIn {
Glenn Kastenaed850d2012-01-26 09:46:34 -08001482 audio_hw_device_t* const hwDev;
1483 audio_stream_in_t* const stream;
Dima Zavin799a70e2011-04-18 16:57:27 -07001484
1485 AudioStreamIn(audio_hw_device_t *dev, audio_stream_in_t *in) :
1486 hwDev(dev), stream(in) {}
1487 };
1488
Glenn Kasten99e53b82012-01-19 08:59:58 -08001489 // for mAudioSessionRefs only
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001490 struct AudioSessionRef {
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001491 // FIXME rename parameter names when fields get "m" prefix
1492 AudioSessionRef(int sessionid_, pid_t pid_) :
1493 sessionid(sessionid_), pid(pid_), cnt(1) {}
1494 const int sessionid;
1495 const pid_t pid;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001496 int cnt;
1497 };
1498
Mathias Agopian65ab4712010-07-14 17:59:35 -07001499 friend class RecordThread;
1500 friend class PlaybackThread;
1501
John Grossman4ff14ba2012-02-08 16:37:41 -08001502 enum master_volume_support {
1503 // MVS_NONE:
1504 // Audio HAL has no support for master volume, either setting or
1505 // getting. All master volume control must be implemented in SW by the
1506 // AudioFlinger mixing core.
1507 MVS_NONE,
1508
1509 // MVS_SETONLY:
1510 // Audio HAL has support for setting master volume, but not for getting
1511 // master volume (original HAL design did not include a getter).
1512 // AudioFlinger needs to keep track of the last set master volume in
1513 // addition to needing to set an initial, default, master volume at HAL
1514 // load time.
1515 MVS_SETONLY,
1516
1517 // MVS_FULL:
1518 // Audio HAL has support both for setting and getting master volume.
1519 // AudioFlinger should send all set and get master volume requests
1520 // directly to the HAL.
1521 MVS_FULL,
1522 };
1523
Mathias Agopian65ab4712010-07-14 17:59:35 -07001524 mutable Mutex mLock;
1525
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001526 DefaultKeyedVector< pid_t, wp<Client> > mClients; // see ~Client()
Mathias Agopian65ab4712010-07-14 17:59:35 -07001527
1528 mutable Mutex mHardwareLock;
Glenn Kasten2b213bc2012-02-02 14:05:20 -08001529
1530 // These two fields are immutable after onFirstRef(), so no lock needed to access
1531 audio_hw_device_t* mPrimaryHardwareDev; // mAudioHwDevs[0] or NULL
Dima Zavin799a70e2011-04-18 16:57:27 -07001532 Vector<audio_hw_device_t*> mAudioHwDevs;
Glenn Kasten2f732eb2012-01-26 09:48:03 -08001533
1534 enum hardware_call_state {
1535 AUDIO_HW_IDLE = 0,
1536 AUDIO_HW_INIT,
1537 AUDIO_HW_OUTPUT_OPEN,
1538 AUDIO_HW_OUTPUT_CLOSE,
1539 AUDIO_HW_INPUT_OPEN,
1540 AUDIO_HW_INPUT_CLOSE,
1541 AUDIO_HW_STANDBY,
1542 AUDIO_HW_SET_MASTER_VOLUME,
1543 AUDIO_HW_GET_ROUTING,
1544 AUDIO_HW_SET_ROUTING,
1545 AUDIO_HW_GET_MODE,
1546 AUDIO_HW_SET_MODE,
1547 AUDIO_HW_GET_MIC_MUTE,
1548 AUDIO_HW_SET_MIC_MUTE,
1549 AUDIO_SET_VOICE_VOLUME,
1550 AUDIO_SET_PARAMETER,
Glenn Kasten2b213bc2012-02-02 14:05:20 -08001551 AUDIO_HW_GET_INPUT_BUFFER_SIZE,
John Grossman4ff14ba2012-02-08 16:37:41 -08001552 AUDIO_HW_GET_MASTER_VOLUME,
Glenn Kasten2f732eb2012-01-26 09:48:03 -08001553 };
1554
Glenn Kastena4454b42012-01-04 11:02:33 -08001555 mutable hardware_call_state mHardwareStatus; // for dump only
Mathias Agopian65ab4712010-07-14 17:59:35 -07001556
1557
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001558 DefaultKeyedVector< audio_io_handle_t, sp<PlaybackThread> > mPlaybackThreads;
Glenn Kastenb7bf7962012-02-08 12:36:25 -08001559 stream_type_t mStreamTypes[AUDIO_STREAM_CNT];
Glenn Kasten98067102011-12-13 11:47:54 -08001560
1561 // both are protected by mLock
Mathias Agopian65ab4712010-07-14 17:59:35 -07001562 float mMasterVolume;
John Grossman4ff14ba2012-02-08 16:37:41 -08001563 float mMasterVolumeSW;
1564 master_volume_support mMasterVolumeSupportLvl;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001565 bool mMasterMute;
1566
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001567 DefaultKeyedVector< audio_io_handle_t, sp<RecordThread> > mRecordThreads;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001568
1569 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
Glenn Kasten99e53b82012-01-19 08:59:58 -08001570 volatile int32_t mNextUniqueId; // updated by android_atomic_inc
Glenn Kastenf78aee72012-01-04 11:00:47 -08001571 audio_mode_t mMode;
Eric Laurentbee53372011-08-29 12:42:48 -07001572 bool mBtNrecIsOff;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001573
Glenn Kasten99e53b82012-01-19 08:59:58 -08001574 // protected by mLock
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001575 Vector<AudioSessionRef*> mAudioSessionRefs;
Glenn Kasten98067102011-12-13 11:47:54 -08001576
John Grossman4ff14ba2012-02-08 16:37:41 -08001577 float masterVolume_l() const;
1578 float masterVolumeSW_l() const { return mMasterVolumeSW; }
Glenn Kasten98067102011-12-13 11:47:54 -08001579 bool masterMute_l() const { return mMasterMute; }
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001580
1581private:
1582 sp<Client> registerPid_l(pid_t pid); // always returns non-0
1583
Mathias Agopian65ab4712010-07-14 17:59:35 -07001584};
1585
Dima Zavin799a70e2011-04-18 16:57:27 -07001586
Mathias Agopian65ab4712010-07-14 17:59:35 -07001587// ----------------------------------------------------------------------------
1588
1589}; // namespace android
1590
1591#endif // ANDROID_AUDIO_FLINGER_H