blob: 2e259c062302c78f8e0904e482ee88d22d1fb991 [file] [log] [blame]
Glenn Kastenb3db2132012-01-19 08:59:58 -08001/*
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002**
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
John Grossmand8cf2962012-02-08 16:37:41 -080025#include <common_time/cc_helper.h>
26
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027#include <media/IAudioFlinger.h>
28#include <media/IAudioFlingerClient.h>
29#include <media/IAudioTrack.h>
30#include <media/IAudioRecord.h>
Glenn Kasten34f9f8b2012-01-20 17:00:00 -080031#include <media/AudioSystem.h>
John Grossmand8cf2962012-02-08 16:37:41 -080032#include <media/AudioTrack.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033
34#include <utils/Atomic.h>
35#include <utils/Errors.h>
36#include <utils/threads.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037#include <utils/SortedVector.h>
Dima Zavin31f188892011-04-18 16:57:27 -070038#include <utils/TypeHelpers.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039#include <utils/Vector.h>
40
Mathias Agopian24651682010-07-14 18:41:18 -070041#include <binder/BinderService.h>
42#include <binder/MemoryDealer.h>
43
Dima Zavin34bb4192011-05-11 14:15:23 -070044#include <system/audio.h>
Dima Zavin290029d2011-06-13 18:16:26 -070045#include <hardware/audio.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
47#include "AudioBufferProvider.h"
48
Eric Laurent6dbdc402011-07-22 09:04:31 -070049#include <powermanager/IPowerManager.h>
50
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051namespace android {
52
53class audio_track_cblk_t;
Eric Laurent65b65452010-06-01 23:49:17 -070054class effect_param_cblk_t;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055class AudioMixer;
56class AudioBuffer;
Eric Laurenta553c252009-07-17 12:17:14 -070057class AudioResampler;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059// ----------------------------------------------------------------------------
60
John Grossmand8cf2962012-02-08 16:37:41 -080061static const nsecs_t kDefaultStandbyTimeInNsecs = seconds(3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062
Mathias Agopian24651682010-07-14 18:41:18 -070063class AudioFlinger :
64 public BinderService<AudioFlinger>,
65 public BnAudioFlinger
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066{
Mathias Agopian24651682010-07-14 18:41:18 -070067 friend class BinderService<AudioFlinger>;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068public:
Glenn Kasten99c2fd32012-01-06 07:46:30 -080069 static const char* getServiceName() { return "media.audio_flinger"; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070
71 virtual status_t dump(int fd, const Vector<String16>& args);
72
Glenn Kasten00931bb2012-01-26 09:48:03 -080073 // IAudioFlinger interface, in binder opcode order
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 virtual sp<IAudioTrack> createTrack(
75 pid_t pid,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -080076 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -080078 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -070079 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 int frameCount,
81 uint32_t flags,
82 const sp<IMemory>& sharedBuffer,
Glenn Kasten39d00cb2012-01-17 11:09:42 -080083 audio_io_handle_t output,
John Grossmand8cf2962012-02-08 16:37:41 -080084 bool isTimed,
Eric Laurent65b65452010-06-01 23:49:17 -070085 int *sessionId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 status_t *status);
87
Glenn Kasten00931bb2012-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 Kasten39d00cb2012-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;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104
105 virtual status_t setMasterVolume(float value);
106 virtual status_t setMasterMute(bool muted);
107
108 virtual float masterVolume() const;
John Grossmand8cf2962012-02-08 16:37:41 -0800109 virtual float masterVolumeSW() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 virtual bool masterMute() const;
111
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800112 virtual status_t setStreamVolume(audio_stream_type_t stream, float value,
113 audio_io_handle_t output);
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800114 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800116 virtual float streamVolume(audio_stream_type_t stream,
117 audio_io_handle_t output) const;
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800118 virtual bool streamMute(audio_stream_type_t stream) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119
Glenn Kastenaccb1142012-01-04 11:00:47 -0800120 virtual status_t setMode(audio_mode_t mode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121
122 virtual status_t setMicMute(bool state);
123 virtual bool getMicMute() const;
124
Glenn Kasten39d00cb2012-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;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127
128 virtual void registerClient(const sp<IAudioFlingerClient>& client);
Eric Laurenta553c252009-07-17 12:17:14 -0700129
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800130 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount) const;
Eric Laurenta553c252009-07-17 12:17:14 -0700131
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800132 virtual audio_io_handle_t openOutput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -0700133 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800134 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -0700135 uint32_t *pChannels,
136 uint32_t *pLatencyMs,
137 uint32_t flags);
138
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800139 virtual audio_io_handle_t openDuplicateOutput(audio_io_handle_t output1,
140 audio_io_handle_t output2);
Eric Laurenta553c252009-07-17 12:17:14 -0700141
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800142 virtual status_t closeOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700143
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800144 virtual status_t suspendOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700145
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800146 virtual status_t restoreOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700147
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800148 virtual audio_io_handle_t openInput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -0700149 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800150 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -0700151 uint32_t *pChannels,
Glenn Kasten882c0a22012-01-27 12:32:34 -0800152 audio_in_acoustics_t acoustics);
Eric Laurenta553c252009-07-17 12:17:14 -0700153
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800154 virtual status_t closeInput(audio_io_handle_t input);
Eric Laurenta553c252009-07-17 12:17:14 -0700155
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800156 virtual status_t setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700157
Eric Laurent415f3e22009-10-21 08:14:22 -0700158 virtual status_t setVoiceVolume(float volume);
159
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800160 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
161 audio_io_handle_t output) const;
Eric Laurent0986e792010-01-19 17:37:09 -0800162
Glenn Kasten00931bb2012-01-26 09:48:03 -0800163 virtual unsigned int getInputFramesLost(audio_io_handle_t ioHandle) const;
164
Eric Laurent65b65452010-06-01 23:49:17 -0700165 virtual int newAudioSessionId();
166
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700167 virtual void acquireAudioSessionId(int audioSession);
168
169 virtual void releaseAudioSessionId(int audioSession);
170
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800171 virtual status_t queryNumberEffects(uint32_t *numEffects) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700172
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800173 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700174
Glenn Kasten67313332012-01-30 07:40:52 -0800175 virtual status_t getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800176 effect_descriptor_t *descriptor) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700177
178 virtual sp<IEffect> createEffect(pid_t pid,
179 effect_descriptor_t *pDesc,
180 const sp<IEffectClient>& effectClient,
181 int32_t priority,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800182 audio_io_handle_t io,
Eric Laurent65b65452010-06-01 23:49:17 -0700183 int sessionId,
184 status_t *status,
185 int *id,
186 int *enabled);
187
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800188 virtual status_t moveEffects(int sessionId, audio_io_handle_t srcOutput,
189 audio_io_handle_t dstOutput);
Eric Laurent53334cd2010-06-23 17:38:20 -0700190
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800191 virtual status_t onTransact(
192 uint32_t code,
193 const Parcel& data,
194 Parcel* reply,
195 uint32_t flags);
196
Glenn Kasten00931bb2012-01-26 09:48:03 -0800197 // end of IAudioFlinger interface
198
199private:
Glenn Kastenaccb1142012-01-04 11:00:47 -0800200 audio_mode_t getMode() const { return mMode; }
Eric Laurent53334cd2010-06-23 17:38:20 -0700201
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800202 bool btNrecIsOff() const { return mBtNrecIsOff; }
Eric Laurent6639b552011-08-01 09:52:20 -0700203
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204 AudioFlinger();
205 virtual ~AudioFlinger();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206
Glenn Kastenad8d1752012-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
Glenn Kasten67cb3122012-03-01 17:10:56 -0800210 // RefBase
Dima Zavin2986f5b2011-04-19 19:04:32 -0700211 virtual void onFirstRef();
Glenn Kasten67cb3122012-03-01 17:10:56 -0800212
Dima Zavin31f188892011-04-18 16:57:27 -0700213 audio_hw_device_t* findSuitableHwDev_l(uint32_t devices);
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700214 void purgeStaleEffects_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215
John Grossmand8cf2962012-02-08 16:37:41 -0800216 static nsecs_t mStandbyTimeInNsecs;
217
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218 // Internal dump utilites.
219 status_t dumpPermissionDenial(int fd, const Vector<String16>& args);
220 status_t dumpClients(int fd, const Vector<String16>& args);
221 status_t dumpInternals(int fd, const Vector<String16>& args);
222
223 // --- Client ---
224 class Client : public RefBase {
225 public:
226 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
227 virtual ~Client();
Glenn Kasten1f812f72012-01-30 10:15:48 -0800228 sp<MemoryDealer> heap() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229 pid_t pid() const { return mPid; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800230 sp<AudioFlinger> audioFlinger() const { return mAudioFlinger; }
Eric Laurentb9481d82009-09-17 05:12:56 -0700231
John Grossmand8cf2962012-02-08 16:37:41 -0800232 bool reserveTimedTrack();
233 void releaseTimedTrack();
234
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235 private:
236 Client(const Client&);
237 Client& operator = (const Client&);
Glenn Kastendc3ac852012-01-25 15:28:08 -0800238 const sp<AudioFlinger> mAudioFlinger;
239 const sp<MemoryDealer> mMemoryDealer;
240 const pid_t mPid;
John Grossmand8cf2962012-02-08 16:37:41 -0800241
242 Mutex mTimedTrackLock;
243 int mTimedTrackCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244 };
245
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700246 // --- Notification Client ---
247 class NotificationClient : public IBinder::DeathRecipient {
248 public:
249 NotificationClient(const sp<AudioFlinger>& audioFlinger,
250 const sp<IAudioFlingerClient>& client,
251 pid_t pid);
252 virtual ~NotificationClient();
253
Glenn Kastendc3ac852012-01-25 15:28:08 -0800254 sp<IAudioFlingerClient> audioFlingerClient() const { return mAudioFlingerClient; }
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700255
256 // IBinder::DeathRecipient
257 virtual void binderDied(const wp<IBinder>& who);
258
259 private:
260 NotificationClient(const NotificationClient&);
261 NotificationClient& operator = (const NotificationClient&);
262
Glenn Kastendc3ac852012-01-25 15:28:08 -0800263 const sp<AudioFlinger> mAudioFlinger;
264 const pid_t mPid;
265 const sp<IAudioFlingerClient> mAudioFlingerClient;
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700266 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800267
268 class TrackHandle;
269 class RecordHandle;
Eric Laurenta553c252009-07-17 12:17:14 -0700270 class RecordThread;
271 class PlaybackThread;
272 class MixerThread;
273 class DirectOutputThread;
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800274 class DuplicatingThread;
Eric Laurenta553c252009-07-17 12:17:14 -0700275 class Track;
276 class RecordTrack;
Eric Laurent65b65452010-06-01 23:49:17 -0700277 class EffectModule;
278 class EffectHandle;
279 class EffectChain;
Dima Zavin31f188892011-04-18 16:57:27 -0700280 struct AudioStreamOut;
281 struct AudioStreamIn;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282
Eric Laurenta553c252009-07-17 12:17:14 -0700283 class ThreadBase : public Thread {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284 public:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285
Glenn Kastenefd511a2012-01-26 10:38:26 -0800286 enum type_t {
Eric Laurent464d5b32011-06-17 21:29:58 -0700287 MIXER, // Thread class is MixerThread
288 DIRECT, // Thread class is DirectOutputThread
289 DUPLICATING, // Thread class is DuplicatingThread
290 RECORD // Thread class is RecordThread
291 };
292
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800293 ThreadBase (const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id, uint32_t device, type_t type);
Glenn Kastenefd511a2012-01-26 10:38:26 -0800294 virtual ~ThreadBase();
295
Eric Laurent3fdb1262009-11-07 00:01:32 -0800296 status_t dumpBase(int fd, const Vector<String16>& args);
Eric Laurent1345d332011-07-24 17:49:51 -0700297 status_t dumpEffectChains(int fd, const Vector<String16>& args);
Eric Laurent3fdb1262009-11-07 00:01:32 -0800298
Eric Laurent6dbdc402011-07-22 09:04:31 -0700299 void clearPowerManager();
300
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 // base for record and playback
302 class TrackBase : public AudioBufferProvider, public RefBase {
303
304 public:
305 enum track_state {
306 IDLE,
307 TERMINATED,
Glenn Kastenb3db2132012-01-19 08:59:58 -0800308 // These are order-sensitive; do not change order without reviewing the impact.
309 // In particular there are assumptions about > STOPPED.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800310 STOPPED,
311 RESUMING,
312 ACTIVE,
313 PAUSING,
314 PAUSED
315 };
316
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800317 TrackBase(ThreadBase *thread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800318 const sp<Client>& client,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800319 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800320 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700321 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800322 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -0700323 const sp<IMemory>& sharedBuffer,
324 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800325 virtual ~TrackBase();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326
Glenn Kasten6a20b262012-02-02 10:56:47 -0800327 virtual status_t start(pid_t tid) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328 virtual void stop() = 0;
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800329 sp<IMemory> getCblk() const { return mCblkMemory; }
Eric Laurent6c30a712009-08-10 23:22:32 -0700330 audio_track_cblk_t* cblk() const { return mCblk; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800331 int sessionId() const { return mSessionId; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332
333 protected:
Eric Laurenta553c252009-07-17 12:17:14 -0700334 friend class ThreadBase;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800335 friend class RecordHandle;
Eric Laurent2c817f52009-07-23 13:17:39 -0700336 friend class PlaybackThread;
337 friend class RecordThread;
338 friend class MixerThread;
339 friend class DirectOutputThread;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800340
341 TrackBase(const TrackBase&);
342 TrackBase& operator = (const TrackBase&);
343
Glenn Kastenc2db1192012-02-22 10:47:35 -0800344 // AudioBufferProvider interface
345 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800346 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
347
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800348 audio_format_t format() const {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 return mFormat;
350 }
351
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800352 int channelCount() const { return mChannelCount; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800354 uint32_t channelMask() const { return mChannelMask; }
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700355
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800356 int sampleRate() const; // FIXME inline after cblk sr moved
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800357
358 void* getBuffer(uint32_t offset, uint32_t frames) const;
359
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 bool isStopped() const {
361 return mState == STOPPED;
362 }
363
364 bool isTerminated() const {
365 return mState == TERMINATED;
366 }
367
368 bool step();
369 void reset();
370
Glenn Kastendc3ac852012-01-25 15:28:08 -0800371 const wp<ThreadBase> mThread;
372 /*const*/ sp<Client> mClient; // see explanation at ~TrackBase() why not const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800373 sp<IMemory> mCblkMemory;
374 audio_track_cblk_t* mCblk;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800375 void* mBuffer;
376 void* mBufferEnd;
377 uint32_t mFrameCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 // we don't really need a lock for these
Glenn Kasten56356202012-01-26 13:39:18 -0800379 track_state mState;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800380 const audio_format_t mFormat;
Glenn Kasten35269822012-02-21 10:35:56 -0800381 bool mStepServerFailed;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800382 const int mSessionId;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700383 uint8_t mChannelCount;
384 uint32_t mChannelMask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800385 };
386
Eric Laurenta553c252009-07-17 12:17:14 -0700387 class ConfigEvent {
388 public:
389 ConfigEvent() : mEvent(0), mParam(0) {}
390
391 int mEvent;
392 int mParam;
393 };
394
Eric Laurent6dbdc402011-07-22 09:04:31 -0700395 class PMDeathRecipient : public IBinder::DeathRecipient {
396 public:
397 PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
398 virtual ~PMDeathRecipient() {}
399
400 // IBinder::DeathRecipient
401 virtual void binderDied(const wp<IBinder>& who);
402
403 private:
404 PMDeathRecipient(const PMDeathRecipient&);
405 PMDeathRecipient& operator = (const PMDeathRecipient&);
406
407 wp<ThreadBase> mThread;
408 };
409
Eric Laurent464d5b32011-06-17 21:29:58 -0700410 virtual status_t initCheck() const = 0;
Glenn Kastenefd511a2012-01-26 10:38:26 -0800411 type_t type() const { return mType; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800412 uint32_t sampleRate() const { return mSampleRate; }
413 int channelCount() const { return mChannelCount; }
414 audio_format_t format() const { return mFormat; }
415 size_t frameCount() const { return mFrameCount; }
Eric Laurenta553c252009-07-17 12:17:14 -0700416 void wakeUp() { mWaitWorkCV.broadcast(); }
Glenn Kasten761286f2012-01-06 08:39:38 -0800417 // Should be "virtual status_t requestExitAndWait()" and override same
418 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
Eric Laurenta553c252009-07-17 12:17:14 -0700419 void exit();
420 virtual bool checkForNewParameters_l() = 0;
421 virtual status_t setParameters(const String8& keyValuePairs);
422 virtual String8 getParameters(const String8& keys) = 0;
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700423 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700424 void sendConfigEvent(int event, int param = 0);
Eric Laurent8fce46a2009-08-04 09:45:33 -0700425 void sendConfigEvent_l(int event, int param = 0);
Eric Laurenta553c252009-07-17 12:17:14 -0700426 void processConfigEvents();
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800427 audio_io_handle_t id() const { return mId;}
Glenn Kasten0fccd352012-02-24 15:42:17 -0800428 bool standby() const { return mStandby; }
429 uint32_t device() const { return mDevice; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700430 virtual audio_stream_t* stream() = 0;
431
432 sp<EffectHandle> createEffect_l(
433 const sp<AudioFlinger::Client>& client,
434 const sp<IEffectClient>& effectClient,
435 int32_t priority,
436 int sessionId,
437 effect_descriptor_t *desc,
438 int *enabled,
439 status_t *status);
440 void disconnectEffect(const sp< EffectModule>& effect,
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700441 const wp<EffectHandle>& handle,
Glenn Kasten29441ff2012-02-03 10:32:24 -0800442 bool unpinIfLast);
Eric Laurent464d5b32011-06-17 21:29:58 -0700443
444 // return values for hasAudioSession (bit field)
445 enum effect_state {
446 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
447 // effect
448 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
449 // track
450 };
451
452 // get effect chain corresponding to session Id.
453 sp<EffectChain> getEffectChain(int sessionId);
454 // same as getEffectChain() but must be called with ThreadBase mutex locked
455 sp<EffectChain> getEffectChain_l(int sessionId);
456 // add an effect chain to the chain list (mEffectChains)
457 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
458 // remove an effect chain from the chain list (mEffectChains)
459 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
Glenn Kastenf2218b72012-02-24 15:42:48 -0800460 // lock all effect chains Mutexes. Must be called before releasing the
Eric Laurent464d5b32011-06-17 21:29:58 -0700461 // ThreadBase mutex before processing the mixer and effects. This guarantees the
462 // integrity of the chains during the process.
Glenn Kastenf2218b72012-02-24 15:42:48 -0800463 // Also sets the parameter 'effectChains' to current value of mEffectChains.
Eric Laurent464d5b32011-06-17 21:29:58 -0700464 void lockEffectChains_l(Vector<sp <EffectChain> >& effectChains);
465 // unlock effect chains after process
Glenn Kasten0fccd352012-02-24 15:42:17 -0800466 void unlockEffectChains(const Vector<sp<EffectChain> >& effectChains);
Eric Laurent464d5b32011-06-17 21:29:58 -0700467 // set audio mode to all effect chains
Glenn Kastenaccb1142012-01-04 11:00:47 -0800468 void setMode(audio_mode_t mode);
Eric Laurent464d5b32011-06-17 21:29:58 -0700469 // get effect module with corresponding ID on specified audio session
470 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
471 // add and effect module. Also creates the effect chain is none exists for
472 // the effects audio session
473 status_t addEffect_l(const sp< EffectModule>& effect);
474 // remove and effect module. Also removes the effect chain is this was the last
475 // effect
476 void removeEffect_l(const sp< EffectModule>& effect);
477 // detach all tracks connected to an auxiliary effect
478 virtual void detachAuxEffect_l(int effectId) {}
479 // returns either EFFECT_SESSION if effects on this audio session exist in one
480 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
481 virtual uint32_t hasAudioSession(int sessionId) = 0;
482 // the value returned by default implementation is not important as the
483 // strategy is only meaningful for PlaybackThread which implements this method
484 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
Eric Laurenta553c252009-07-17 12:17:14 -0700485
Eric Laurentf82fccd2011-07-27 19:49:51 -0700486 // suspend or restore effect according to the type of effect passed. a NULL
487 // type pointer means suspend all effects in the session
488 void setEffectSuspended(const effect_uuid_t *type,
489 bool suspend,
490 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
491 // check if some effects must be suspended/restored when an effect is enabled
492 // or disabled
Eric Laurent7fa1cee2011-10-19 11:44:54 -0700493 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurentf82fccd2011-07-27 19:49:51 -0700494 bool enabled,
495 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent7fa1cee2011-10-19 11:44:54 -0700496 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
497 bool enabled,
498 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent2c817f52009-07-23 13:17:39 -0700499 mutable Mutex mLock;
500
Eric Laurenta553c252009-07-17 12:17:14 -0700501 protected:
502
Eric Laurentf82fccd2011-07-27 19:49:51 -0700503 // entry describing an effect being suspended in mSuspendedSessions keyed vector
504 class SuspendedSessionDesc : public RefBase {
505 public:
506 SuspendedSessionDesc() : mRefCount(0) {}
507
508 int mRefCount; // number of active suspend requests
509 effect_uuid_t mType; // effect type UUID
510 };
511
Eric Laurent6dbdc402011-07-22 09:04:31 -0700512 void acquireWakeLock();
513 void acquireWakeLock_l();
514 void releaseWakeLock();
515 void releaseWakeLock_l();
Eric Laurentf82fccd2011-07-27 19:49:51 -0700516 void setEffectSuspended_l(const effect_uuid_t *type,
517 bool suspend,
518 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
519 // updated mSuspendedSessions when an effect suspended or restored
520 void updateSuspendedSessions_l(const effect_uuid_t *type,
521 bool suspend,
522 int sessionId);
523 // check if some effects must be suspended when an effect chain is added
524 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
Eric Laurent6dbdc402011-07-22 09:04:31 -0700525
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700526 friend class AudioFlinger;
Eric Laurenta553c252009-07-17 12:17:14 -0700527 friend class Track;
528 friend class TrackBase;
529 friend class PlaybackThread;
530 friend class MixerThread;
531 friend class DirectOutputThread;
532 friend class DuplicatingThread;
533 friend class RecordThread;
534 friend class RecordTrack;
535
Glenn Kastenefd511a2012-01-26 10:38:26 -0800536 const type_t mType;
Glenn Kastenbf106572012-03-01 09:21:37 -0800537
538 // Used by parameters, config events, addTrack_l, exit
Eric Laurenta553c252009-07-17 12:17:14 -0700539 Condition mWaitWorkCV;
Glenn Kastenbf106572012-03-01 09:21:37 -0800540
Glenn Kastendc3ac852012-01-25 15:28:08 -0800541 const sp<AudioFlinger> mAudioFlinger;
Eric Laurenta553c252009-07-17 12:17:14 -0700542 uint32_t mSampleRate;
543 size_t mFrameCount;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700544 uint32_t mChannelMask;
Eric Laurentb0a01472010-05-14 05:45:46 -0700545 uint16_t mChannelCount;
Glenn Kastenfaf354d2012-01-11 09:48:27 -0800546 size_t mFrameSize;
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800547 audio_format_t mFormat;
Glenn Kastenbf106572012-03-01 09:21:37 -0800548
549 // Parameter sequence by client: binder thread calling setParameters():
550 // 1. Lock mLock
551 // 2. Append to mNewParameters
552 // 3. mWaitWorkCV.signal
553 // 4. mParamCond.waitRelative with timeout
554 // 5. read mParamStatus
555 // 6. mWaitWorkCV.signal
556 // 7. Unlock
557 //
558 // Parameter sequence by server: threadLoop calling checkForNewParameters_l():
559 // 1. Lock mLock
560 // 2. If there is an entry in mNewParameters proceed ...
561 // 2. Read first entry in mNewParameters
562 // 3. Process
563 // 4. Remove first entry from mNewParameters
564 // 5. Set mParamStatus
565 // 6. mParamCond.signal
566 // 7. mWaitWorkCV.wait with timeout (this is to avoid overwriting mParamStatus)
567 // 8. Unlock
Eric Laurenta553c252009-07-17 12:17:14 -0700568 Condition mParamCond;
Eric Laurent8fce46a2009-08-04 09:45:33 -0700569 Vector<String8> mNewParameters;
Eric Laurenta553c252009-07-17 12:17:14 -0700570 status_t mParamStatus;
Glenn Kastenbf106572012-03-01 09:21:37 -0800571
Glenn Kasten4b220f02011-12-13 11:50:00 -0800572 Vector<ConfigEvent> mConfigEvents;
Eric Laurenta553c252009-07-17 12:17:14 -0700573 bool mStandby;
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800574 const audio_io_handle_t mId;
Eric Laurent464d5b32011-06-17 21:29:58 -0700575 Vector< sp<EffectChain> > mEffectChains;
576 uint32_t mDevice; // output device for PlaybackThread
577 // input + output devices for RecordThread
Glenn Kasten86e33622012-02-28 12:30:08 -0800578 static const int kNameLength = 16; // prctl(PR_SET_NAME) limit
Eric Laurent6dbdc402011-07-22 09:04:31 -0700579 char mName[kNameLength];
580 sp<IPowerManager> mPowerManager;
581 sp<IBinder> mWakeLockToken;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800582 const sp<PMDeathRecipient> mDeathRecipient;
Eric Laurentf82fccd2011-07-27 19:49:51 -0700583 // list of suspended effects per session and per type. The first vector is
584 // keyed by session ID, the second by type UUID timeLow field
585 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > > mSuspendedSessions;
Eric Laurenta553c252009-07-17 12:17:14 -0700586 };
587
Glenn Kasten37733342012-02-08 12:36:25 -0800588 struct stream_type_t {
589 stream_type_t()
590 : volume(1.0f),
591 mute(false),
592 valid(true)
593 {
594 }
595 float volume;
596 bool mute;
597 bool valid;
598 };
599
Eric Laurenta553c252009-07-17 12:17:14 -0700600 // --- PlaybackThread ---
601 class PlaybackThread : public ThreadBase {
602 public:
603
Eric Laurent059b4be2009-11-09 23:32:22 -0800604 enum mixer_state {
Glenn Kastenf2218b72012-02-24 15:42:48 -0800605 MIXER_IDLE, // no active tracks
606 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
607 MIXER_TRACKS_READY // at least one active track, and at least one track has data
608 // standby mode does not have an enum value
609 // suspend by audio policy manager is orthogonal to mixer state
Eric Laurent059b4be2009-11-09 23:32:22 -0800610 };
611
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800612 // playback track
613 class Track : public TrackBase {
614 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800615 Track( PlaybackThread *thread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800616 const sp<Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800617 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800618 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800619 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700620 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800621 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -0700622 const sp<IMemory>& sharedBuffer,
623 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800624 virtual ~Track();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800625
626 void dump(char* buffer, size_t size);
Glenn Kasten6a20b262012-02-02 10:56:47 -0800627 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628 virtual void stop();
629 void pause();
630
631 void flush();
632 void destroy();
633 void mute(bool);
Eric Laurenta553c252009-07-17 12:17:14 -0700634 int name() const {
635 return mName;
636 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800637
Glenn Kastenaae26c82012-02-08 12:35:35 -0800638 audio_stream_type_t streamType() const {
Eric Laurent4bc035a2009-05-22 09:18:15 -0700639 return mStreamType;
640 }
Eric Laurent65b65452010-06-01 23:49:17 -0700641 status_t attachAuxEffect(int EffectId);
642 void setAuxBuffer(int EffectId, int32_t *buffer);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800643 int32_t *auxBuffer() const { return mAuxBuffer; }
Eric Laurent65b65452010-06-01 23:49:17 -0700644 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800645 int16_t *mainBuffer() const { return mMainBuffer; }
646 int auxEffectId() const { return mAuxEffectId; }
Eric Laurent4bc035a2009-05-22 09:18:15 -0700647
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800648 protected:
Eric Laurenta553c252009-07-17 12:17:14 -0700649 friend class ThreadBase;
Eric Laurent2c817f52009-07-23 13:17:39 -0700650 friend class TrackHandle;
651 friend class PlaybackThread;
652 friend class MixerThread;
653 friend class DirectOutputThread;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654
655 Track(const Track&);
656 Track& operator = (const Track&);
657
Glenn Kastenc2db1192012-02-22 10:47:35 -0800658 // AudioBufferProvider interface
659 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
660 // releaseBuffer() not overridden
661
John Grossmand8cf2962012-02-08 16:37:41 -0800662 virtual uint32_t framesReady() const;
663
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800664 bool isMuted() const { return mMute; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800665 bool isPausing() const {
666 return mState == PAUSING;
667 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800668 bool isPaused() const {
669 return mState == PAUSED;
670 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800671 bool isReady() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800672 void setPaused() { mState = PAUSED; }
673 void reset();
674
Eric Laurent49f02be2009-11-19 09:00:56 -0800675 bool isOutputTrack() const {
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700676 return (mStreamType == AUDIO_STREAM_CNT);
Eric Laurent49f02be2009-11-19 09:00:56 -0800677 }
678
John Grossmand8cf2962012-02-08 16:37:41 -0800679 virtual bool isTimedTrack() const { return false; }
680
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800681 // we don't really need a lock for these
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800682 volatile bool mMute;
683 // FILLED state is used for suppressing volume ramp at begin of playing
684 enum {FS_FILLING, FS_FILLED, FS_ACTIVE};
685 mutable uint8_t mFillingUpStatus;
686 int8_t mRetryCount;
687 sp<IMemory> mSharedBuffer;
688 bool mResetDone;
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800689 audio_stream_type_t mStreamType;
Eric Laurenta553c252009-07-17 12:17:14 -0700690 int mName;
Eric Laurent65b65452010-06-01 23:49:17 -0700691 int16_t *mMainBuffer;
692 int32_t *mAuxBuffer;
693 int mAuxEffectId;
Eric Laurenta92ebfa2010-08-31 13:50:07 -0700694 bool mHasVolumeController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800695 }; // end of Track
696
John Grossmand8cf2962012-02-08 16:37:41 -0800697 class TimedTrack : public Track {
698 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800699 static sp<TimedTrack> create(PlaybackThread *thread,
John Grossmand8cf2962012-02-08 16:37:41 -0800700 const sp<Client>& client,
701 audio_stream_type_t streamType,
702 uint32_t sampleRate,
703 audio_format_t format,
704 uint32_t channelMask,
705 int frameCount,
706 const sp<IMemory>& sharedBuffer,
707 int sessionId);
708 ~TimedTrack();
709
710 class TimedBuffer {
711 public:
712 TimedBuffer();
713 TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
714 const sp<IMemory>& buffer() const { return mBuffer; }
715 int64_t pts() const { return mPTS; }
716 int position() const { return mPosition; }
717 void setPosition(int pos) { mPosition = pos; }
718 private:
719 sp<IMemory> mBuffer;
720 int64_t mPTS;
721 int mPosition;
722 };
723
724 virtual bool isTimedTrack() const { return true; }
725
726 virtual uint32_t framesReady() const;
727
Glenn Kastenc2db1192012-02-22 10:47:35 -0800728 // AudioBufferProvider interface
729 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
John Grossmand8cf2962012-02-08 16:37:41 -0800730 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kastenc2db1192012-02-22 10:47:35 -0800731
John Grossmand8cf2962012-02-08 16:37:41 -0800732 void timedYieldSamples(AudioBufferProvider::Buffer* buffer);
733 void timedYieldSilence(uint32_t numFrames,
734 AudioBufferProvider::Buffer* buffer);
735
736 status_t allocateTimedBuffer(size_t size,
737 sp<IMemory>* buffer);
738 status_t queueTimedBuffer(const sp<IMemory>& buffer,
739 int64_t pts);
740 status_t setMediaTimeTransform(const LinearTransform& xform,
741 TimedAudioTrack::TargetTimeline target);
742 void trimTimedBufferQueue_l();
743
744 private:
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800745 TimedTrack(PlaybackThread *thread,
John Grossmand8cf2962012-02-08 16:37:41 -0800746 const sp<Client>& client,
747 audio_stream_type_t streamType,
748 uint32_t sampleRate,
749 audio_format_t format,
750 uint32_t channelMask,
751 int frameCount,
752 const sp<IMemory>& sharedBuffer,
753 int sessionId);
754
755 uint64_t mLocalTimeFreq;
756 LinearTransform mLocalTimeToSampleTransform;
757 sp<MemoryDealer> mTimedMemoryDealer;
758 Vector<TimedBuffer> mTimedBufferQueue;
759 uint8_t* mTimedSilenceBuffer;
760 uint32_t mTimedSilenceBufferSize;
761 mutable Mutex mTimedBufferQueueLock;
762 bool mTimedAudioOutputOnTime;
763 CCHelper mCCHelper;
764
765 Mutex mMediaTimeTransformLock;
766 LinearTransform mMediaTimeTransform;
767 bool mMediaTimeTransformValid;
768 TimedAudioTrack::TargetTimeline mMediaTimeTransformTarget;
769 };
770
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800771
772 // playback track
773 class OutputTrack : public Track {
774 public:
Eric Laurenta553c252009-07-17 12:17:14 -0700775
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800776 class Buffer: public AudioBufferProvider::Buffer {
777 public:
778 int16_t *mBuffer;
779 };
Eric Laurenta553c252009-07-17 12:17:14 -0700780
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800781 OutputTrack(PlaybackThread *thread,
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800782 DuplicatingThread *sourceThread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800783 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800784 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700785 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800786 int frameCount);
Glenn Kastenb1631382012-01-30 14:54:39 -0800787 virtual ~OutputTrack();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800788
Glenn Kasten6a20b262012-02-02 10:56:47 -0800789 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790 virtual void stop();
Eric Laurenta553c252009-07-17 12:17:14 -0700791 bool write(int16_t* data, uint32_t frames);
Glenn Kasten7d3be3a2012-01-26 10:53:32 -0800792 bool bufferQueueEmpty() const { return mBufferQueue.size() == 0; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800793 bool isActive() const { return mActive; }
794 const wp<ThreadBase>& thread() const { return mThread; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800795
796 private:
797
Glenn Kasten34f9f8b2012-01-20 17:00:00 -0800798 enum {
799 NO_MORE_BUFFERS = 0x80000001, // same in AudioTrack.h, ok to be different value
800 };
801
Eric Laurenta553c252009-07-17 12:17:14 -0700802 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800803 void clearBufferQueue();
Eric Laurenta553c252009-07-17 12:17:14 -0700804
805 // Maximum number of pending buffers allocated by OutputTrack::write()
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800806 static const uint8_t kMaxOverFlowBuffers = 10;
Eric Laurenta553c252009-07-17 12:17:14 -0700807
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800808 Vector < Buffer* > mBufferQueue;
809 AudioBufferProvider::Buffer mOutBuffer;
Eric Laurenta553c252009-07-17 12:17:14 -0700810 bool mActive;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800811 DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
Eric Laurenta553c252009-07-17 12:17:14 -0700812 }; // end of OutputTrack
813
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800814 PlaybackThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
815 audio_io_handle_t id, uint32_t device, type_t type);
Eric Laurenta553c252009-07-17 12:17:14 -0700816 virtual ~PlaybackThread();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800817
818 virtual status_t dump(int fd, const Vector<String16>& args);
819
820 // Thread virtuals
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800821 virtual status_t readyToRun();
Glenn Kasten67cb3122012-03-01 17:10:56 -0800822 virtual bool threadLoop();
823
824 // RefBase
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800825 virtual void onFirstRef();
826
Glenn Kasten67cb3122012-03-01 17:10:56 -0800827protected:
828 // Code snippets that were lifted up out of threadLoop()
829 virtual void threadLoop_mix() = 0;
830 virtual void threadLoop_sleepTime() = 0;
831 virtual void threadLoop_write();
832 virtual void threadLoop_standby();
833
834 // Non-trivial for DUPLICATING only
Glenn Kasten2bad67f2012-03-06 11:24:48 -0800835 virtual void updateWaitTime_l() { }
Glenn Kasten67cb3122012-03-01 17:10:56 -0800836
837 // Non-trivial for DIRECT only
838 virtual void applyVolume() { }
839
Glenn Kasten761415b2012-03-06 11:23:32 -0800840 // prepareTracks_l reads and writes mActiveTracks, and also returns the
841 // pending set of tracks to remove via Vector 'tracksToRemove'. The caller is
842 // responsible for clearing or destroying this Vector later on, when it
843 // is safe to do so. That will drop the final ref count and destroy the tracks.
844 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0;
Glenn Kasten67cb3122012-03-01 17:10:56 -0800845
846public:
847
Glenn Kastenc434c902011-12-13 11:53:26 -0800848 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700849
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800850 virtual uint32_t latency() const;
851
Glenn Kasten8b02b992012-01-09 09:40:36 -0800852 void setMasterVolume(float value);
853 void setMasterMute(bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800854
Glenn Kasten8b02b992012-01-09 09:40:36 -0800855 void setStreamVolume(audio_stream_type_t stream, float value);
856 void setStreamMute(audio_stream_type_t stream, bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800857
Glenn Kasten8b02b992012-01-09 09:40:36 -0800858 float streamVolume(audio_stream_type_t stream) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800859
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700860 sp<Track> createTrack_l(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800861 const sp<AudioFlinger::Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800862 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800863 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800864 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700865 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800866 int frameCount,
867 const sp<IMemory>& sharedBuffer,
Eric Laurent65b65452010-06-01 23:49:17 -0700868 int sessionId,
John Grossmand8cf2962012-02-08 16:37:41 -0800869 bool isTimed,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800870 status_t *status);
Eric Laurenta553c252009-07-17 12:17:14 -0700871
Glenn Kasten5b0135e2012-01-26 09:46:34 -0800872 AudioStreamOut* getOutput() const;
Eric Laurent828b9772011-08-07 16:32:26 -0700873 AudioStreamOut* clearOutput();
874 virtual audio_stream_t* stream();
Eric Laurenta553c252009-07-17 12:17:14 -0700875
Eric Laurentd5603c12009-08-06 08:49:39 -0700876 void suspend() { mSuspended++; }
Glenn Kastene70583e2012-02-29 07:07:30 -0800877 void restore() { if (mSuspended > 0) mSuspended--; }
878 bool isSuspended() const { return (mSuspended > 0); }
Eric Laurenta553c252009-07-17 12:17:14 -0700879 virtual String8 getParameters(const String8& keys);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700880 virtual void audioConfigChanged_l(int event, int param = 0);
Eric Laurent0986e792010-01-19 17:37:09 -0800881 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800882 int16_t *mixBuffer() const { return mMixBuffer; };
Eric Laurent65b65452010-06-01 23:49:17 -0700883
Eric Laurent464d5b32011-06-17 21:29:58 -0700884 virtual void detachAuxEffect_l(int effectId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700885 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
886 int EffectId);
887 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
888 int EffectId);
Eric Laurenta553c252009-07-17 12:17:14 -0700889
Eric Laurent464d5b32011-06-17 21:29:58 -0700890 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
891 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
892 virtual uint32_t hasAudioSession(int sessionId);
893 virtual uint32_t getStrategyForSession_l(int sessionId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700894
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800895 void setStreamValid(audio_stream_type_t streamType, bool valid);
Eric Laurent05ce0942011-08-30 10:18:54 -0700896
Eric Laurent2c817f52009-07-23 13:17:39 -0700897 protected:
Eric Laurent2c817f52009-07-23 13:17:39 -0700898 int16_t* mMixBuffer;
Glenn Kastene70583e2012-02-29 07:07:30 -0800899 uint32_t mSuspended; // suspend count, > 0 means suspended
Eric Laurent2c817f52009-07-23 13:17:39 -0700900 int mBytesWritten;
Glenn Kastene6f8a422011-12-13 11:47:54 -0800901 private:
Glenn Kastenb3db2132012-01-19 08:59:58 -0800902 // mMasterMute is in both PlaybackThread and in AudioFlinger. When a
903 // PlaybackThread needs to find out if master-muted, it checks it's local
904 // copy rather than the one in AudioFlinger. This optimization saves a lock.
Eric Laurent2c817f52009-07-23 13:17:39 -0700905 bool mMasterMute;
Glenn Kasten8b02b992012-01-09 09:40:36 -0800906 void setMasterMute_l(bool muted) { mMasterMute = muted; }
Glenn Kastene6f8a422011-12-13 11:47:54 -0800907 protected:
Eric Laurent2c817f52009-07-23 13:17:39 -0700908 SortedVector< wp<Track> > mActiveTracks;
909
Eric Laurent62443f52009-10-05 20:29:18 -0700910 virtual int getTrackName_l() = 0;
911 virtual void deleteTrackName_l(int name) = 0;
Eric Laurent44331692011-12-05 09:47:19 -0800912 virtual uint32_t activeSleepTimeUs();
Eric Laurent059b4be2009-11-09 23:32:22 -0800913 virtual uint32_t idleSleepTimeUs() = 0;
Eric Laurent8448a792010-08-18 18:13:17 -0700914 virtual uint32_t suspendSleepTimeUs() = 0;
Eric Laurent62443f52009-10-05 20:29:18 -0700915
Glenn Kasten2521a012012-02-24 07:21:48 -0800916 // Code snippets that are temporarily lifted up out of threadLoop() until the merge
917 void checkSilentMode_l();
918
Glenn Kasten08d2c042012-03-06 11:28:04 -0800919 // Non-trivial for DUPLICATING only
920 virtual void saveOutputTracks() { }
921 virtual void clearOutputTracks() { }
922
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800923 private:
924
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800925 friend class AudioFlinger;
Eric Laurent6c30a712009-08-10 23:22:32 -0700926 friend class OutputTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800927 friend class Track;
928 friend class TrackBase;
Eric Laurenta553c252009-07-17 12:17:14 -0700929 friend class MixerThread;
930 friend class DirectOutputThread;
931 friend class DuplicatingThread;
932
933 PlaybackThread(const Client&);
934 PlaybackThread& operator = (const PlaybackThread&);
935
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700936 status_t addTrack_l(const sp<Track>& track);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700937 void destroyTrack_l(const sp<Track>& track);
Eric Laurent90681d62011-05-09 12:09:06 -0700938 void removeTrack_l(const sp<Track>& track);
Eric Laurent62443f52009-10-05 20:29:18 -0700939
Eric Laurenta553c252009-07-17 12:17:14 -0700940 void readOutputParameters();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800941
Eric Laurenta553c252009-07-17 12:17:14 -0700942 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800943 status_t dumpTracks(int fd, const Vector<String16>& args);
Eric Laurenta553c252009-07-17 12:17:14 -0700944
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800945 SortedVector< sp<Track> > mTracks;
Glenn Kasten6e987a42012-01-06 08:40:01 -0800946 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by DuplicatingThread
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700947 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
Glenn Kasten5b0135e2012-01-26 09:46:34 -0800948 AudioStreamOut *mOutput;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800949 float mMasterVolume;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800950 nsecs_t mLastWriteTime;
951 int mNumWrites;
952 int mNumDelayedWrites;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800953 bool mInWrite;
Glenn Kasten67cb3122012-03-01 17:10:56 -0800954
955 // FIXME rename these former local variables of threadLoop to standard "m" names
956 nsecs_t standbyTime;
957 size_t mixBufferSize;
958 uint32_t activeSleepTime;
959 uint32_t idleSleepTime;
960 uint32_t sleepTime;
Glenn Kastena13446a2012-03-08 07:47:15 -0800961
962 // mixer status returned by prepareTracks_l()
963 mixer_state mMixerStatus; // current cycle
964 mixer_state mPrevMixerStatus; // previous cycle
Glenn Kasten67cb3122012-03-01 17:10:56 -0800965
966 // FIXME move these declarations into the specific sub-class that needs them
967 // MIXER only
968 bool longStandbyExit;
969 uint32_t sleepTimeShift;
Glenn Kasten67cb3122012-03-01 17:10:56 -0800970 // DIRECT only
971 nsecs_t standbyDelay;
Glenn Kasten67cb3122012-03-01 17:10:56 -0800972 // DUPLICATING only
Glenn Kasten67cb3122012-03-01 17:10:56 -0800973 uint32_t writeFrames;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800974 };
975
Eric Laurenta553c252009-07-17 12:17:14 -0700976 class MixerThread : public PlaybackThread {
977 public:
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700978 MixerThread (const sp<AudioFlinger>& audioFlinger,
Dima Zavin31f188892011-04-18 16:57:27 -0700979 AudioStreamOut* output,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800980 audio_io_handle_t id,
Glenn Kastenefd511a2012-01-26 10:38:26 -0800981 uint32_t device,
982 type_t type = MIXER);
Eric Laurenta553c252009-07-17 12:17:14 -0700983 virtual ~MixerThread();
984
985 // Thread virtuals
Eric Laurenta553c252009-07-17 12:17:14 -0700986
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800987 void invalidateTracks(audio_stream_type_t streamType);
Eric Laurenta553c252009-07-17 12:17:14 -0700988 virtual bool checkForNewParameters_l();
989 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
990
991 protected:
Glenn Kasten67cb3122012-03-01 17:10:56 -0800992 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
Eric Laurent62443f52009-10-05 20:29:18 -0700993 virtual int getTrackName_l();
994 virtual void deleteTrackName_l(int name);
Eric Laurent059b4be2009-11-09 23:32:22 -0800995 virtual uint32_t idleSleepTimeUs();
Eric Laurent8448a792010-08-18 18:13:17 -0700996 virtual uint32_t suspendSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -0700997
Glenn Kasten67cb3122012-03-01 17:10:56 -0800998 // threadLoop snippets
999 virtual void threadLoop_mix();
1000 virtual void threadLoop_sleepTime();
1001
Eric Laurent71c44962012-01-17 19:20:12 -08001002 AudioMixer* mAudioMixer;
Eric Laurenta553c252009-07-17 12:17:14 -07001003 };
1004
1005 class DirectOutputThread : public PlaybackThread {
1006 public:
1007
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001008 DirectOutputThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
1009 audio_io_handle_t id, uint32_t device);
Glenn Kastenb1631382012-01-30 14:54:39 -08001010 virtual ~DirectOutputThread();
Eric Laurenta553c252009-07-17 12:17:14 -07001011
1012 // Thread virtuals
Eric Laurenta553c252009-07-17 12:17:14 -07001013
Eric Laurent62443f52009-10-05 20:29:18 -07001014 virtual bool checkForNewParameters_l();
1015
1016 protected:
Eric Laurenta553c252009-07-17 12:17:14 -07001017 virtual int getTrackName_l();
1018 virtual void deleteTrackName_l(int name);
Eric Laurent059b4be2009-11-09 23:32:22 -08001019 virtual uint32_t activeSleepTimeUs();
1020 virtual uint32_t idleSleepTimeUs();
Eric Laurent8448a792010-08-18 18:13:17 -07001021 virtual uint32_t suspendSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -07001022
Glenn Kasten67cb3122012-03-01 17:10:56 -08001023 // threadLoop snippets
Glenn Kasten761415b2012-03-06 11:23:32 -08001024 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
Glenn Kasten67cb3122012-03-01 17:10:56 -08001025 virtual void threadLoop_mix();
1026 virtual void threadLoop_sleepTime();
Eric Laurent65b65452010-06-01 23:49:17 -07001027
Glenn Kastenb3db2132012-01-19 08:59:58 -08001028 // volumes last sent to audio HAL with stream->set_volume()
1029 // FIXME use standard representation and names
Eric Laurent65b65452010-06-01 23:49:17 -07001030 float mLeftVolFloat;
1031 float mRightVolFloat;
1032 uint16_t mLeftVolShort;
1033 uint16_t mRightVolShort;
Glenn Kasten67cb3122012-03-01 17:10:56 -08001034
1035 // FIXME rename these former local variables of threadLoop to standard names
1036 // next 3 were local to the while !exitingPending loop
1037 bool rampVolume;
1038 uint16_t leftVol;
1039 uint16_t rightVol;
Glenn Kastene0127832012-03-06 15:52:35 -08001040
1041private:
1042 void applyVolume(); // FIXME inline into threadLoop_mix()
Glenn Kastenb8f96762012-03-07 17:05:59 -08001043
1044 // prepareTracks_l() tells threadLoop_mix() the name of the single active track
1045 sp<Track> mActiveTrack;
Eric Laurenta553c252009-07-17 12:17:14 -07001046 };
1047
1048 class DuplicatingThread : public MixerThread {
1049 public:
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001050 DuplicatingThread (const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
1051 audio_io_handle_t id);
Glenn Kastenb1631382012-01-30 14:54:39 -08001052 virtual ~DuplicatingThread();
Eric Laurenta553c252009-07-17 12:17:14 -07001053
1054 // Thread virtuals
Eric Laurenta553c252009-07-17 12:17:14 -07001055 void addOutputTrack(MixerThread* thread);
1056 void removeOutputTrack(MixerThread* thread);
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08001057 uint32_t waitTimeMs() { return mWaitTimeMs; }
1058 protected:
1059 virtual uint32_t activeSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -07001060
1061 private:
Glenn Kasten0fccd352012-02-24 15:42:17 -08001062 bool outputsReady(const SortedVector<sp<OutputTrack> > &outputTracks);
Glenn Kasten67cb3122012-03-01 17:10:56 -08001063 protected:
1064 // threadLoop snippets
1065 virtual void threadLoop_mix();
1066 virtual void threadLoop_sleepTime();
1067 virtual void threadLoop_write();
1068 virtual void threadLoop_standby();
Glenn Kasten2bad67f2012-03-06 11:24:48 -08001069
1070 // called from threadLoop, addOutputTrack, removeOutputTrack
1071 virtual void updateWaitTime_l();
Glenn Kasten08d2c042012-03-06 11:28:04 -08001072 virtual void saveOutputTracks();
1073 virtual void clearOutputTracks();
Glenn Kasten67cb3122012-03-01 17:10:56 -08001074 private:
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08001075
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08001076 uint32_t mWaitTimeMs;
Glenn Kasten08d2c042012-03-06 11:28:04 -08001077 SortedVector < sp<OutputTrack> > outputTracks;
1078 SortedVector < sp<OutputTrack> > mOutputTracks;
Eric Laurenta553c252009-07-17 12:17:14 -07001079 };
1080
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001081 PlaybackThread *checkPlaybackThread_l(audio_io_handle_t output) const;
1082 MixerThread *checkMixerThread_l(audio_io_handle_t output) const;
1083 RecordThread *checkRecordThread_l(audio_io_handle_t input) const;
Glenn Kasten8b02b992012-01-09 09:40:36 -08001084 // no range check, AudioFlinger::mLock held
1085 bool streamMute_l(audio_stream_type_t stream) const
1086 { return mStreamTypes[stream].mute; }
1087 // no range check, doesn't check per-thread stream volume, AudioFlinger::mLock held
1088 float streamVolume_l(audio_stream_type_t stream) const
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001089 { return mStreamTypes[stream].volume; }
Glenn Kastenffed04a2012-03-01 09:14:51 -08001090 void audioConfigChanged_l(int event, audio_io_handle_t ioHandle, const void *param2);
Eric Laurenta553c252009-07-17 12:17:14 -07001091
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001092 // allocate an audio_io_handle_t, session ID, or effect ID
Eric Laurent464d5b32011-06-17 21:29:58 -07001093 uint32_t nextUniqueId();
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001094
Eric Laurentf82fccd2011-07-27 19:49:51 -07001095 status_t moveEffectChain_l(int sessionId,
Glenn Kasten7d3be3a2012-01-26 10:53:32 -08001096 PlaybackThread *srcThread,
1097 PlaybackThread *dstThread,
Eric Laurent493941b2010-07-28 01:32:47 -07001098 bool reRegister);
Glenn Kasten0fccd352012-02-24 15:42:17 -08001099 // return thread associated with primary hardware device, or NULL
1100 PlaybackThread *primaryPlaybackThread_l() const;
1101 uint32_t primaryOutputDevice_l() const;
Eric Laurent65b65452010-06-01 23:49:17 -07001102
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001103 friend class AudioBuffer;
1104
Glenn Kastenb3db2132012-01-19 08:59:58 -08001105 // server side of the client's IAudioTrack
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001106 class TrackHandle : public android::BnAudioTrack {
1107 public:
Eric Laurenta553c252009-07-17 12:17:14 -07001108 TrackHandle(const sp<PlaybackThread::Track>& track);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001109 virtual ~TrackHandle();
Glenn Kasten0ae4d972012-01-26 13:40:12 -08001110 virtual sp<IMemory> getCblk() const;
Glenn Kasten6a20b262012-02-02 10:56:47 -08001111 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001112 virtual void stop();
1113 virtual void flush();
1114 virtual void mute(bool);
1115 virtual void pause();
Eric Laurent65b65452010-06-01 23:49:17 -07001116 virtual status_t attachAuxEffect(int effectId);
John Grossmand8cf2962012-02-08 16:37:41 -08001117 virtual status_t allocateTimedBuffer(size_t size,
1118 sp<IMemory>* buffer);
1119 virtual status_t queueTimedBuffer(const sp<IMemory>& buffer,
1120 int64_t pts);
1121 virtual status_t setMediaTimeTransform(const LinearTransform& xform,
1122 int target);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001123 virtual status_t onTransact(
1124 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1125 private:
Glenn Kastendc3ac852012-01-25 15:28:08 -08001126 const sp<PlaybackThread::Track> mTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001127 };
1128
1129 friend class Client;
Eric Laurenta553c252009-07-17 12:17:14 -07001130 friend class PlaybackThread::Track;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001131
1132
Eric Laurentb9481d82009-09-17 05:12:56 -07001133 void removeClient_l(pid_t pid);
Eric Laurent4f0f17d2010-05-12 02:05:53 -07001134 void removeNotificationClient(pid_t pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001135
1136
Eric Laurenta553c252009-07-17 12:17:14 -07001137 // record thread
1138 class RecordThread : public ThreadBase, public AudioBufferProvider
1139 {
1140 public:
1141
1142 // record track
1143 class RecordTrack : public TrackBase {
1144 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -08001145 RecordTrack(RecordThread *thread,
Eric Laurenta553c252009-07-17 12:17:14 -07001146 const sp<Client>& client,
1147 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001148 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001149 uint32_t channelMask,
Eric Laurenta553c252009-07-17 12:17:14 -07001150 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -07001151 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001152 virtual ~RecordTrack();
Eric Laurenta553c252009-07-17 12:17:14 -07001153
Glenn Kasten6a20b262012-02-02 10:56:47 -08001154 virtual status_t start(pid_t tid);
Eric Laurenta553c252009-07-17 12:17:14 -07001155 virtual void stop();
1156
1157 bool overflow() { bool tmp = mOverflow; mOverflow = false; return tmp; }
1158 bool setOverflow() { bool tmp = mOverflow; mOverflow = true; return tmp; }
1159
Eric Laurent3fdb1262009-11-07 00:01:32 -08001160 void dump(char* buffer, size_t size);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001161
Eric Laurenta553c252009-07-17 12:17:14 -07001162 private:
1163 friend class AudioFlinger;
Eric Laurent2c817f52009-07-23 13:17:39 -07001164 friend class RecordThread;
Eric Laurenta553c252009-07-17 12:17:14 -07001165
1166 RecordTrack(const RecordTrack&);
1167 RecordTrack& operator = (const RecordTrack&);
1168
Glenn Kastenc2db1192012-02-22 10:47:35 -08001169 // AudioBufferProvider interface
1170 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
1171 // releaseBuffer() not overridden
Eric Laurenta553c252009-07-17 12:17:14 -07001172
1173 bool mOverflow;
1174 };
1175
1176
1177 RecordThread(const sp<AudioFlinger>& audioFlinger,
Dima Zavin31f188892011-04-18 16:57:27 -07001178 AudioStreamIn *input,
Eric Laurenta553c252009-07-17 12:17:14 -07001179 uint32_t sampleRate,
Eric Laurent49f02be2009-11-19 09:00:56 -08001180 uint32_t channels,
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001181 audio_io_handle_t id,
Eric Laurent464d5b32011-06-17 21:29:58 -07001182 uint32_t device);
Glenn Kastenb1631382012-01-30 14:54:39 -08001183 virtual ~RecordThread();
Eric Laurenta553c252009-07-17 12:17:14 -07001184
Glenn Kasten67cb3122012-03-01 17:10:56 -08001185 // Thread
Eric Laurenta553c252009-07-17 12:17:14 -07001186 virtual bool threadLoop();
Eric Laurent828b9772011-08-07 16:32:26 -07001187 virtual status_t readyToRun();
Glenn Kasten67cb3122012-03-01 17:10:56 -08001188
1189 // RefBase
Eric Laurenta553c252009-07-17 12:17:14 -07001190 virtual void onFirstRef();
1191
Glenn Kastenc434c902011-12-13 11:53:26 -08001192 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent464d5b32011-06-17 21:29:58 -07001193 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
1194 const sp<AudioFlinger::Client>& client,
1195 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001196 audio_format_t format,
Eric Laurent464d5b32011-06-17 21:29:58 -07001197 int channelMask,
1198 int frameCount,
Eric Laurent464d5b32011-06-17 21:29:58 -07001199 int sessionId,
1200 status_t *status);
1201
Eric Laurenta553c252009-07-17 12:17:14 -07001202 status_t start(RecordTrack* recordTrack);
Glenn Kasten6a20b262012-02-02 10:56:47 -08001203 status_t start(RecordTrack* recordTrack, pid_t tid);
Eric Laurenta553c252009-07-17 12:17:14 -07001204 void stop(RecordTrack* recordTrack);
1205 status_t dump(int fd, const Vector<String16>& args);
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001206 AudioStreamIn* getInput() const;
Eric Laurent828b9772011-08-07 16:32:26 -07001207 AudioStreamIn* clearInput();
1208 virtual audio_stream_t* stream();
Eric Laurenta553c252009-07-17 12:17:14 -07001209
Glenn Kastenc2db1192012-02-22 10:47:35 -08001210 // AudioBufferProvider interface
1211 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
Eric Laurenta553c252009-07-17 12:17:14 -07001212 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kastenc2db1192012-02-22 10:47:35 -08001213
Eric Laurenta553c252009-07-17 12:17:14 -07001214 virtual bool checkForNewParameters_l();
1215 virtual String8 getParameters(const String8& keys);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001216 virtual void audioConfigChanged_l(int event, int param = 0);
Eric Laurenta553c252009-07-17 12:17:14 -07001217 void readInputParameters();
Eric Laurent47d0a922010-02-26 02:47:27 -08001218 virtual unsigned int getInputFramesLost();
Eric Laurenta553c252009-07-17 12:17:14 -07001219
Eric Laurent464d5b32011-06-17 21:29:58 -07001220 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
1221 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
1222 virtual uint32_t hasAudioSession(int sessionId);
Eric Laurent6639b552011-08-01 09:52:20 -07001223 RecordTrack* track();
Eric Laurent464d5b32011-06-17 21:29:58 -07001224
Eric Laurenta553c252009-07-17 12:17:14 -07001225 private:
1226 RecordThread();
Dima Zavin31f188892011-04-18 16:57:27 -07001227 AudioStreamIn *mInput;
Eric Laurent464d5b32011-06-17 21:29:58 -07001228 RecordTrack* mTrack;
Eric Laurenta553c252009-07-17 12:17:14 -07001229 sp<RecordTrack> mActiveTrack;
1230 Condition mStartStopCond;
1231 AudioResampler *mResampler;
1232 int32_t *mRsmpOutBuffer;
1233 int16_t *mRsmpInBuffer;
1234 size_t mRsmpInIndex;
1235 size_t mInputBytes;
Glenn Kastendc3ac852012-01-25 15:28:08 -08001236 const int mReqChannelCount;
1237 const uint32_t mReqSampleRate;
Eric Laurent9cc489a22009-12-05 05:20:01 -08001238 ssize_t mBytesRead;
Eric Laurenta553c252009-07-17 12:17:14 -07001239 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001240
Glenn Kastenb3db2132012-01-19 08:59:58 -08001241 // server side of the client's IAudioRecord
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001242 class RecordHandle : public android::BnAudioRecord {
1243 public:
Eric Laurenta553c252009-07-17 12:17:14 -07001244 RecordHandle(const sp<RecordThread::RecordTrack>& recordTrack);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001245 virtual ~RecordHandle();
Glenn Kasten0ae4d972012-01-26 13:40:12 -08001246 virtual sp<IMemory> getCblk() const;
Glenn Kasten6a20b262012-02-02 10:56:47 -08001247 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001248 virtual void stop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001249 virtual status_t onTransact(
1250 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1251 private:
Glenn Kastendc3ac852012-01-25 15:28:08 -08001252 const sp<RecordThread::RecordTrack> mRecordTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001253 };
1254
Eric Laurent65b65452010-06-01 23:49:17 -07001255 //--- Audio Effect Management
1256
1257 // EffectModule and EffectChain classes both have their own mutex to protect
1258 // state changes or resource modifications. Always respect the following order
1259 // if multiple mutexes must be acquired to avoid cross deadlock:
1260 // AudioFlinger -> ThreadBase -> EffectChain -> EffectModule
1261
1262 // The EffectModule class is a wrapper object controlling the effect engine implementation
1263 // in the effect library. It prevents concurrent calls to process() and command() functions
1264 // from different client threads. It keeps a list of EffectHandle objects corresponding
1265 // to all client applications using this effect and notifies applications of effect state,
1266 // control or parameter changes. It manages the activation state machine to send appropriate
1267 // reset, enable, disable commands to effect engine and provide volume
1268 // ramping when effects are activated/deactivated.
1269 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
1270 // the attached track(s) to accumulate their auxiliary channel.
1271 class EffectModule: public RefBase {
1272 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -08001273 EffectModule(ThreadBase *thread,
Eric Laurent65b65452010-06-01 23:49:17 -07001274 const wp<AudioFlinger::EffectChain>& chain,
1275 effect_descriptor_t *desc,
1276 int id,
1277 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001278 virtual ~EffectModule();
Eric Laurent65b65452010-06-01 23:49:17 -07001279
1280 enum effect_state {
1281 IDLE,
Eric Laurent7d850f22010-07-09 13:34:17 -07001282 RESTART,
Eric Laurent65b65452010-06-01 23:49:17 -07001283 STARTING,
1284 ACTIVE,
1285 STOPPING,
Eric Laurent21b5c472011-07-26 20:54:46 -07001286 STOPPED,
1287 DESTROYED
Eric Laurent65b65452010-06-01 23:49:17 -07001288 };
1289
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001290 int id() const { return mId; }
Eric Laurent65b65452010-06-01 23:49:17 -07001291 void process();
Eric Laurent7d850f22010-07-09 13:34:17 -07001292 void updateState();
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001293 status_t command(uint32_t cmdCode,
1294 uint32_t cmdSize,
1295 void *pCmdData,
1296 uint32_t *replySize,
1297 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001298
Eric Laurentdf9b81c2010-07-02 08:12:41 -07001299 void reset_l();
Eric Laurent65b65452010-06-01 23:49:17 -07001300 status_t configure();
1301 status_t init();
Glenn Kasten452d6d62012-01-26 13:43:46 -08001302 effect_state state() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001303 return mState;
1304 }
1305 uint32_t status() {
1306 return mStatus;
1307 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001308 int sessionId() const {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001309 return mSessionId;
1310 }
Eric Laurent65b65452010-06-01 23:49:17 -07001311 status_t setEnabled(bool enabled);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001312 bool isEnabled() const;
1313 bool isProcessEnabled() const;
Eric Laurent65b65452010-06-01 23:49:17 -07001314
1315 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
1316 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
1317 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
1318 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001319 void setChain(const wp<EffectChain>& chain) { mChain = chain; }
1320 void setThread(const wp<ThreadBase>& thread) { mThread = thread; }
Glenn Kastendc3ac852012-01-25 15:28:08 -08001321 const wp<ThreadBase>& thread() { return mThread; }
Eric Laurent65b65452010-06-01 23:49:17 -07001322
Glenn Kasten1f812f72012-01-30 10:15:48 -08001323 status_t addHandle(const sp<EffectHandle>& handle);
Glenn Kasten29441ff2012-02-03 10:32:24 -08001324 void disconnect(const wp<EffectHandle>& handle, bool unpinIfLast);
Eric Laurent65b65452010-06-01 23:49:17 -07001325 size_t removeHandle (const wp<EffectHandle>& handle);
1326
1327 effect_descriptor_t& desc() { return mDescriptor; }
Eric Laurent53334cd2010-06-23 17:38:20 -07001328 wp<EffectChain>& chain() { return mChain; }
Eric Laurent65b65452010-06-01 23:49:17 -07001329
1330 status_t setDevice(uint32_t device);
1331 status_t setVolume(uint32_t *left, uint32_t *right, bool controller);
Glenn Kastenaccb1142012-01-04 11:00:47 -08001332 status_t setMode(audio_mode_t mode);
Eric Laurent6fccbd02011-10-05 17:42:25 -07001333 status_t start();
Eric Laurent21b5c472011-07-26 20:54:46 -07001334 status_t stop();
Eric Laurentf82fccd2011-07-27 19:49:51 -07001335 void setSuspended(bool suspended);
Glenn Kasten1dce8412012-01-04 11:01:11 -08001336 bool suspended() const;
Eric Laurentf82fccd2011-07-27 19:49:51 -07001337
1338 sp<EffectHandle> controlHandle();
Eric Laurent65b65452010-06-01 23:49:17 -07001339
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001340 bool isPinned() const { return mPinned; }
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001341 void unPin() { mPinned = false; }
1342
Eric Laurent65b65452010-06-01 23:49:17 -07001343 status_t dump(int fd, const Vector<String16>& args);
1344
1345 protected:
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001346 friend class EffectHandle;
1347 friend class AudioFlinger;
1348 bool mPinned;
Eric Laurent65b65452010-06-01 23:49:17 -07001349
Eric Laurent7d850f22010-07-09 13:34:17 -07001350 // Maximum time allocated to effect engines to complete the turn off sequence
1351 static const uint32_t MAX_DISABLE_TIME_MS = 10000;
1352
Eric Laurent65b65452010-06-01 23:49:17 -07001353 EffectModule(const EffectModule&);
1354 EffectModule& operator = (const EffectModule&);
1355
Eric Laurentdf9b81c2010-07-02 08:12:41 -07001356 status_t start_l();
1357 status_t stop_l();
Eric Laurent65b65452010-06-01 23:49:17 -07001358
Glenn Kasten1dce8412012-01-04 11:01:11 -08001359mutable Mutex mLock; // mutex for process, commands and handles list protection
Eric Laurent65b65452010-06-01 23:49:17 -07001360 wp<ThreadBase> mThread; // parent thread
1361 wp<EffectChain> mChain; // parent effect chain
1362 int mId; // this instance unique ID
1363 int mSessionId; // audio session ID
1364 effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
1365 effect_config_t mConfig; // input and output audio configuration
Eric Laurent0fb66c22011-05-17 19:16:02 -07001366 effect_handle_t mEffectInterface; // Effect module C API
Glenn Kasten452d6d62012-01-26 13:43:46 -08001367 status_t mStatus; // initialization status
1368 effect_state mState; // current activation state
Eric Laurent65b65452010-06-01 23:49:17 -07001369 Vector< wp<EffectHandle> > mHandles; // list of client handles
Glenn Kastenb3db2132012-01-19 08:59:58 -08001370 // First handle in mHandles has highest priority and controls the effect module
Eric Laurent7d850f22010-07-09 13:34:17 -07001371 uint32_t mMaxDisableWaitCnt; // maximum grace period before forcing an effect off after
1372 // sending disable command.
1373 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
Eric Laurentf82fccd2011-07-27 19:49:51 -07001374 bool mSuspended; // effect is suspended: temporarily disabled by framework
Eric Laurent65b65452010-06-01 23:49:17 -07001375 };
1376
1377 // The EffectHandle class implements the IEffect interface. It provides resources
1378 // to receive parameter updates, keeps track of effect control
1379 // ownership and state and has a pointer to the EffectModule object it is controlling.
1380 // There is one EffectHandle object for each application controlling (or using)
1381 // an effect module.
1382 // The EffectHandle is obtained by calling AudioFlinger::createEffect().
1383 class EffectHandle: public android::BnEffect {
1384 public:
1385
1386 EffectHandle(const sp<EffectModule>& effect,
1387 const sp<AudioFlinger::Client>& client,
1388 const sp<IEffectClient>& effectClient,
1389 int32_t priority);
1390 virtual ~EffectHandle();
1391
1392 // IEffect
1393 virtual status_t enable();
1394 virtual status_t disable();
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001395 virtual status_t command(uint32_t cmdCode,
1396 uint32_t cmdSize,
1397 void *pCmdData,
1398 uint32_t *replySize,
1399 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001400 virtual void disconnect();
Glenn Kasten29441ff2012-02-03 10:32:24 -08001401 private:
1402 void disconnect(bool unpinIfLast);
1403 public:
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001404 virtual sp<IMemory> getCblk() const { return mCblkMemory; }
Eric Laurent65b65452010-06-01 23:49:17 -07001405 virtual status_t onTransact(uint32_t code, const Parcel& data,
1406 Parcel* reply, uint32_t flags);
1407
1408
1409 // Give or take control of effect module
Eric Laurentf82fccd2011-07-27 19:49:51 -07001410 // - hasControl: true if control is given, false if removed
1411 // - signal: true client app should be signaled of change, false otherwise
1412 // - enabled: state of the effect when control is passed
1413 void setControl(bool hasControl, bool signal, bool enabled);
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001414 void commandExecuted(uint32_t cmdCode,
1415 uint32_t cmdSize,
1416 void *pCmdData,
1417 uint32_t replySize,
1418 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001419 void setEnabled(bool enabled);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001420 bool enabled() const { return mEnabled; }
Eric Laurent65b65452010-06-01 23:49:17 -07001421
1422 // Getters
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001423 int id() const { return mEffect->id(); }
1424 int priority() const { return mPriority; }
1425 bool hasControl() const { return mHasControl; }
1426 sp<EffectModule> effect() const { return mEffect; }
Eric Laurent65b65452010-06-01 23:49:17 -07001427
1428 void dump(char* buffer, size_t size);
1429
1430 protected:
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001431 friend class AudioFlinger;
1432 friend class EffectModule;
Eric Laurent65b65452010-06-01 23:49:17 -07001433 EffectHandle(const EffectHandle&);
1434 EffectHandle& operator =(const EffectHandle&);
1435
1436 sp<EffectModule> mEffect; // pointer to controlled EffectModule
1437 sp<IEffectClient> mEffectClient; // callback interface for client notifications
Glenn Kasten803a86a2012-01-25 14:28:29 -08001438 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
Eric Laurent65b65452010-06-01 23:49:17 -07001439 sp<IMemory> mCblkMemory; // shared memory for control block
1440 effect_param_cblk_t* mCblk; // control block for deferred parameter setting via shared memory
1441 uint8_t* mBuffer; // pointer to parameter area in shared memory
1442 int mPriority; // client application priority to control the effect
1443 bool mHasControl; // true if this handle is controlling the effect
Eric Laurentf82fccd2011-07-27 19:49:51 -07001444 bool mEnabled; // cached enable state: needed when the effect is
1445 // restored after being suspended
Eric Laurent65b65452010-06-01 23:49:17 -07001446 };
1447
1448 // the EffectChain class represents a group of effects associated to one audio session.
1449 // There can be any number of EffectChain objects per output mixer thread (PlaybackThread).
1450 // The EffecChain with session ID 0 contains global effects applied to the output mix.
1451 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to tracks)
1452 // are insert only. The EffectChain maintains an ordered list of effect module, the order corresponding
1453 // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
1454 // input buffer used by the track as accumulation buffer.
1455 class EffectChain: public RefBase {
1456 public:
1457 EffectChain(const wp<ThreadBase>& wThread, int sessionId);
Glenn Kasten685c9ce2012-01-20 13:32:16 -08001458 EffectChain(ThreadBase *thread, int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001459 virtual ~EffectChain();
Eric Laurent65b65452010-06-01 23:49:17 -07001460
Eric Laurentf82fccd2011-07-27 19:49:51 -07001461 // special key used for an entry in mSuspendedEffects keyed vector
1462 // corresponding to a suspend all request.
1463 static const int kKeyForSuspendAll = 0;
1464
Eric Laurentf9c361d2011-11-11 15:42:52 -08001465 // minimum duration during which we force calling effect process when last track on
1466 // a session is stopped or removed to allow effect tail to be rendered
1467 static const int kProcessTailDurationMs = 1000;
1468
Eric Laurent65b65452010-06-01 23:49:17 -07001469 void process_l();
1470
1471 void lock() {
1472 mLock.lock();
1473 }
1474 void unlock() {
1475 mLock.unlock();
1476 }
1477
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001478 status_t addEffect_l(const sp<EffectModule>& handle);
Eric Laurent76c40f72010-07-15 12:50:15 -07001479 size_t removeEffect_l(const sp<EffectModule>& handle);
Eric Laurent65b65452010-06-01 23:49:17 -07001480
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001481 int sessionId() const { return mSessionId; }
Eric Laurent464d5b32011-06-17 21:29:58 -07001482 void setSessionId(int sessionId) { mSessionId = sessionId; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001483
Eric Laurent76c40f72010-07-15 12:50:15 -07001484 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1485 sp<EffectModule> getEffectFromId_l(int id);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001486 sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type);
Eric Laurent76c40f72010-07-15 12:50:15 -07001487 bool setVolume_l(uint32_t *left, uint32_t *right);
1488 void setDevice_l(uint32_t device);
Glenn Kastenaccb1142012-01-04 11:00:47 -08001489 void setMode_l(audio_mode_t mode);
Eric Laurent53334cd2010-06-23 17:38:20 -07001490
Eric Laurent65b65452010-06-01 23:49:17 -07001491 void setInBuffer(int16_t *buffer, bool ownsBuffer = false) {
1492 mInBuffer = buffer;
1493 mOwnInBuffer = ownsBuffer;
1494 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001495 int16_t *inBuffer() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001496 return mInBuffer;
1497 }
1498 void setOutBuffer(int16_t *buffer) {
1499 mOutBuffer = buffer;
1500 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001501 int16_t *outBuffer() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001502 return mOutBuffer;
1503 }
1504
Eric Laurent90681d62011-05-09 12:09:06 -07001505 void incTrackCnt() { android_atomic_inc(&mTrackCnt); }
1506 void decTrackCnt() { android_atomic_dec(&mTrackCnt); }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001507 int32_t trackCnt() const { return mTrackCnt;}
Eric Laurent90681d62011-05-09 12:09:06 -07001508
Eric Laurentf9c361d2011-11-11 15:42:52 -08001509 void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt);
1510 mTailBufferCount = mMaxTailBuffers; }
Eric Laurent90681d62011-05-09 12:09:06 -07001511 void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001512 int32_t activeTrackCnt() const { return mActiveTrackCnt;}
Eric Laurent65b65452010-06-01 23:49:17 -07001513
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001514 uint32_t strategy() const { return mStrategy; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001515 void setStrategy(uint32_t strategy)
1516 { mStrategy = strategy; }
1517
Eric Laurentf82fccd2011-07-27 19:49:51 -07001518 // suspend effect of the given type
1519 void setEffectSuspended_l(const effect_uuid_t *type,
1520 bool suspend);
1521 // suspend all eligible effects
1522 void setEffectSuspendedAll_l(bool suspend);
1523 // check if effects should be suspend or restored when a given effect is enable or disabled
Eric Laurent7fa1cee2011-10-19 11:44:54 -07001524 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurentf82fccd2011-07-27 19:49:51 -07001525 bool enabled);
1526
Eric Laurent65b65452010-06-01 23:49:17 -07001527 status_t dump(int fd, const Vector<String16>& args);
1528
1529 protected:
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001530 friend class AudioFlinger;
Eric Laurent65b65452010-06-01 23:49:17 -07001531 EffectChain(const EffectChain&);
1532 EffectChain& operator =(const EffectChain&);
1533
Eric Laurentf82fccd2011-07-27 19:49:51 -07001534 class SuspendedEffectDesc : public RefBase {
1535 public:
1536 SuspendedEffectDesc() : mRefCount(0) {}
1537
1538 int mRefCount;
1539 effect_uuid_t mType;
1540 wp<EffectModule> mEffect;
1541 };
1542
1543 // get a list of effect modules to suspend when an effect of the type
1544 // passed is enabled.
Glenn Kasten97040262012-01-30 12:56:03 -08001545 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects);
1546
Eric Laurentf82fccd2011-07-27 19:49:51 -07001547 // get an effect module if it is currently enable
1548 sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type);
Eric Laurent6752ec82011-08-10 10:37:50 -07001549 // true if the effect whose descriptor is passed can be suspended
1550 // OEMs can modify the rules implemented in this method to exclude specific effect
1551 // types or implementations from the suspend/restore mechanism.
1552 bool isEffectEligibleForSuspend(const effect_descriptor_t& desc);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001553
Eric Laurent65b65452010-06-01 23:49:17 -07001554 wp<ThreadBase> mThread; // parent mixer thread
1555 Mutex mLock; // mutex protecting effect list
1556 Vector<sp<EffectModule> > mEffects; // list of effect modules
1557 int mSessionId; // audio session ID
1558 int16_t *mInBuffer; // chain input buffer
1559 int16_t *mOutBuffer; // chain output buffer
Eric Laurent90681d62011-05-09 12:09:06 -07001560 volatile int32_t mActiveTrackCnt; // number of active tracks connected
1561 volatile int32_t mTrackCnt; // number of tracks connected
Eric Laurentf9c361d2011-11-11 15:42:52 -08001562 int32_t mTailBufferCount; // current effect tail buffer count
1563 int32_t mMaxTailBuffers; // maximum effect tail buffers
Eric Laurent65b65452010-06-01 23:49:17 -07001564 bool mOwnInBuffer; // true if the chain owns its input buffer
Eric Laurent76c40f72010-07-15 12:50:15 -07001565 int mVolumeCtrlIdx; // index of insert effect having control over volume
1566 uint32_t mLeftVolume; // previous volume on left channel
1567 uint32_t mRightVolume; // previous volume on right channel
Eric Laurent0d7e0482010-07-19 06:24:46 -07001568 uint32_t mNewLeftVolume; // new volume on left channel
1569 uint32_t mNewRightVolume; // new volume on right channel
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001570 uint32_t mStrategy; // strategy for this effect chain
Eric Laurentf82fccd2011-07-27 19:49:51 -07001571 // mSuspendedEffects lists all effect currently suspended in the chain
1572 // use effect type UUID timelow field as key. There is no real risk of identical
1573 // timeLow fields among effect type UUIDs.
1574 KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
Eric Laurent65b65452010-06-01 23:49:17 -07001575 };
1576
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001577 // AudioStreamOut and AudioStreamIn are immutable, so their fields are const.
1578 // For emphasis, we could also make all pointers to them be "const *",
1579 // but that would clutter the code unnecessarily.
1580
Dima Zavin31f188892011-04-18 16:57:27 -07001581 struct AudioStreamOut {
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001582 audio_hw_device_t* const hwDev;
1583 audio_stream_out_t* const stream;
Dima Zavin31f188892011-04-18 16:57:27 -07001584
1585 AudioStreamOut(audio_hw_device_t *dev, audio_stream_out_t *out) :
1586 hwDev(dev), stream(out) {}
1587 };
1588
1589 struct AudioStreamIn {
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001590 audio_hw_device_t* const hwDev;
1591 audio_stream_in_t* const stream;
Dima Zavin31f188892011-04-18 16:57:27 -07001592
1593 AudioStreamIn(audio_hw_device_t *dev, audio_stream_in_t *in) :
1594 hwDev(dev), stream(in) {}
1595 };
1596
Glenn Kastenb3db2132012-01-19 08:59:58 -08001597 // for mAudioSessionRefs only
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001598 struct AudioSessionRef {
Glenn Kasten9a42ac92012-03-06 11:22:01 -08001599 AudioSessionRef(int sessionid, pid_t pid) :
1600 mSessionid(sessionid), mPid(pid), mCnt(1) {}
1601 const int mSessionid;
1602 const pid_t mPid;
1603 int mCnt;
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001604 };
1605
Eric Laurenta553c252009-07-17 12:17:14 -07001606 friend class RecordThread;
1607 friend class PlaybackThread;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001608
John Grossmand8cf2962012-02-08 16:37:41 -08001609 enum master_volume_support {
1610 // MVS_NONE:
1611 // Audio HAL has no support for master volume, either setting or
1612 // getting. All master volume control must be implemented in SW by the
1613 // AudioFlinger mixing core.
1614 MVS_NONE,
1615
1616 // MVS_SETONLY:
1617 // Audio HAL has support for setting master volume, but not for getting
1618 // master volume (original HAL design did not include a getter).
1619 // AudioFlinger needs to keep track of the last set master volume in
1620 // addition to needing to set an initial, default, master volume at HAL
1621 // load time.
1622 MVS_SETONLY,
1623
1624 // MVS_FULL:
1625 // Audio HAL has support both for setting and getting master volume.
1626 // AudioFlinger should send all set and get master volume requests
1627 // directly to the HAL.
1628 MVS_FULL,
1629 };
1630
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001631 mutable Mutex mLock;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001632
Glenn Kasten803a86a2012-01-25 14:28:29 -08001633 DefaultKeyedVector< pid_t, wp<Client> > mClients; // see ~Client()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001634
Eric Laurenta553c252009-07-17 12:17:14 -07001635 mutable Mutex mHardwareLock;
Glenn Kastenad8d1752012-02-02 14:05:20 -08001636
1637 // These two fields are immutable after onFirstRef(), so no lock needed to access
1638 audio_hw_device_t* mPrimaryHardwareDev; // mAudioHwDevs[0] or NULL
Dima Zavin31f188892011-04-18 16:57:27 -07001639 Vector<audio_hw_device_t*> mAudioHwDevs;
Glenn Kasten00931bb2012-01-26 09:48:03 -08001640
Glenn Kasten23c9c742012-02-02 14:16:03 -08001641 // for dump, indicates which hardware operation is currently in progress (but not stream ops)
Glenn Kasten00931bb2012-01-26 09:48:03 -08001642 enum hardware_call_state {
Glenn Kasten23c9c742012-02-02 14:16:03 -08001643 AUDIO_HW_IDLE = 0, // no operation in progress
1644 AUDIO_HW_INIT, // init_check
1645 AUDIO_HW_OUTPUT_OPEN, // open_output_stream
1646 AUDIO_HW_OUTPUT_CLOSE, // unused
1647 AUDIO_HW_INPUT_OPEN, // unused
1648 AUDIO_HW_INPUT_CLOSE, // unused
1649 AUDIO_HW_STANDBY, // unused
1650 AUDIO_HW_SET_MASTER_VOLUME, // set_master_volume
1651 AUDIO_HW_GET_ROUTING, // unused
1652 AUDIO_HW_SET_ROUTING, // unused
1653 AUDIO_HW_GET_MODE, // unused
1654 AUDIO_HW_SET_MODE, // set_mode
1655 AUDIO_HW_GET_MIC_MUTE, // get_mic_mute
1656 AUDIO_HW_SET_MIC_MUTE, // set_mic_mute
1657 AUDIO_HW_SET_VOICE_VOLUME, // set_voice_volume
1658 AUDIO_HW_SET_PARAMETER, // set_parameters
1659 AUDIO_HW_GET_INPUT_BUFFER_SIZE, // get_input_buffer_size
1660 AUDIO_HW_GET_MASTER_VOLUME, // get_master_volume
1661 AUDIO_HW_GET_PARAMETER, // get_parameters
Glenn Kasten00931bb2012-01-26 09:48:03 -08001662 };
1663
Glenn Kastena934c2c2012-01-04 11:02:33 -08001664 mutable hardware_call_state mHardwareStatus; // for dump only
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001665
Eric Laurenta553c252009-07-17 12:17:14 -07001666
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001667 DefaultKeyedVector< audio_io_handle_t, sp<PlaybackThread> > mPlaybackThreads;
Glenn Kasten37733342012-02-08 12:36:25 -08001668 stream_type_t mStreamTypes[AUDIO_STREAM_CNT];
Glenn Kastene6f8a422011-12-13 11:47:54 -08001669
1670 // both are protected by mLock
Eric Laurenta553c252009-07-17 12:17:14 -07001671 float mMasterVolume;
John Grossmand8cf2962012-02-08 16:37:41 -08001672 float mMasterVolumeSW;
1673 master_volume_support mMasterVolumeSupportLvl;
Eric Laurenta553c252009-07-17 12:17:14 -07001674 bool mMasterMute;
1675
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001676 DefaultKeyedVector< audio_io_handle_t, sp<RecordThread> > mRecordThreads;
Eric Laurenta553c252009-07-17 12:17:14 -07001677
Eric Laurent4f0f17d2010-05-12 02:05:53 -07001678 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
Glenn Kastenb3db2132012-01-19 08:59:58 -08001679 volatile int32_t mNextUniqueId; // updated by android_atomic_inc
Glenn Kastenaccb1142012-01-04 11:00:47 -08001680 audio_mode_t mMode;
Eric Laurent2d95dfb2011-08-29 12:42:48 -07001681 bool mBtNrecIsOff;
Eric Laurent53334cd2010-06-23 17:38:20 -07001682
Glenn Kastenb3db2132012-01-19 08:59:58 -08001683 // protected by mLock
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001684 Vector<AudioSessionRef*> mAudioSessionRefs;
Glenn Kastene6f8a422011-12-13 11:47:54 -08001685
John Grossmand8cf2962012-02-08 16:37:41 -08001686 float masterVolume_l() const;
1687 float masterVolumeSW_l() const { return mMasterVolumeSW; }
Glenn Kastene6f8a422011-12-13 11:47:54 -08001688 bool masterMute_l() const { return mMasterMute; }
Glenn Kasten803a86a2012-01-25 14:28:29 -08001689
1690private:
1691 sp<Client> registerPid_l(pid_t pid); // always returns non-0
1692
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001693};
1694
Dima Zavin31f188892011-04-18 16:57:27 -07001695
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001696// ----------------------------------------------------------------------------
1697
1698}; // namespace android
1699
1700#endif // ANDROID_AUDIO_FLINGER_H