blob: 795807df4a16e08ddbd0616071a00c1e3bd2b1b3 [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
Glenn Kastend8f32c22012-03-08 12:32:47 -080061// AudioFlinger has a hard-coded upper limit of 2 channels for capture and playback.
62// There is support for > 2 channel tracks down-mixed to 2 channel output via a down-mix effect.
63// Adding full support for > 2 channel capture or playback would require more than simply changing
64// this #define. There is an independent hard-coded upper limit in AudioMixer;
65// removing that AudioMixer limit would be necessary but insufficient to support > 2 channels.
66// The macro FCC_2 highlights some (but not all) places where there is are 2-channel assumptions.
67// Search also for "2", "left", "right", "[0]", "[1]", ">> 16", "<< 16", etc.
68#define FCC_2 2 // FCC_2 = Fixed Channel Count 2
69
John Grossmand8cf2962012-02-08 16:37:41 -080070static const nsecs_t kDefaultStandbyTimeInNsecs = seconds(3);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071
Mathias Agopian24651682010-07-14 18:41:18 -070072class AudioFlinger :
73 public BinderService<AudioFlinger>,
74 public BnAudioFlinger
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075{
Glenn Kastenb3030f92012-03-09 12:07:30 -080076 friend class BinderService<AudioFlinger>; // for AudioFlinger()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077public:
Glenn Kasten99c2fd32012-01-06 07:46:30 -080078 static const char* getServiceName() { return "media.audio_flinger"; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079
80 virtual status_t dump(int fd, const Vector<String16>& args);
81
Glenn Kasten00931bb2012-01-26 09:48:03 -080082 // IAudioFlinger interface, in binder opcode order
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083 virtual sp<IAudioTrack> createTrack(
84 pid_t pid,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -080085 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -080087 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -070088 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 int frameCount,
Glenn Kasten84569cc2012-03-06 11:22:44 -080090 IAudioFlinger::track_flags_t flags,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 const sp<IMemory>& sharedBuffer,
Glenn Kasten39d00cb2012-01-17 11:09:42 -080092 audio_io_handle_t output,
Eric Laurent65b65452010-06-01 23:49:17 -070093 int *sessionId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094 status_t *status);
95
Glenn Kasten00931bb2012-01-26 09:48:03 -080096 virtual sp<IAudioRecord> openRecord(
97 pid_t pid,
98 audio_io_handle_t input,
99 uint32_t sampleRate,
100 audio_format_t format,
101 uint32_t channelMask,
102 int frameCount,
Glenn Kasten84569cc2012-03-06 11:22:44 -0800103 IAudioFlinger::track_flags_t flags,
Glenn Kasten00931bb2012-01-26 09:48:03 -0800104 int *sessionId,
105 status_t *status);
106
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800107 virtual uint32_t sampleRate(audio_io_handle_t output) const;
108 virtual int channelCount(audio_io_handle_t output) const;
109 virtual audio_format_t format(audio_io_handle_t output) const;
110 virtual size_t frameCount(audio_io_handle_t output) const;
111 virtual uint32_t latency(audio_io_handle_t output) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112
113 virtual status_t setMasterVolume(float value);
114 virtual status_t setMasterMute(bool muted);
115
116 virtual float masterVolume() const;
John Grossmand8cf2962012-02-08 16:37:41 -0800117 virtual float masterVolumeSW() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 virtual bool masterMute() const;
119
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800120 virtual status_t setStreamVolume(audio_stream_type_t stream, float value,
121 audio_io_handle_t output);
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800122 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800124 virtual float streamVolume(audio_stream_type_t stream,
125 audio_io_handle_t output) const;
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800126 virtual bool streamMute(audio_stream_type_t stream) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127
Glenn Kastenaccb1142012-01-04 11:00:47 -0800128 virtual status_t setMode(audio_mode_t mode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129
130 virtual status_t setMicMute(bool state);
131 virtual bool getMicMute() const;
132
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800133 virtual status_t setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs);
134 virtual String8 getParameters(audio_io_handle_t ioHandle, const String8& keys) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135
136 virtual void registerClient(const sp<IAudioFlingerClient>& client);
Eric Laurenta553c252009-07-17 12:17:14 -0700137
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800138 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount) const;
Eric Laurenta553c252009-07-17 12:17:14 -0700139
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800140 virtual audio_io_handle_t openOutput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -0700141 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800142 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -0700143 uint32_t *pChannels,
144 uint32_t *pLatencyMs,
Glenn Kasten28b269f2012-03-07 09:15:37 -0800145 audio_policy_output_flags_t flags);
Eric Laurenta553c252009-07-17 12:17:14 -0700146
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800147 virtual audio_io_handle_t openDuplicateOutput(audio_io_handle_t output1,
148 audio_io_handle_t output2);
Eric Laurenta553c252009-07-17 12:17:14 -0700149
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800150 virtual status_t closeOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700151
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800152 virtual status_t suspendOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700153
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800154 virtual status_t restoreOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700155
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800156 virtual audio_io_handle_t openInput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -0700157 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800158 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -0700159 uint32_t *pChannels,
Glenn Kasten882c0a22012-01-27 12:32:34 -0800160 audio_in_acoustics_t acoustics);
Eric Laurenta553c252009-07-17 12:17:14 -0700161
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800162 virtual status_t closeInput(audio_io_handle_t input);
Eric Laurenta553c252009-07-17 12:17:14 -0700163
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800164 virtual status_t setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700165
Eric Laurent415f3e22009-10-21 08:14:22 -0700166 virtual status_t setVoiceVolume(float volume);
167
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800168 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
169 audio_io_handle_t output) const;
Eric Laurent0986e792010-01-19 17:37:09 -0800170
Glenn Kasten00931bb2012-01-26 09:48:03 -0800171 virtual unsigned int getInputFramesLost(audio_io_handle_t ioHandle) const;
172
Eric Laurent65b65452010-06-01 23:49:17 -0700173 virtual int newAudioSessionId();
174
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700175 virtual void acquireAudioSessionId(int audioSession);
176
177 virtual void releaseAudioSessionId(int audioSession);
178
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800179 virtual status_t queryNumberEffects(uint32_t *numEffects) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700180
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800181 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700182
Glenn Kasten67313332012-01-30 07:40:52 -0800183 virtual status_t getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800184 effect_descriptor_t *descriptor) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700185
186 virtual sp<IEffect> createEffect(pid_t pid,
187 effect_descriptor_t *pDesc,
188 const sp<IEffectClient>& effectClient,
189 int32_t priority,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800190 audio_io_handle_t io,
Eric Laurent65b65452010-06-01 23:49:17 -0700191 int sessionId,
192 status_t *status,
193 int *id,
194 int *enabled);
195
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800196 virtual status_t moveEffects(int sessionId, audio_io_handle_t srcOutput,
197 audio_io_handle_t dstOutput);
Eric Laurent53334cd2010-06-23 17:38:20 -0700198
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800199 virtual status_t onTransact(
200 uint32_t code,
201 const Parcel& data,
202 Parcel* reply,
203 uint32_t flags);
204
Glenn Kasten00931bb2012-01-26 09:48:03 -0800205 // end of IAudioFlinger interface
206
207private:
Glenn Kastenaccb1142012-01-04 11:00:47 -0800208 audio_mode_t getMode() const { return mMode; }
Eric Laurent53334cd2010-06-23 17:38:20 -0700209
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800210 bool btNrecIsOff() const { return mBtNrecIsOff; }
Eric Laurent6639b552011-08-01 09:52:20 -0700211
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 AudioFlinger();
213 virtual ~AudioFlinger();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214
Glenn Kastenad8d1752012-02-02 14:05:20 -0800215 // call in any IAudioFlinger method that accesses mPrimaryHardwareDev
216 status_t initCheck() const { return mPrimaryHardwareDev == NULL ? NO_INIT : NO_ERROR; }
217
Glenn Kasten67cb3122012-03-01 17:10:56 -0800218 // RefBase
Dima Zavin2986f5b2011-04-19 19:04:32 -0700219 virtual void onFirstRef();
Glenn Kasten67cb3122012-03-01 17:10:56 -0800220
Dima Zavin31f188892011-04-18 16:57:27 -0700221 audio_hw_device_t* findSuitableHwDev_l(uint32_t devices);
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700222 void purgeStaleEffects_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800224 // standby delay for MIXER and DUPLICATING playback threads is read from property
225 // ro.audio.flinger_standbytime_ms or defaults to kDefaultStandbyTimeInNsecs
John Grossmand8cf2962012-02-08 16:37:41 -0800226 static nsecs_t mStandbyTimeInNsecs;
227
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800228 // Internal dump utilites.
229 status_t dumpPermissionDenial(int fd, const Vector<String16>& args);
230 status_t dumpClients(int fd, const Vector<String16>& args);
231 status_t dumpInternals(int fd, const Vector<String16>& args);
232
233 // --- Client ---
234 class Client : public RefBase {
235 public:
236 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
237 virtual ~Client();
Glenn Kasten1f812f72012-01-30 10:15:48 -0800238 sp<MemoryDealer> heap() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 pid_t pid() const { return mPid; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800240 sp<AudioFlinger> audioFlinger() const { return mAudioFlinger; }
Eric Laurentb9481d82009-09-17 05:12:56 -0700241
John Grossmand8cf2962012-02-08 16:37:41 -0800242 bool reserveTimedTrack();
243 void releaseTimedTrack();
244
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800245 private:
246 Client(const Client&);
247 Client& operator = (const Client&);
Glenn Kastendc3ac852012-01-25 15:28:08 -0800248 const sp<AudioFlinger> mAudioFlinger;
249 const sp<MemoryDealer> mMemoryDealer;
250 const pid_t mPid;
John Grossmand8cf2962012-02-08 16:37:41 -0800251
252 Mutex mTimedTrackLock;
253 int mTimedTrackCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800254 };
255
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700256 // --- Notification Client ---
257 class NotificationClient : public IBinder::DeathRecipient {
258 public:
259 NotificationClient(const sp<AudioFlinger>& audioFlinger,
260 const sp<IAudioFlingerClient>& client,
261 pid_t pid);
262 virtual ~NotificationClient();
263
Glenn Kastendc3ac852012-01-25 15:28:08 -0800264 sp<IAudioFlingerClient> audioFlingerClient() const { return mAudioFlingerClient; }
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700265
266 // IBinder::DeathRecipient
267 virtual void binderDied(const wp<IBinder>& who);
268
269 private:
270 NotificationClient(const NotificationClient&);
271 NotificationClient& operator = (const NotificationClient&);
272
Glenn Kastendc3ac852012-01-25 15:28:08 -0800273 const sp<AudioFlinger> mAudioFlinger;
274 const pid_t mPid;
275 const sp<IAudioFlingerClient> mAudioFlingerClient;
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700276 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277
278 class TrackHandle;
279 class RecordHandle;
Eric Laurenta553c252009-07-17 12:17:14 -0700280 class RecordThread;
281 class PlaybackThread;
282 class MixerThread;
283 class DirectOutputThread;
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800284 class DuplicatingThread;
Eric Laurenta553c252009-07-17 12:17:14 -0700285 class Track;
286 class RecordTrack;
Eric Laurent65b65452010-06-01 23:49:17 -0700287 class EffectModule;
288 class EffectHandle;
289 class EffectChain;
Dima Zavin31f188892011-04-18 16:57:27 -0700290 struct AudioStreamOut;
291 struct AudioStreamIn;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292
Eric Laurenta553c252009-07-17 12:17:14 -0700293 class ThreadBase : public Thread {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294 public:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800295
Glenn Kastenefd511a2012-01-26 10:38:26 -0800296 enum type_t {
Eric Laurent464d5b32011-06-17 21:29:58 -0700297 MIXER, // Thread class is MixerThread
298 DIRECT, // Thread class is DirectOutputThread
299 DUPLICATING, // Thread class is DuplicatingThread
300 RECORD // Thread class is RecordThread
301 };
302
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800303 ThreadBase (const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id, uint32_t device, type_t type);
Glenn Kastenefd511a2012-01-26 10:38:26 -0800304 virtual ~ThreadBase();
305
Eric Laurent3fdb1262009-11-07 00:01:32 -0800306 status_t dumpBase(int fd, const Vector<String16>& args);
Eric Laurent1345d332011-07-24 17:49:51 -0700307 status_t dumpEffectChains(int fd, const Vector<String16>& args);
Eric Laurent3fdb1262009-11-07 00:01:32 -0800308
Eric Laurent6dbdc402011-07-22 09:04:31 -0700309 void clearPowerManager();
310
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800311 // base for record and playback
312 class TrackBase : public AudioBufferProvider, public RefBase {
313
314 public:
315 enum track_state {
316 IDLE,
317 TERMINATED,
Glenn Kastenb3db2132012-01-19 08:59:58 -0800318 // These are order-sensitive; do not change order without reviewing the impact.
319 // In particular there are assumptions about > STOPPED.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800320 STOPPED,
321 RESUMING,
322 ACTIVE,
323 PAUSING,
324 PAUSED
325 };
326
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800327 TrackBase(ThreadBase *thread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328 const sp<Client>& client,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800330 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700331 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800332 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -0700333 const sp<IMemory>& sharedBuffer,
334 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800335 virtual ~TrackBase();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336
Glenn Kasten6a20b262012-02-02 10:56:47 -0800337 virtual status_t start(pid_t tid) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338 virtual void stop() = 0;
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800339 sp<IMemory> getCblk() const { return mCblkMemory; }
Eric Laurent6c30a712009-08-10 23:22:32 -0700340 audio_track_cblk_t* cblk() const { return mCblk; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800341 int sessionId() const { return mSessionId; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800342
343 protected:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800344 TrackBase(const TrackBase&);
345 TrackBase& operator = (const TrackBase&);
346
Glenn Kastenc2db1192012-02-22 10:47:35 -0800347 // AudioBufferProvider interface
348 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
350
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800351 audio_format_t format() const {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800352 return mFormat;
353 }
354
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800355 int channelCount() const { return mChannelCount; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800356
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800357 uint32_t channelMask() const { return mChannelMask; }
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700358
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800359 int sampleRate() const; // FIXME inline after cblk sr moved
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360
361 void* getBuffer(uint32_t offset, uint32_t frames) const;
362
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363 bool isStopped() const {
364 return mState == STOPPED;
365 }
366
367 bool isTerminated() const {
368 return mState == TERMINATED;
369 }
370
371 bool step();
372 void reset();
373
Glenn Kastendc3ac852012-01-25 15:28:08 -0800374 const wp<ThreadBase> mThread;
375 /*const*/ sp<Client> mClient; // see explanation at ~TrackBase() why not const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376 sp<IMemory> mCblkMemory;
377 audio_track_cblk_t* mCblk;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 void* mBuffer;
379 void* mBufferEnd;
380 uint32_t mFrameCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800381 // we don't really need a lock for these
Glenn Kasten56356202012-01-26 13:39:18 -0800382 track_state mState;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800383 const audio_format_t mFormat;
Glenn Kasten35269822012-02-21 10:35:56 -0800384 bool mStepServerFailed;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800385 const int mSessionId;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700386 uint8_t mChannelCount;
387 uint32_t mChannelMask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 };
389
Eric Laurenta553c252009-07-17 12:17:14 -0700390 class ConfigEvent {
391 public:
392 ConfigEvent() : mEvent(0), mParam(0) {}
393
394 int mEvent;
395 int mParam;
396 };
397
Eric Laurent6dbdc402011-07-22 09:04:31 -0700398 class PMDeathRecipient : public IBinder::DeathRecipient {
399 public:
400 PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
401 virtual ~PMDeathRecipient() {}
402
403 // IBinder::DeathRecipient
404 virtual void binderDied(const wp<IBinder>& who);
405
406 private:
407 PMDeathRecipient(const PMDeathRecipient&);
408 PMDeathRecipient& operator = (const PMDeathRecipient&);
409
410 wp<ThreadBase> mThread;
411 };
412
Eric Laurent464d5b32011-06-17 21:29:58 -0700413 virtual status_t initCheck() const = 0;
Glenn Kastenefd511a2012-01-26 10:38:26 -0800414 type_t type() const { return mType; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800415 uint32_t sampleRate() const { return mSampleRate; }
416 int channelCount() const { return mChannelCount; }
417 audio_format_t format() const { return mFormat; }
418 size_t frameCount() const { return mFrameCount; }
Eric Laurenta553c252009-07-17 12:17:14 -0700419 void wakeUp() { mWaitWorkCV.broadcast(); }
Glenn Kasten761286f2012-01-06 08:39:38 -0800420 // Should be "virtual status_t requestExitAndWait()" and override same
421 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
Eric Laurenta553c252009-07-17 12:17:14 -0700422 void exit();
423 virtual bool checkForNewParameters_l() = 0;
424 virtual status_t setParameters(const String8& keyValuePairs);
425 virtual String8 getParameters(const String8& keys) = 0;
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700426 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700427 void sendConfigEvent(int event, int param = 0);
Eric Laurent8fce46a2009-08-04 09:45:33 -0700428 void sendConfigEvent_l(int event, int param = 0);
Eric Laurenta553c252009-07-17 12:17:14 -0700429 void processConfigEvents();
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800430 audio_io_handle_t id() const { return mId;}
Glenn Kasten0fccd352012-02-24 15:42:17 -0800431 bool standby() const { return mStandby; }
432 uint32_t device() const { return mDevice; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700433 virtual audio_stream_t* stream() = 0;
434
435 sp<EffectHandle> createEffect_l(
436 const sp<AudioFlinger::Client>& client,
437 const sp<IEffectClient>& effectClient,
438 int32_t priority,
439 int sessionId,
440 effect_descriptor_t *desc,
441 int *enabled,
442 status_t *status);
443 void disconnectEffect(const sp< EffectModule>& effect,
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700444 const wp<EffectHandle>& handle,
Glenn Kasten29441ff2012-02-03 10:32:24 -0800445 bool unpinIfLast);
Eric Laurent464d5b32011-06-17 21:29:58 -0700446
447 // return values for hasAudioSession (bit field)
448 enum effect_state {
449 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
450 // effect
451 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
452 // track
453 };
454
455 // get effect chain corresponding to session Id.
456 sp<EffectChain> getEffectChain(int sessionId);
457 // same as getEffectChain() but must be called with ThreadBase mutex locked
458 sp<EffectChain> getEffectChain_l(int sessionId);
459 // add an effect chain to the chain list (mEffectChains)
460 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
461 // remove an effect chain from the chain list (mEffectChains)
462 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
Glenn Kastenf2218b72012-02-24 15:42:48 -0800463 // lock all effect chains Mutexes. Must be called before releasing the
Eric Laurent464d5b32011-06-17 21:29:58 -0700464 // ThreadBase mutex before processing the mixer and effects. This guarantees the
465 // integrity of the chains during the process.
Glenn Kastenf2218b72012-02-24 15:42:48 -0800466 // Also sets the parameter 'effectChains' to current value of mEffectChains.
Glenn Kasten18db49a2012-03-12 16:29:55 -0700467 void lockEffectChains_l(Vector< sp<EffectChain> >& effectChains);
Eric Laurent464d5b32011-06-17 21:29:58 -0700468 // unlock effect chains after process
Glenn Kasten18db49a2012-03-12 16:29:55 -0700469 void unlockEffectChains(const Vector< sp<EffectChain> >& effectChains);
Eric Laurent464d5b32011-06-17 21:29:58 -0700470 // set audio mode to all effect chains
Glenn Kastenaccb1142012-01-04 11:00:47 -0800471 void setMode(audio_mode_t mode);
Eric Laurent464d5b32011-06-17 21:29:58 -0700472 // get effect module with corresponding ID on specified audio session
473 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
474 // add and effect module. Also creates the effect chain is none exists for
475 // the effects audio session
476 status_t addEffect_l(const sp< EffectModule>& effect);
477 // remove and effect module. Also removes the effect chain is this was the last
478 // effect
479 void removeEffect_l(const sp< EffectModule>& effect);
480 // detach all tracks connected to an auxiliary effect
481 virtual void detachAuxEffect_l(int effectId) {}
482 // returns either EFFECT_SESSION if effects on this audio session exist in one
483 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
484 virtual uint32_t hasAudioSession(int sessionId) = 0;
485 // the value returned by default implementation is not important as the
486 // strategy is only meaningful for PlaybackThread which implements this method
487 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
Eric Laurenta553c252009-07-17 12:17:14 -0700488
Eric Laurentf82fccd2011-07-27 19:49:51 -0700489 // suspend or restore effect according to the type of effect passed. a NULL
490 // type pointer means suspend all effects in the session
491 void setEffectSuspended(const effect_uuid_t *type,
492 bool suspend,
493 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
494 // check if some effects must be suspended/restored when an effect is enabled
495 // or disabled
Eric Laurent7fa1cee2011-10-19 11:44:54 -0700496 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurentf82fccd2011-07-27 19:49:51 -0700497 bool enabled,
498 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent7fa1cee2011-10-19 11:44:54 -0700499 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
500 bool enabled,
501 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent2c817f52009-07-23 13:17:39 -0700502 mutable Mutex mLock;
503
Eric Laurenta553c252009-07-17 12:17:14 -0700504 protected:
505
Eric Laurentf82fccd2011-07-27 19:49:51 -0700506 // entry describing an effect being suspended in mSuspendedSessions keyed vector
507 class SuspendedSessionDesc : public RefBase {
508 public:
509 SuspendedSessionDesc() : mRefCount(0) {}
510
511 int mRefCount; // number of active suspend requests
512 effect_uuid_t mType; // effect type UUID
513 };
514
Eric Laurent6dbdc402011-07-22 09:04:31 -0700515 void acquireWakeLock();
516 void acquireWakeLock_l();
517 void releaseWakeLock();
518 void releaseWakeLock_l();
Eric Laurentf82fccd2011-07-27 19:49:51 -0700519 void setEffectSuspended_l(const effect_uuid_t *type,
520 bool suspend,
521 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
522 // updated mSuspendedSessions when an effect suspended or restored
523 void updateSuspendedSessions_l(const effect_uuid_t *type,
524 bool suspend,
525 int sessionId);
526 // check if some effects must be suspended when an effect chain is added
527 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
Eric Laurent6dbdc402011-07-22 09:04:31 -0700528
Glenn Kastenb3030f92012-03-09 12:07:30 -0800529 friend class AudioFlinger; // for mEffectChains
Eric Laurenta553c252009-07-17 12:17:14 -0700530
Glenn Kastenefd511a2012-01-26 10:38:26 -0800531 const type_t mType;
Glenn Kastenbf106572012-03-01 09:21:37 -0800532
533 // Used by parameters, config events, addTrack_l, exit
Eric Laurenta553c252009-07-17 12:17:14 -0700534 Condition mWaitWorkCV;
Glenn Kastenbf106572012-03-01 09:21:37 -0800535
Glenn Kastendc3ac852012-01-25 15:28:08 -0800536 const sp<AudioFlinger> mAudioFlinger;
Eric Laurenta553c252009-07-17 12:17:14 -0700537 uint32_t mSampleRate;
538 size_t mFrameCount;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700539 uint32_t mChannelMask;
Eric Laurentb0a01472010-05-14 05:45:46 -0700540 uint16_t mChannelCount;
Glenn Kastenfaf354d2012-01-11 09:48:27 -0800541 size_t mFrameSize;
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800542 audio_format_t mFormat;
Glenn Kastenbf106572012-03-01 09:21:37 -0800543
544 // Parameter sequence by client: binder thread calling setParameters():
545 // 1. Lock mLock
546 // 2. Append to mNewParameters
547 // 3. mWaitWorkCV.signal
548 // 4. mParamCond.waitRelative with timeout
549 // 5. read mParamStatus
550 // 6. mWaitWorkCV.signal
551 // 7. Unlock
552 //
553 // Parameter sequence by server: threadLoop calling checkForNewParameters_l():
554 // 1. Lock mLock
555 // 2. If there is an entry in mNewParameters proceed ...
556 // 2. Read first entry in mNewParameters
557 // 3. Process
558 // 4. Remove first entry from mNewParameters
559 // 5. Set mParamStatus
560 // 6. mParamCond.signal
561 // 7. mWaitWorkCV.wait with timeout (this is to avoid overwriting mParamStatus)
562 // 8. Unlock
Eric Laurenta553c252009-07-17 12:17:14 -0700563 Condition mParamCond;
Eric Laurent8fce46a2009-08-04 09:45:33 -0700564 Vector<String8> mNewParameters;
Eric Laurenta553c252009-07-17 12:17:14 -0700565 status_t mParamStatus;
Glenn Kastenbf106572012-03-01 09:21:37 -0800566
Glenn Kasten4b220f02011-12-13 11:50:00 -0800567 Vector<ConfigEvent> mConfigEvents;
Eric Laurenta553c252009-07-17 12:17:14 -0700568 bool mStandby;
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800569 const audio_io_handle_t mId;
Eric Laurent464d5b32011-06-17 21:29:58 -0700570 Vector< sp<EffectChain> > mEffectChains;
571 uint32_t mDevice; // output device for PlaybackThread
572 // input + output devices for RecordThread
Glenn Kasten86e33622012-02-28 12:30:08 -0800573 static const int kNameLength = 16; // prctl(PR_SET_NAME) limit
Eric Laurent6dbdc402011-07-22 09:04:31 -0700574 char mName[kNameLength];
575 sp<IPowerManager> mPowerManager;
576 sp<IBinder> mWakeLockToken;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800577 const sp<PMDeathRecipient> mDeathRecipient;
Eric Laurentf82fccd2011-07-27 19:49:51 -0700578 // list of suspended effects per session and per type. The first vector is
579 // keyed by session ID, the second by type UUID timeLow field
580 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > > mSuspendedSessions;
Eric Laurenta553c252009-07-17 12:17:14 -0700581 };
582
Glenn Kasten37733342012-02-08 12:36:25 -0800583 struct stream_type_t {
584 stream_type_t()
585 : volume(1.0f),
586 mute(false),
587 valid(true)
588 {
589 }
590 float volume;
591 bool mute;
592 bool valid;
593 };
594
Eric Laurenta553c252009-07-17 12:17:14 -0700595 // --- PlaybackThread ---
596 class PlaybackThread : public ThreadBase {
597 public:
598
Eric Laurent059b4be2009-11-09 23:32:22 -0800599 enum mixer_state {
Glenn Kastenf2218b72012-02-24 15:42:48 -0800600 MIXER_IDLE, // no active tracks
601 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
602 MIXER_TRACKS_READY // at least one active track, and at least one track has data
603 // standby mode does not have an enum value
604 // suspend by audio policy manager is orthogonal to mixer state
Eric Laurent059b4be2009-11-09 23:32:22 -0800605 };
606
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800607 // playback track
608 class Track : public TrackBase {
609 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800610 Track( PlaybackThread *thread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 const sp<Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800612 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800614 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700615 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800616 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -0700617 const sp<IMemory>& sharedBuffer,
618 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800619 virtual ~Track();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800620
621 void dump(char* buffer, size_t size);
Glenn Kasten6a20b262012-02-02 10:56:47 -0800622 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800623 virtual void stop();
624 void pause();
625
626 void flush();
627 void destroy();
628 void mute(bool);
Eric Laurenta553c252009-07-17 12:17:14 -0700629 int name() const {
630 return mName;
631 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800632
Glenn Kastenaae26c82012-02-08 12:35:35 -0800633 audio_stream_type_t streamType() const {
Eric Laurent4bc035a2009-05-22 09:18:15 -0700634 return mStreamType;
635 }
Eric Laurent65b65452010-06-01 23:49:17 -0700636 status_t attachAuxEffect(int EffectId);
637 void setAuxBuffer(int EffectId, int32_t *buffer);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800638 int32_t *auxBuffer() const { return mAuxBuffer; }
Eric Laurent65b65452010-06-01 23:49:17 -0700639 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800640 int16_t *mainBuffer() const { return mMainBuffer; }
641 int auxEffectId() const { return mAuxEffectId; }
Eric Laurent4bc035a2009-05-22 09:18:15 -0700642
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800643 protected:
Glenn Kastenb3030f92012-03-09 12:07:30 -0800644 // for numerous
Eric Laurent2c817f52009-07-23 13:17:39 -0700645 friend class PlaybackThread;
646 friend class MixerThread;
647 friend class DirectOutputThread;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800648
649 Track(const Track&);
650 Track& operator = (const Track&);
651
Glenn Kastenc2db1192012-02-22 10:47:35 -0800652 // AudioBufferProvider interface
653 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
654 // releaseBuffer() not overridden
655
John Grossmand8cf2962012-02-08 16:37:41 -0800656 virtual uint32_t framesReady() const;
657
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800658 bool isMuted() const { return mMute; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800659 bool isPausing() const {
660 return mState == PAUSING;
661 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800662 bool isPaused() const {
663 return mState == PAUSED;
664 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800665 bool isReady() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800666 void setPaused() { mState = PAUSED; }
667 void reset();
668
Eric Laurent49f02be2009-11-19 09:00:56 -0800669 bool isOutputTrack() const {
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700670 return (mStreamType == AUDIO_STREAM_CNT);
Eric Laurent49f02be2009-11-19 09:00:56 -0800671 }
672
Glenn Kastenb3030f92012-03-09 12:07:30 -0800673 public:
John Grossmand8cf2962012-02-08 16:37:41 -0800674 virtual bool isTimedTrack() const { return false; }
Glenn Kastenb3030f92012-03-09 12:07:30 -0800675 protected:
John Grossmand8cf2962012-02-08 16:37:41 -0800676
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800677 // we don't really need a lock for these
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800678 volatile bool mMute;
679 // FILLED state is used for suppressing volume ramp at begin of playing
680 enum {FS_FILLING, FS_FILLED, FS_ACTIVE};
681 mutable uint8_t mFillingUpStatus;
682 int8_t mRetryCount;
Glenn Kastene9b2b3b2012-03-19 11:14:37 -0700683 const sp<IMemory> mSharedBuffer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800684 bool mResetDone;
Glenn Kastene9b2b3b2012-03-19 11:14:37 -0700685 const audio_stream_type_t mStreamType;
Eric Laurenta553c252009-07-17 12:17:14 -0700686 int mName;
Eric Laurent65b65452010-06-01 23:49:17 -0700687 int16_t *mMainBuffer;
688 int32_t *mAuxBuffer;
689 int mAuxEffectId;
Eric Laurenta92ebfa2010-08-31 13:50:07 -0700690 bool mHasVolumeController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800691 }; // end of Track
692
John Grossmand8cf2962012-02-08 16:37:41 -0800693 class TimedTrack : public Track {
694 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800695 static sp<TimedTrack> create(PlaybackThread *thread,
John Grossmand8cf2962012-02-08 16:37:41 -0800696 const sp<Client>& client,
697 audio_stream_type_t streamType,
698 uint32_t sampleRate,
699 audio_format_t format,
700 uint32_t channelMask,
701 int frameCount,
702 const sp<IMemory>& sharedBuffer,
703 int sessionId);
704 ~TimedTrack();
705
706 class TimedBuffer {
707 public:
708 TimedBuffer();
709 TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
710 const sp<IMemory>& buffer() const { return mBuffer; }
711 int64_t pts() const { return mPTS; }
712 int position() const { return mPosition; }
713 void setPosition(int pos) { mPosition = pos; }
714 private:
715 sp<IMemory> mBuffer;
716 int64_t mPTS;
717 int mPosition;
718 };
719
720 virtual bool isTimedTrack() const { return true; }
721
722 virtual uint32_t framesReady() const;
723
Glenn Kastenc2db1192012-02-22 10:47:35 -0800724 // AudioBufferProvider interface
725 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
John Grossmand8cf2962012-02-08 16:37:41 -0800726 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kastenc2db1192012-02-22 10:47:35 -0800727
John Grossmand8cf2962012-02-08 16:37:41 -0800728 void timedYieldSamples(AudioBufferProvider::Buffer* buffer);
729 void timedYieldSilence(uint32_t numFrames,
730 AudioBufferProvider::Buffer* buffer);
731
732 status_t allocateTimedBuffer(size_t size,
733 sp<IMemory>* buffer);
734 status_t queueTimedBuffer(const sp<IMemory>& buffer,
735 int64_t pts);
736 status_t setMediaTimeTransform(const LinearTransform& xform,
737 TimedAudioTrack::TargetTimeline target);
738 void trimTimedBufferQueue_l();
739
740 private:
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800741 TimedTrack(PlaybackThread *thread,
John Grossmand8cf2962012-02-08 16:37:41 -0800742 const sp<Client>& client,
743 audio_stream_type_t streamType,
744 uint32_t sampleRate,
745 audio_format_t format,
746 uint32_t channelMask,
747 int frameCount,
748 const sp<IMemory>& sharedBuffer,
749 int sessionId);
750
751 uint64_t mLocalTimeFreq;
752 LinearTransform mLocalTimeToSampleTransform;
753 sp<MemoryDealer> mTimedMemoryDealer;
754 Vector<TimedBuffer> mTimedBufferQueue;
755 uint8_t* mTimedSilenceBuffer;
756 uint32_t mTimedSilenceBufferSize;
757 mutable Mutex mTimedBufferQueueLock;
758 bool mTimedAudioOutputOnTime;
759 CCHelper mCCHelper;
760
761 Mutex mMediaTimeTransformLock;
762 LinearTransform mMediaTimeTransform;
763 bool mMediaTimeTransformValid;
764 TimedAudioTrack::TargetTimeline mMediaTimeTransformTarget;
765 };
766
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800767
768 // playback track
769 class OutputTrack : public Track {
770 public:
Eric Laurenta553c252009-07-17 12:17:14 -0700771
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800772 class Buffer: public AudioBufferProvider::Buffer {
773 public:
774 int16_t *mBuffer;
775 };
Eric Laurenta553c252009-07-17 12:17:14 -0700776
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800777 OutputTrack(PlaybackThread *thread,
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800778 DuplicatingThread *sourceThread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800779 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800780 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700781 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800782 int frameCount);
Glenn Kastenb1631382012-01-30 14:54:39 -0800783 virtual ~OutputTrack();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800784
Glenn Kasten6a20b262012-02-02 10:56:47 -0800785 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800786 virtual void stop();
Eric Laurenta553c252009-07-17 12:17:14 -0700787 bool write(int16_t* data, uint32_t frames);
Glenn Kasten7d3be3a2012-01-26 10:53:32 -0800788 bool bufferQueueEmpty() const { return mBufferQueue.size() == 0; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800789 bool isActive() const { return mActive; }
790 const wp<ThreadBase>& thread() const { return mThread; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800791
792 private:
793
Glenn Kasten34f9f8b2012-01-20 17:00:00 -0800794 enum {
795 NO_MORE_BUFFERS = 0x80000001, // same in AudioTrack.h, ok to be different value
796 };
797
Eric Laurenta553c252009-07-17 12:17:14 -0700798 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800799 void clearBufferQueue();
Eric Laurenta553c252009-07-17 12:17:14 -0700800
801 // Maximum number of pending buffers allocated by OutputTrack::write()
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800802 static const uint8_t kMaxOverFlowBuffers = 10;
Eric Laurenta553c252009-07-17 12:17:14 -0700803
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800804 Vector < Buffer* > mBufferQueue;
805 AudioBufferProvider::Buffer mOutBuffer;
Eric Laurenta553c252009-07-17 12:17:14 -0700806 bool mActive;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800807 DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
Eric Laurenta553c252009-07-17 12:17:14 -0700808 }; // end of OutputTrack
809
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800810 PlaybackThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
811 audio_io_handle_t id, uint32_t device, type_t type);
Eric Laurenta553c252009-07-17 12:17:14 -0700812 virtual ~PlaybackThread();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800813
Glenn Kasten8d8557a2012-03-09 10:30:26 -0800814 status_t dump(int fd, const Vector<String16>& args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800815
816 // Thread virtuals
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800817 virtual status_t readyToRun();
Glenn Kasten67cb3122012-03-01 17:10:56 -0800818 virtual bool threadLoop();
819
820 // RefBase
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800821 virtual void onFirstRef();
822
Glenn Kasten67cb3122012-03-01 17:10:56 -0800823protected:
824 // Code snippets that were lifted up out of threadLoop()
825 virtual void threadLoop_mix() = 0;
826 virtual void threadLoop_sleepTime() = 0;
827 virtual void threadLoop_write();
828 virtual void threadLoop_standby();
829
Glenn Kasten761415b2012-03-06 11:23:32 -0800830 // prepareTracks_l reads and writes mActiveTracks, and also returns the
831 // pending set of tracks to remove via Vector 'tracksToRemove'. The caller is
832 // responsible for clearing or destroying this Vector later on, when it
833 // is safe to do so. That will drop the final ref count and destroy the tracks.
834 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0;
Glenn Kasten67cb3122012-03-01 17:10:56 -0800835
836public:
837
Glenn Kastenc434c902011-12-13 11:53:26 -0800838 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700839
Glenn Kasten8d8557a2012-03-09 10:30:26 -0800840 // return estimated latency in milliseconds, as reported by HAL
841 uint32_t latency() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800842
Glenn Kasten8b02b992012-01-09 09:40:36 -0800843 void setMasterVolume(float value);
844 void setMasterMute(bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800845
Glenn Kasten8b02b992012-01-09 09:40:36 -0800846 void setStreamVolume(audio_stream_type_t stream, float value);
847 void setStreamMute(audio_stream_type_t stream, bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800848
Glenn Kasten8b02b992012-01-09 09:40:36 -0800849 float streamVolume(audio_stream_type_t stream) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800850
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700851 sp<Track> createTrack_l(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800852 const sp<AudioFlinger::Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800853 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800854 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800855 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700856 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800857 int frameCount,
858 const sp<IMemory>& sharedBuffer,
Eric Laurent65b65452010-06-01 23:49:17 -0700859 int sessionId,
John Grossmand8cf2962012-02-08 16:37:41 -0800860 bool isTimed,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800861 status_t *status);
Eric Laurenta553c252009-07-17 12:17:14 -0700862
Glenn Kasten5b0135e2012-01-26 09:46:34 -0800863 AudioStreamOut* getOutput() const;
Eric Laurent828b9772011-08-07 16:32:26 -0700864 AudioStreamOut* clearOutput();
865 virtual audio_stream_t* stream();
Eric Laurenta553c252009-07-17 12:17:14 -0700866
Eric Laurentd5603c12009-08-06 08:49:39 -0700867 void suspend() { mSuspended++; }
Glenn Kastene70583e2012-02-29 07:07:30 -0800868 void restore() { if (mSuspended > 0) mSuspended--; }
869 bool isSuspended() const { return (mSuspended > 0); }
Eric Laurenta553c252009-07-17 12:17:14 -0700870 virtual String8 getParameters(const String8& keys);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700871 virtual void audioConfigChanged_l(int event, int param = 0);
Glenn Kasten8d8557a2012-03-09 10:30:26 -0800872 status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800873 int16_t *mixBuffer() const { return mMixBuffer; };
Eric Laurent65b65452010-06-01 23:49:17 -0700874
Eric Laurent464d5b32011-06-17 21:29:58 -0700875 virtual void detachAuxEffect_l(int effectId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700876 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
877 int EffectId);
878 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
879 int EffectId);
Eric Laurenta553c252009-07-17 12:17:14 -0700880
Eric Laurent464d5b32011-06-17 21:29:58 -0700881 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
882 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
883 virtual uint32_t hasAudioSession(int sessionId);
884 virtual uint32_t getStrategyForSession_l(int sessionId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700885
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800886 void setStreamValid(audio_stream_type_t streamType, bool valid);
Eric Laurent05ce0942011-08-30 10:18:54 -0700887
Eric Laurent2c817f52009-07-23 13:17:39 -0700888 protected:
Eric Laurent2c817f52009-07-23 13:17:39 -0700889 int16_t* mMixBuffer;
Glenn Kastene70583e2012-02-29 07:07:30 -0800890 uint32_t mSuspended; // suspend count, > 0 means suspended
Eric Laurent2c817f52009-07-23 13:17:39 -0700891 int mBytesWritten;
Glenn Kastene6f8a422011-12-13 11:47:54 -0800892 private:
Glenn Kastenb3db2132012-01-19 08:59:58 -0800893 // mMasterMute is in both PlaybackThread and in AudioFlinger. When a
894 // PlaybackThread needs to find out if master-muted, it checks it's local
895 // copy rather than the one in AudioFlinger. This optimization saves a lock.
Eric Laurent2c817f52009-07-23 13:17:39 -0700896 bool mMasterMute;
Glenn Kasten8b02b992012-01-09 09:40:36 -0800897 void setMasterMute_l(bool muted) { mMasterMute = muted; }
Glenn Kastene6f8a422011-12-13 11:47:54 -0800898 protected:
Eric Laurent2c817f52009-07-23 13:17:39 -0700899 SortedVector< wp<Track> > mActiveTracks;
900
Glenn Kasten76b6c0c2012-02-14 08:52:15 -0800901 // Allocate a track name. Returns name >= 0 if successful, -1 on failure.
Eric Laurent62443f52009-10-05 20:29:18 -0700902 virtual int getTrackName_l() = 0;
903 virtual void deleteTrackName_l(int name) = 0;
Eric Laurent44331692011-12-05 09:47:19 -0800904 virtual uint32_t activeSleepTimeUs();
Eric Laurent059b4be2009-11-09 23:32:22 -0800905 virtual uint32_t idleSleepTimeUs() = 0;
Eric Laurent8448a792010-08-18 18:13:17 -0700906 virtual uint32_t suspendSleepTimeUs() = 0;
Eric Laurent62443f52009-10-05 20:29:18 -0700907
Glenn Kasten2521a012012-02-24 07:21:48 -0800908 // Code snippets that are temporarily lifted up out of threadLoop() until the merge
909 void checkSilentMode_l();
910
Glenn Kasten08d2c042012-03-06 11:28:04 -0800911 // Non-trivial for DUPLICATING only
912 virtual void saveOutputTracks() { }
913 virtual void clearOutputTracks() { }
914
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800915 // Cache various calculated values, at threadLoop() entry and after a parameter change
916 virtual void cacheParameters_l();
917
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800918 private:
919
Glenn Kastenb3030f92012-03-09 12:07:30 -0800920 friend class AudioFlinger; // for numerous
Eric Laurenta553c252009-07-17 12:17:14 -0700921
922 PlaybackThread(const Client&);
923 PlaybackThread& operator = (const PlaybackThread&);
924
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700925 status_t addTrack_l(const sp<Track>& track);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700926 void destroyTrack_l(const sp<Track>& track);
Eric Laurent90681d62011-05-09 12:09:06 -0700927 void removeTrack_l(const sp<Track>& track);
Eric Laurent62443f52009-10-05 20:29:18 -0700928
Eric Laurenta553c252009-07-17 12:17:14 -0700929 void readOutputParameters();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800930
Eric Laurenta553c252009-07-17 12:17:14 -0700931 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800932 status_t dumpTracks(int fd, const Vector<String16>& args);
Eric Laurenta553c252009-07-17 12:17:14 -0700933
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800934 SortedVector< sp<Track> > mTracks;
Glenn Kasten6e987a42012-01-06 08:40:01 -0800935 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by DuplicatingThread
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700936 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
Glenn Kasten5b0135e2012-01-26 09:46:34 -0800937 AudioStreamOut *mOutput;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800938 float mMasterVolume;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800939 nsecs_t mLastWriteTime;
940 int mNumWrites;
941 int mNumDelayedWrites;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800942 bool mInWrite;
Glenn Kasten67cb3122012-03-01 17:10:56 -0800943
944 // FIXME rename these former local variables of threadLoop to standard "m" names
945 nsecs_t standbyTime;
946 size_t mixBufferSize;
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800947
948 // cached copies of activeSleepTimeUs() and idleSleepTimeUs() made by cacheParameters_l()
Glenn Kasten67cb3122012-03-01 17:10:56 -0800949 uint32_t activeSleepTime;
950 uint32_t idleSleepTime;
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800951
Glenn Kasten67cb3122012-03-01 17:10:56 -0800952 uint32_t sleepTime;
Glenn Kastena13446a2012-03-08 07:47:15 -0800953
954 // mixer status returned by prepareTracks_l()
955 mixer_state mMixerStatus; // current cycle
956 mixer_state mPrevMixerStatus; // previous cycle
Glenn Kasten67cb3122012-03-01 17:10:56 -0800957
958 // FIXME move these declarations into the specific sub-class that needs them
959 // MIXER only
960 bool longStandbyExit;
961 uint32_t sleepTimeShift;
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800962
963 // same as AudioFlinger::mStandbyTimeInNsecs except for DIRECT which uses a shorter value
Glenn Kasten67cb3122012-03-01 17:10:56 -0800964 nsecs_t standbyDelay;
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800965
966 // MIXER only
967 nsecs_t maxPeriod;
968
Glenn Kasten67cb3122012-03-01 17:10:56 -0800969 // DUPLICATING only
Glenn Kasten67cb3122012-03-01 17:10:56 -0800970 uint32_t writeFrames;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800971 };
972
Eric Laurenta553c252009-07-17 12:17:14 -0700973 class MixerThread : public PlaybackThread {
974 public:
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700975 MixerThread (const sp<AudioFlinger>& audioFlinger,
Dima Zavin31f188892011-04-18 16:57:27 -0700976 AudioStreamOut* output,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800977 audio_io_handle_t id,
Glenn Kastenefd511a2012-01-26 10:38:26 -0800978 uint32_t device,
979 type_t type = MIXER);
Eric Laurenta553c252009-07-17 12:17:14 -0700980 virtual ~MixerThread();
981
982 // Thread virtuals
Eric Laurenta553c252009-07-17 12:17:14 -0700983
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800984 void invalidateTracks(audio_stream_type_t streamType);
Eric Laurenta553c252009-07-17 12:17:14 -0700985 virtual bool checkForNewParameters_l();
986 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
987
988 protected:
Glenn Kasten67cb3122012-03-01 17:10:56 -0800989 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
Eric Laurent62443f52009-10-05 20:29:18 -0700990 virtual int getTrackName_l();
991 virtual void deleteTrackName_l(int name);
Eric Laurent059b4be2009-11-09 23:32:22 -0800992 virtual uint32_t idleSleepTimeUs();
Eric Laurent8448a792010-08-18 18:13:17 -0700993 virtual uint32_t suspendSleepTimeUs();
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800994 virtual void cacheParameters_l();
Eric Laurenta553c252009-07-17 12:17:14 -0700995
Glenn Kasten67cb3122012-03-01 17:10:56 -0800996 // threadLoop snippets
997 virtual void threadLoop_mix();
998 virtual void threadLoop_sleepTime();
999
Eric Laurent71c44962012-01-17 19:20:12 -08001000 AudioMixer* mAudioMixer;
Eric Laurenta553c252009-07-17 12:17:14 -07001001 };
1002
1003 class DirectOutputThread : public PlaybackThread {
1004 public:
1005
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001006 DirectOutputThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
1007 audio_io_handle_t id, uint32_t device);
Glenn Kastenb1631382012-01-30 14:54:39 -08001008 virtual ~DirectOutputThread();
Eric Laurenta553c252009-07-17 12:17:14 -07001009
1010 // Thread virtuals
Eric Laurenta553c252009-07-17 12:17:14 -07001011
Eric Laurent62443f52009-10-05 20:29:18 -07001012 virtual bool checkForNewParameters_l();
1013
1014 protected:
Eric Laurenta553c252009-07-17 12:17:14 -07001015 virtual int getTrackName_l();
1016 virtual void deleteTrackName_l(int name);
Eric Laurent059b4be2009-11-09 23:32:22 -08001017 virtual uint32_t activeSleepTimeUs();
1018 virtual uint32_t idleSleepTimeUs();
Eric Laurent8448a792010-08-18 18:13:17 -07001019 virtual uint32_t suspendSleepTimeUs();
Glenn Kasten0fe52c82012-02-24 14:59:21 -08001020 virtual void cacheParameters_l();
Eric Laurenta553c252009-07-17 12:17:14 -07001021
Glenn Kasten67cb3122012-03-01 17:10:56 -08001022 // threadLoop snippets
Glenn Kasten761415b2012-03-06 11:23:32 -08001023 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
Glenn Kasten67cb3122012-03-01 17:10:56 -08001024 virtual void threadLoop_mix();
1025 virtual void threadLoop_sleepTime();
Eric Laurent65b65452010-06-01 23:49:17 -07001026
Glenn Kastenb3db2132012-01-19 08:59:58 -08001027 // volumes last sent to audio HAL with stream->set_volume()
1028 // FIXME use standard representation and names
Eric Laurent65b65452010-06-01 23:49:17 -07001029 float mLeftVolFloat;
1030 float mRightVolFloat;
1031 uint16_t mLeftVolShort;
1032 uint16_t mRightVolShort;
Glenn Kasten67cb3122012-03-01 17:10:56 -08001033
1034 // FIXME rename these former local variables of threadLoop to standard names
1035 // next 3 were local to the while !exitingPending loop
1036 bool rampVolume;
1037 uint16_t leftVol;
1038 uint16_t rightVol;
Glenn Kastene0127832012-03-06 15:52:35 -08001039
1040private:
Glenn Kastenb8f96762012-03-07 17:05:59 -08001041 // prepareTracks_l() tells threadLoop_mix() the name of the single active track
1042 sp<Track> mActiveTrack;
Eric Laurenta553c252009-07-17 12:17:14 -07001043 };
1044
1045 class DuplicatingThread : public MixerThread {
1046 public:
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001047 DuplicatingThread (const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
1048 audio_io_handle_t id);
Glenn Kastenb1631382012-01-30 14:54:39 -08001049 virtual ~DuplicatingThread();
Eric Laurenta553c252009-07-17 12:17:14 -07001050
1051 // Thread virtuals
Eric Laurenta553c252009-07-17 12:17:14 -07001052 void addOutputTrack(MixerThread* thread);
1053 void removeOutputTrack(MixerThread* thread);
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08001054 uint32_t waitTimeMs() { return mWaitTimeMs; }
1055 protected:
1056 virtual uint32_t activeSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -07001057
1058 private:
Glenn Kasten18db49a2012-03-12 16:29:55 -07001059 bool outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks);
Glenn Kasten67cb3122012-03-01 17:10:56 -08001060 protected:
1061 // threadLoop snippets
1062 virtual void threadLoop_mix();
1063 virtual void threadLoop_sleepTime();
1064 virtual void threadLoop_write();
1065 virtual void threadLoop_standby();
Glenn Kasten0fe52c82012-02-24 14:59:21 -08001066 virtual void cacheParameters_l();
Glenn Kasten2bad67f2012-03-06 11:24:48 -08001067
Glenn Kasten0fe52c82012-02-24 14:59:21 -08001068 private:
Glenn Kasten2bad67f2012-03-06 11:24:48 -08001069 // called from threadLoop, addOutputTrack, removeOutputTrack
1070 virtual void updateWaitTime_l();
Glenn Kasten0fe52c82012-02-24 14:59:21 -08001071 protected:
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
Glenn Kastenb3db2132012-01-19 08:59:58 -08001103 // server side of the client's IAudioTrack
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001104 class TrackHandle : public android::BnAudioTrack {
1105 public:
Eric Laurenta553c252009-07-17 12:17:14 -07001106 TrackHandle(const sp<PlaybackThread::Track>& track);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001107 virtual ~TrackHandle();
Glenn Kasten0ae4d972012-01-26 13:40:12 -08001108 virtual sp<IMemory> getCblk() const;
Glenn Kasten6a20b262012-02-02 10:56:47 -08001109 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001110 virtual void stop();
1111 virtual void flush();
1112 virtual void mute(bool);
1113 virtual void pause();
Eric Laurent65b65452010-06-01 23:49:17 -07001114 virtual status_t attachAuxEffect(int effectId);
John Grossmand8cf2962012-02-08 16:37:41 -08001115 virtual status_t allocateTimedBuffer(size_t size,
1116 sp<IMemory>* buffer);
1117 virtual status_t queueTimedBuffer(const sp<IMemory>& buffer,
1118 int64_t pts);
1119 virtual status_t setMediaTimeTransform(const LinearTransform& xform,
1120 int target);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001121 virtual status_t onTransact(
1122 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1123 private:
Glenn Kastendc3ac852012-01-25 15:28:08 -08001124 const sp<PlaybackThread::Track> mTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001125 };
1126
Eric Laurentb9481d82009-09-17 05:12:56 -07001127 void removeClient_l(pid_t pid);
Eric Laurent4f0f17d2010-05-12 02:05:53 -07001128 void removeNotificationClient(pid_t pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001129
1130
Eric Laurenta553c252009-07-17 12:17:14 -07001131 // record thread
1132 class RecordThread : public ThreadBase, public AudioBufferProvider
1133 {
1134 public:
1135
1136 // record track
1137 class RecordTrack : public TrackBase {
1138 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -08001139 RecordTrack(RecordThread *thread,
Eric Laurenta553c252009-07-17 12:17:14 -07001140 const sp<Client>& client,
1141 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001142 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001143 uint32_t channelMask,
Eric Laurenta553c252009-07-17 12:17:14 -07001144 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -07001145 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001146 virtual ~RecordTrack();
Eric Laurenta553c252009-07-17 12:17:14 -07001147
Glenn Kasten6a20b262012-02-02 10:56:47 -08001148 virtual status_t start(pid_t tid);
Eric Laurenta553c252009-07-17 12:17:14 -07001149 virtual void stop();
1150
1151 bool overflow() { bool tmp = mOverflow; mOverflow = false; return tmp; }
1152 bool setOverflow() { bool tmp = mOverflow; mOverflow = true; return tmp; }
1153
Eric Laurent3fdb1262009-11-07 00:01:32 -08001154 void dump(char* buffer, size_t size);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001155
Eric Laurenta553c252009-07-17 12:17:14 -07001156 private:
Glenn Kastenb3030f92012-03-09 12:07:30 -08001157 friend class AudioFlinger; // for mState
Eric Laurenta553c252009-07-17 12:17:14 -07001158
1159 RecordTrack(const RecordTrack&);
1160 RecordTrack& operator = (const RecordTrack&);
1161
Glenn Kastenc2db1192012-02-22 10:47:35 -08001162 // AudioBufferProvider interface
1163 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
1164 // releaseBuffer() not overridden
Eric Laurenta553c252009-07-17 12:17:14 -07001165
1166 bool mOverflow;
1167 };
1168
1169
1170 RecordThread(const sp<AudioFlinger>& audioFlinger,
Dima Zavin31f188892011-04-18 16:57:27 -07001171 AudioStreamIn *input,
Eric Laurenta553c252009-07-17 12:17:14 -07001172 uint32_t sampleRate,
Eric Laurent49f02be2009-11-19 09:00:56 -08001173 uint32_t channels,
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001174 audio_io_handle_t id,
Eric Laurent464d5b32011-06-17 21:29:58 -07001175 uint32_t device);
Glenn Kastenb1631382012-01-30 14:54:39 -08001176 virtual ~RecordThread();
Eric Laurenta553c252009-07-17 12:17:14 -07001177
Glenn Kasten67cb3122012-03-01 17:10:56 -08001178 // Thread
Eric Laurenta553c252009-07-17 12:17:14 -07001179 virtual bool threadLoop();
Eric Laurent828b9772011-08-07 16:32:26 -07001180 virtual status_t readyToRun();
Glenn Kasten67cb3122012-03-01 17:10:56 -08001181
1182 // RefBase
Eric Laurenta553c252009-07-17 12:17:14 -07001183 virtual void onFirstRef();
1184
Glenn Kastenc434c902011-12-13 11:53:26 -08001185 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent464d5b32011-06-17 21:29:58 -07001186 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
1187 const sp<AudioFlinger::Client>& client,
1188 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001189 audio_format_t format,
Eric Laurent464d5b32011-06-17 21:29:58 -07001190 int channelMask,
1191 int frameCount,
Eric Laurent464d5b32011-06-17 21:29:58 -07001192 int sessionId,
1193 status_t *status);
1194
Eric Laurenta553c252009-07-17 12:17:14 -07001195 status_t start(RecordTrack* recordTrack);
Glenn Kasten6a20b262012-02-02 10:56:47 -08001196 status_t start(RecordTrack* recordTrack, pid_t tid);
Eric Laurenta553c252009-07-17 12:17:14 -07001197 void stop(RecordTrack* recordTrack);
1198 status_t dump(int fd, const Vector<String16>& args);
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001199 AudioStreamIn* getInput() const;
Eric Laurent828b9772011-08-07 16:32:26 -07001200 AudioStreamIn* clearInput();
1201 virtual audio_stream_t* stream();
Eric Laurenta553c252009-07-17 12:17:14 -07001202
Glenn Kastenc2db1192012-02-22 10:47:35 -08001203 // AudioBufferProvider interface
1204 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
Eric Laurenta553c252009-07-17 12:17:14 -07001205 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kastenc2db1192012-02-22 10:47:35 -08001206
Eric Laurenta553c252009-07-17 12:17:14 -07001207 virtual bool checkForNewParameters_l();
1208 virtual String8 getParameters(const String8& keys);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001209 virtual void audioConfigChanged_l(int event, int param = 0);
Eric Laurenta553c252009-07-17 12:17:14 -07001210 void readInputParameters();
Eric Laurent47d0a922010-02-26 02:47:27 -08001211 virtual unsigned int getInputFramesLost();
Eric Laurenta553c252009-07-17 12:17:14 -07001212
Eric Laurent464d5b32011-06-17 21:29:58 -07001213 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
1214 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
1215 virtual uint32_t hasAudioSession(int sessionId);
Eric Laurent6639b552011-08-01 09:52:20 -07001216 RecordTrack* track();
Eric Laurent464d5b32011-06-17 21:29:58 -07001217
Eric Laurenta553c252009-07-17 12:17:14 -07001218 private:
1219 RecordThread();
Dima Zavin31f188892011-04-18 16:57:27 -07001220 AudioStreamIn *mInput;
Eric Laurent464d5b32011-06-17 21:29:58 -07001221 RecordTrack* mTrack;
Eric Laurenta553c252009-07-17 12:17:14 -07001222 sp<RecordTrack> mActiveTrack;
1223 Condition mStartStopCond;
1224 AudioResampler *mResampler;
1225 int32_t *mRsmpOutBuffer;
1226 int16_t *mRsmpInBuffer;
1227 size_t mRsmpInIndex;
1228 size_t mInputBytes;
Glenn Kastendc3ac852012-01-25 15:28:08 -08001229 const int mReqChannelCount;
1230 const uint32_t mReqSampleRate;
Eric Laurent9cc489a22009-12-05 05:20:01 -08001231 ssize_t mBytesRead;
Eric Laurenta553c252009-07-17 12:17:14 -07001232 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001233
Glenn Kastenb3db2132012-01-19 08:59:58 -08001234 // server side of the client's IAudioRecord
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001235 class RecordHandle : public android::BnAudioRecord {
1236 public:
Eric Laurenta553c252009-07-17 12:17:14 -07001237 RecordHandle(const sp<RecordThread::RecordTrack>& recordTrack);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001238 virtual ~RecordHandle();
Glenn Kasten0ae4d972012-01-26 13:40:12 -08001239 virtual sp<IMemory> getCblk() const;
Glenn Kasten6a20b262012-02-02 10:56:47 -08001240 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001241 virtual void stop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001242 virtual status_t onTransact(
1243 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1244 private:
Glenn Kastendc3ac852012-01-25 15:28:08 -08001245 const sp<RecordThread::RecordTrack> mRecordTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001246 };
1247
Eric Laurent65b65452010-06-01 23:49:17 -07001248 //--- Audio Effect Management
1249
1250 // EffectModule and EffectChain classes both have their own mutex to protect
1251 // state changes or resource modifications. Always respect the following order
1252 // if multiple mutexes must be acquired to avoid cross deadlock:
1253 // AudioFlinger -> ThreadBase -> EffectChain -> EffectModule
1254
1255 // The EffectModule class is a wrapper object controlling the effect engine implementation
1256 // in the effect library. It prevents concurrent calls to process() and command() functions
1257 // from different client threads. It keeps a list of EffectHandle objects corresponding
1258 // to all client applications using this effect and notifies applications of effect state,
1259 // control or parameter changes. It manages the activation state machine to send appropriate
1260 // reset, enable, disable commands to effect engine and provide volume
1261 // ramping when effects are activated/deactivated.
1262 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
1263 // the attached track(s) to accumulate their auxiliary channel.
1264 class EffectModule: public RefBase {
1265 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -08001266 EffectModule(ThreadBase *thread,
Eric Laurent65b65452010-06-01 23:49:17 -07001267 const wp<AudioFlinger::EffectChain>& chain,
1268 effect_descriptor_t *desc,
1269 int id,
1270 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001271 virtual ~EffectModule();
Eric Laurent65b65452010-06-01 23:49:17 -07001272
1273 enum effect_state {
1274 IDLE,
Eric Laurent7d850f22010-07-09 13:34:17 -07001275 RESTART,
Eric Laurent65b65452010-06-01 23:49:17 -07001276 STARTING,
1277 ACTIVE,
1278 STOPPING,
Eric Laurent21b5c472011-07-26 20:54:46 -07001279 STOPPED,
1280 DESTROYED
Eric Laurent65b65452010-06-01 23:49:17 -07001281 };
1282
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001283 int id() const { return mId; }
Eric Laurent65b65452010-06-01 23:49:17 -07001284 void process();
Eric Laurent7d850f22010-07-09 13:34:17 -07001285 void updateState();
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001286 status_t command(uint32_t cmdCode,
1287 uint32_t cmdSize,
1288 void *pCmdData,
1289 uint32_t *replySize,
1290 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001291
Eric Laurentdf9b81c2010-07-02 08:12:41 -07001292 void reset_l();
Eric Laurent65b65452010-06-01 23:49:17 -07001293 status_t configure();
1294 status_t init();
Glenn Kasten452d6d62012-01-26 13:43:46 -08001295 effect_state state() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001296 return mState;
1297 }
1298 uint32_t status() {
1299 return mStatus;
1300 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001301 int sessionId() const {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001302 return mSessionId;
1303 }
Eric Laurent65b65452010-06-01 23:49:17 -07001304 status_t setEnabled(bool enabled);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001305 bool isEnabled() const;
1306 bool isProcessEnabled() const;
Eric Laurent65b65452010-06-01 23:49:17 -07001307
1308 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
1309 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
1310 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
1311 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001312 void setChain(const wp<EffectChain>& chain) { mChain = chain; }
1313 void setThread(const wp<ThreadBase>& thread) { mThread = thread; }
Glenn Kastendc3ac852012-01-25 15:28:08 -08001314 const wp<ThreadBase>& thread() { return mThread; }
Eric Laurent65b65452010-06-01 23:49:17 -07001315
Glenn Kasten1f812f72012-01-30 10:15:48 -08001316 status_t addHandle(const sp<EffectHandle>& handle);
Glenn Kasten29441ff2012-02-03 10:32:24 -08001317 void disconnect(const wp<EffectHandle>& handle, bool unpinIfLast);
Eric Laurent65b65452010-06-01 23:49:17 -07001318 size_t removeHandle (const wp<EffectHandle>& handle);
1319
1320 effect_descriptor_t& desc() { return mDescriptor; }
Eric Laurent53334cd2010-06-23 17:38:20 -07001321 wp<EffectChain>& chain() { return mChain; }
Eric Laurent65b65452010-06-01 23:49:17 -07001322
1323 status_t setDevice(uint32_t device);
1324 status_t setVolume(uint32_t *left, uint32_t *right, bool controller);
Glenn Kastenaccb1142012-01-04 11:00:47 -08001325 status_t setMode(audio_mode_t mode);
Eric Laurent6fccbd02011-10-05 17:42:25 -07001326 status_t start();
Eric Laurent21b5c472011-07-26 20:54:46 -07001327 status_t stop();
Eric Laurentf82fccd2011-07-27 19:49:51 -07001328 void setSuspended(bool suspended);
Glenn Kasten1dce8412012-01-04 11:01:11 -08001329 bool suspended() const;
Eric Laurentf82fccd2011-07-27 19:49:51 -07001330
1331 sp<EffectHandle> controlHandle();
Eric Laurent65b65452010-06-01 23:49:17 -07001332
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001333 bool isPinned() const { return mPinned; }
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001334 void unPin() { mPinned = false; }
1335
Eric Laurent65b65452010-06-01 23:49:17 -07001336 status_t dump(int fd, const Vector<String16>& args);
1337
1338 protected:
Glenn Kastenb3030f92012-03-09 12:07:30 -08001339 friend class AudioFlinger; // for mHandles
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001340 bool mPinned;
Eric Laurent65b65452010-06-01 23:49:17 -07001341
Eric Laurent7d850f22010-07-09 13:34:17 -07001342 // Maximum time allocated to effect engines to complete the turn off sequence
1343 static const uint32_t MAX_DISABLE_TIME_MS = 10000;
1344
Eric Laurent65b65452010-06-01 23:49:17 -07001345 EffectModule(const EffectModule&);
1346 EffectModule& operator = (const EffectModule&);
1347
Eric Laurentdf9b81c2010-07-02 08:12:41 -07001348 status_t start_l();
1349 status_t stop_l();
Eric Laurent65b65452010-06-01 23:49:17 -07001350
Glenn Kasten1dce8412012-01-04 11:01:11 -08001351mutable Mutex mLock; // mutex for process, commands and handles list protection
Eric Laurent65b65452010-06-01 23:49:17 -07001352 wp<ThreadBase> mThread; // parent thread
1353 wp<EffectChain> mChain; // parent effect chain
1354 int mId; // this instance unique ID
1355 int mSessionId; // audio session ID
1356 effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
1357 effect_config_t mConfig; // input and output audio configuration
Eric Laurent0fb66c22011-05-17 19:16:02 -07001358 effect_handle_t mEffectInterface; // Effect module C API
Glenn Kasten452d6d62012-01-26 13:43:46 -08001359 status_t mStatus; // initialization status
1360 effect_state mState; // current activation state
Eric Laurent65b65452010-06-01 23:49:17 -07001361 Vector< wp<EffectHandle> > mHandles; // list of client handles
Glenn Kastenb3db2132012-01-19 08:59:58 -08001362 // First handle in mHandles has highest priority and controls the effect module
Eric Laurent7d850f22010-07-09 13:34:17 -07001363 uint32_t mMaxDisableWaitCnt; // maximum grace period before forcing an effect off after
1364 // sending disable command.
1365 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
Eric Laurentf82fccd2011-07-27 19:49:51 -07001366 bool mSuspended; // effect is suspended: temporarily disabled by framework
Eric Laurent65b65452010-06-01 23:49:17 -07001367 };
1368
1369 // The EffectHandle class implements the IEffect interface. It provides resources
1370 // to receive parameter updates, keeps track of effect control
1371 // ownership and state and has a pointer to the EffectModule object it is controlling.
1372 // There is one EffectHandle object for each application controlling (or using)
1373 // an effect module.
1374 // The EffectHandle is obtained by calling AudioFlinger::createEffect().
1375 class EffectHandle: public android::BnEffect {
1376 public:
1377
1378 EffectHandle(const sp<EffectModule>& effect,
1379 const sp<AudioFlinger::Client>& client,
1380 const sp<IEffectClient>& effectClient,
1381 int32_t priority);
1382 virtual ~EffectHandle();
1383
1384 // IEffect
1385 virtual status_t enable();
1386 virtual status_t disable();
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001387 virtual status_t command(uint32_t cmdCode,
1388 uint32_t cmdSize,
1389 void *pCmdData,
1390 uint32_t *replySize,
1391 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001392 virtual void disconnect();
Glenn Kasten29441ff2012-02-03 10:32:24 -08001393 private:
1394 void disconnect(bool unpinIfLast);
1395 public:
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001396 virtual sp<IMemory> getCblk() const { return mCblkMemory; }
Eric Laurent65b65452010-06-01 23:49:17 -07001397 virtual status_t onTransact(uint32_t code, const Parcel& data,
1398 Parcel* reply, uint32_t flags);
1399
1400
1401 // Give or take control of effect module
Eric Laurentf82fccd2011-07-27 19:49:51 -07001402 // - hasControl: true if control is given, false if removed
1403 // - signal: true client app should be signaled of change, false otherwise
1404 // - enabled: state of the effect when control is passed
1405 void setControl(bool hasControl, bool signal, bool enabled);
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001406 void commandExecuted(uint32_t cmdCode,
1407 uint32_t cmdSize,
1408 void *pCmdData,
1409 uint32_t replySize,
1410 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001411 void setEnabled(bool enabled);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001412 bool enabled() const { return mEnabled; }
Eric Laurent65b65452010-06-01 23:49:17 -07001413
1414 // Getters
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001415 int id() const { return mEffect->id(); }
1416 int priority() const { return mPriority; }
1417 bool hasControl() const { return mHasControl; }
1418 sp<EffectModule> effect() const { return mEffect; }
Eric Laurent65b65452010-06-01 23:49:17 -07001419
1420 void dump(char* buffer, size_t size);
1421
1422 protected:
Glenn Kastenb3030f92012-03-09 12:07:30 -08001423 friend class AudioFlinger; // for mEffect, mHasControl, mEnabled
Eric Laurent65b65452010-06-01 23:49:17 -07001424 EffectHandle(const EffectHandle&);
1425 EffectHandle& operator =(const EffectHandle&);
1426
1427 sp<EffectModule> mEffect; // pointer to controlled EffectModule
1428 sp<IEffectClient> mEffectClient; // callback interface for client notifications
Glenn Kasten803a86a2012-01-25 14:28:29 -08001429 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
Eric Laurent65b65452010-06-01 23:49:17 -07001430 sp<IMemory> mCblkMemory; // shared memory for control block
1431 effect_param_cblk_t* mCblk; // control block for deferred parameter setting via shared memory
1432 uint8_t* mBuffer; // pointer to parameter area in shared memory
1433 int mPriority; // client application priority to control the effect
1434 bool mHasControl; // true if this handle is controlling the effect
Eric Laurentf82fccd2011-07-27 19:49:51 -07001435 bool mEnabled; // cached enable state: needed when the effect is
1436 // restored after being suspended
Eric Laurent65b65452010-06-01 23:49:17 -07001437 };
1438
1439 // the EffectChain class represents a group of effects associated to one audio session.
1440 // There can be any number of EffectChain objects per output mixer thread (PlaybackThread).
1441 // The EffecChain with session ID 0 contains global effects applied to the output mix.
1442 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to tracks)
1443 // are insert only. The EffectChain maintains an ordered list of effect module, the order corresponding
1444 // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
1445 // input buffer used by the track as accumulation buffer.
1446 class EffectChain: public RefBase {
1447 public:
1448 EffectChain(const wp<ThreadBase>& wThread, int sessionId);
Glenn Kasten685c9ce2012-01-20 13:32:16 -08001449 EffectChain(ThreadBase *thread, int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001450 virtual ~EffectChain();
Eric Laurent65b65452010-06-01 23:49:17 -07001451
Eric Laurentf82fccd2011-07-27 19:49:51 -07001452 // special key used for an entry in mSuspendedEffects keyed vector
1453 // corresponding to a suspend all request.
1454 static const int kKeyForSuspendAll = 0;
1455
Eric Laurentf9c361d2011-11-11 15:42:52 -08001456 // minimum duration during which we force calling effect process when last track on
1457 // a session is stopped or removed to allow effect tail to be rendered
1458 static const int kProcessTailDurationMs = 1000;
1459
Eric Laurent65b65452010-06-01 23:49:17 -07001460 void process_l();
1461
1462 void lock() {
1463 mLock.lock();
1464 }
1465 void unlock() {
1466 mLock.unlock();
1467 }
1468
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001469 status_t addEffect_l(const sp<EffectModule>& handle);
Eric Laurent76c40f72010-07-15 12:50:15 -07001470 size_t removeEffect_l(const sp<EffectModule>& handle);
Eric Laurent65b65452010-06-01 23:49:17 -07001471
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001472 int sessionId() const { return mSessionId; }
Eric Laurent464d5b32011-06-17 21:29:58 -07001473 void setSessionId(int sessionId) { mSessionId = sessionId; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001474
Eric Laurent76c40f72010-07-15 12:50:15 -07001475 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1476 sp<EffectModule> getEffectFromId_l(int id);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001477 sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type);
Eric Laurent76c40f72010-07-15 12:50:15 -07001478 bool setVolume_l(uint32_t *left, uint32_t *right);
1479 void setDevice_l(uint32_t device);
Glenn Kastenaccb1142012-01-04 11:00:47 -08001480 void setMode_l(audio_mode_t mode);
Eric Laurent53334cd2010-06-23 17:38:20 -07001481
Eric Laurent65b65452010-06-01 23:49:17 -07001482 void setInBuffer(int16_t *buffer, bool ownsBuffer = false) {
1483 mInBuffer = buffer;
1484 mOwnInBuffer = ownsBuffer;
1485 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001486 int16_t *inBuffer() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001487 return mInBuffer;
1488 }
1489 void setOutBuffer(int16_t *buffer) {
1490 mOutBuffer = buffer;
1491 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001492 int16_t *outBuffer() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001493 return mOutBuffer;
1494 }
1495
Eric Laurent90681d62011-05-09 12:09:06 -07001496 void incTrackCnt() { android_atomic_inc(&mTrackCnt); }
1497 void decTrackCnt() { android_atomic_dec(&mTrackCnt); }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001498 int32_t trackCnt() const { return mTrackCnt;}
Eric Laurent90681d62011-05-09 12:09:06 -07001499
Eric Laurentf9c361d2011-11-11 15:42:52 -08001500 void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt);
1501 mTailBufferCount = mMaxTailBuffers; }
Eric Laurent90681d62011-05-09 12:09:06 -07001502 void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001503 int32_t activeTrackCnt() const { return mActiveTrackCnt;}
Eric Laurent65b65452010-06-01 23:49:17 -07001504
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001505 uint32_t strategy() const { return mStrategy; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001506 void setStrategy(uint32_t strategy)
Glenn Kasten18db49a2012-03-12 16:29:55 -07001507 { mStrategy = strategy; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001508
Eric Laurentf82fccd2011-07-27 19:49:51 -07001509 // suspend effect of the given type
1510 void setEffectSuspended_l(const effect_uuid_t *type,
1511 bool suspend);
1512 // suspend all eligible effects
1513 void setEffectSuspendedAll_l(bool suspend);
1514 // check if effects should be suspend or restored when a given effect is enable or disabled
Eric Laurent7fa1cee2011-10-19 11:44:54 -07001515 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurentf82fccd2011-07-27 19:49:51 -07001516 bool enabled);
1517
Eric Laurent65b65452010-06-01 23:49:17 -07001518 status_t dump(int fd, const Vector<String16>& args);
1519
1520 protected:
Glenn Kastenb3030f92012-03-09 12:07:30 -08001521 friend class AudioFlinger; // for mThread, mEffects
Eric Laurent65b65452010-06-01 23:49:17 -07001522 EffectChain(const EffectChain&);
1523 EffectChain& operator =(const EffectChain&);
1524
Eric Laurentf82fccd2011-07-27 19:49:51 -07001525 class SuspendedEffectDesc : public RefBase {
1526 public:
1527 SuspendedEffectDesc() : mRefCount(0) {}
1528
1529 int mRefCount;
1530 effect_uuid_t mType;
1531 wp<EffectModule> mEffect;
1532 };
1533
1534 // get a list of effect modules to suspend when an effect of the type
1535 // passed is enabled.
Glenn Kasten97040262012-01-30 12:56:03 -08001536 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects);
1537
Eric Laurentf82fccd2011-07-27 19:49:51 -07001538 // get an effect module if it is currently enable
1539 sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type);
Eric Laurent6752ec82011-08-10 10:37:50 -07001540 // true if the effect whose descriptor is passed can be suspended
1541 // OEMs can modify the rules implemented in this method to exclude specific effect
1542 // types or implementations from the suspend/restore mechanism.
1543 bool isEffectEligibleForSuspend(const effect_descriptor_t& desc);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001544
Eric Laurent65b65452010-06-01 23:49:17 -07001545 wp<ThreadBase> mThread; // parent mixer thread
1546 Mutex mLock; // mutex protecting effect list
Glenn Kasten18db49a2012-03-12 16:29:55 -07001547 Vector< sp<EffectModule> > mEffects; // list of effect modules
Eric Laurent65b65452010-06-01 23:49:17 -07001548 int mSessionId; // audio session ID
1549 int16_t *mInBuffer; // chain input buffer
1550 int16_t *mOutBuffer; // chain output buffer
Eric Laurent90681d62011-05-09 12:09:06 -07001551 volatile int32_t mActiveTrackCnt; // number of active tracks connected
1552 volatile int32_t mTrackCnt; // number of tracks connected
Eric Laurentf9c361d2011-11-11 15:42:52 -08001553 int32_t mTailBufferCount; // current effect tail buffer count
1554 int32_t mMaxTailBuffers; // maximum effect tail buffers
Eric Laurent65b65452010-06-01 23:49:17 -07001555 bool mOwnInBuffer; // true if the chain owns its input buffer
Eric Laurent76c40f72010-07-15 12:50:15 -07001556 int mVolumeCtrlIdx; // index of insert effect having control over volume
1557 uint32_t mLeftVolume; // previous volume on left channel
1558 uint32_t mRightVolume; // previous volume on right channel
Eric Laurent0d7e0482010-07-19 06:24:46 -07001559 uint32_t mNewLeftVolume; // new volume on left channel
1560 uint32_t mNewRightVolume; // new volume on right channel
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001561 uint32_t mStrategy; // strategy for this effect chain
Glenn Kasten76b6c0c2012-02-14 08:52:15 -08001562 // mSuspendedEffects lists all effects currently suspended in the chain.
1563 // Use effect type UUID timelow field as key. There is no real risk of identical
Eric Laurentf82fccd2011-07-27 19:49:51 -07001564 // timeLow fields among effect type UUIDs.
Glenn Kasten76b6c0c2012-02-14 08:52:15 -08001565 // Updated by updateSuspendedSessions_l() only.
Eric Laurentf82fccd2011-07-27 19:49:51 -07001566 KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
Eric Laurent65b65452010-06-01 23:49:17 -07001567 };
1568
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001569 // AudioStreamOut and AudioStreamIn are immutable, so their fields are const.
1570 // For emphasis, we could also make all pointers to them be "const *",
1571 // but that would clutter the code unnecessarily.
1572
Dima Zavin31f188892011-04-18 16:57:27 -07001573 struct AudioStreamOut {
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001574 audio_hw_device_t* const hwDev;
1575 audio_stream_out_t* const stream;
Dima Zavin31f188892011-04-18 16:57:27 -07001576
1577 AudioStreamOut(audio_hw_device_t *dev, audio_stream_out_t *out) :
1578 hwDev(dev), stream(out) {}
1579 };
1580
1581 struct AudioStreamIn {
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001582 audio_hw_device_t* const hwDev;
1583 audio_stream_in_t* const stream;
Dima Zavin31f188892011-04-18 16:57:27 -07001584
1585 AudioStreamIn(audio_hw_device_t *dev, audio_stream_in_t *in) :
1586 hwDev(dev), stream(in) {}
1587 };
1588
Glenn Kastenb3db2132012-01-19 08:59:58 -08001589 // for mAudioSessionRefs only
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001590 struct AudioSessionRef {
Glenn Kasten9a42ac92012-03-06 11:22:01 -08001591 AudioSessionRef(int sessionid, pid_t pid) :
1592 mSessionid(sessionid), mPid(pid), mCnt(1) {}
1593 const int mSessionid;
1594 const pid_t mPid;
1595 int mCnt;
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001596 };
1597
John Grossmand8cf2962012-02-08 16:37:41 -08001598 enum master_volume_support {
1599 // MVS_NONE:
1600 // Audio HAL has no support for master volume, either setting or
1601 // getting. All master volume control must be implemented in SW by the
1602 // AudioFlinger mixing core.
1603 MVS_NONE,
1604
1605 // MVS_SETONLY:
1606 // Audio HAL has support for setting master volume, but not for getting
1607 // master volume (original HAL design did not include a getter).
1608 // AudioFlinger needs to keep track of the last set master volume in
1609 // addition to needing to set an initial, default, master volume at HAL
1610 // load time.
1611 MVS_SETONLY,
1612
1613 // MVS_FULL:
1614 // Audio HAL has support both for setting and getting master volume.
1615 // AudioFlinger should send all set and get master volume requests
1616 // directly to the HAL.
1617 MVS_FULL,
1618 };
1619
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001620 mutable Mutex mLock;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001621
Glenn Kasten803a86a2012-01-25 14:28:29 -08001622 DefaultKeyedVector< pid_t, wp<Client> > mClients; // see ~Client()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001623
Eric Laurenta553c252009-07-17 12:17:14 -07001624 mutable Mutex mHardwareLock;
Glenn Kastenad8d1752012-02-02 14:05:20 -08001625
1626 // These two fields are immutable after onFirstRef(), so no lock needed to access
1627 audio_hw_device_t* mPrimaryHardwareDev; // mAudioHwDevs[0] or NULL
Dima Zavin31f188892011-04-18 16:57:27 -07001628 Vector<audio_hw_device_t*> mAudioHwDevs;
Glenn Kasten00931bb2012-01-26 09:48:03 -08001629
Glenn Kasten23c9c742012-02-02 14:16:03 -08001630 // for dump, indicates which hardware operation is currently in progress (but not stream ops)
Glenn Kasten00931bb2012-01-26 09:48:03 -08001631 enum hardware_call_state {
Glenn Kasten23c9c742012-02-02 14:16:03 -08001632 AUDIO_HW_IDLE = 0, // no operation in progress
1633 AUDIO_HW_INIT, // init_check
1634 AUDIO_HW_OUTPUT_OPEN, // open_output_stream
1635 AUDIO_HW_OUTPUT_CLOSE, // unused
1636 AUDIO_HW_INPUT_OPEN, // unused
1637 AUDIO_HW_INPUT_CLOSE, // unused
1638 AUDIO_HW_STANDBY, // unused
1639 AUDIO_HW_SET_MASTER_VOLUME, // set_master_volume
1640 AUDIO_HW_GET_ROUTING, // unused
1641 AUDIO_HW_SET_ROUTING, // unused
1642 AUDIO_HW_GET_MODE, // unused
1643 AUDIO_HW_SET_MODE, // set_mode
1644 AUDIO_HW_GET_MIC_MUTE, // get_mic_mute
1645 AUDIO_HW_SET_MIC_MUTE, // set_mic_mute
1646 AUDIO_HW_SET_VOICE_VOLUME, // set_voice_volume
1647 AUDIO_HW_SET_PARAMETER, // set_parameters
1648 AUDIO_HW_GET_INPUT_BUFFER_SIZE, // get_input_buffer_size
1649 AUDIO_HW_GET_MASTER_VOLUME, // get_master_volume
1650 AUDIO_HW_GET_PARAMETER, // get_parameters
Glenn Kasten00931bb2012-01-26 09:48:03 -08001651 };
1652
Glenn Kastena934c2c2012-01-04 11:02:33 -08001653 mutable hardware_call_state mHardwareStatus; // for dump only
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001654
Eric Laurenta553c252009-07-17 12:17:14 -07001655
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001656 DefaultKeyedVector< audio_io_handle_t, sp<PlaybackThread> > mPlaybackThreads;
Glenn Kasten37733342012-02-08 12:36:25 -08001657 stream_type_t mStreamTypes[AUDIO_STREAM_CNT];
Glenn Kastene6f8a422011-12-13 11:47:54 -08001658
1659 // both are protected by mLock
Eric Laurenta553c252009-07-17 12:17:14 -07001660 float mMasterVolume;
John Grossmand8cf2962012-02-08 16:37:41 -08001661 float mMasterVolumeSW;
1662 master_volume_support mMasterVolumeSupportLvl;
Eric Laurenta553c252009-07-17 12:17:14 -07001663 bool mMasterMute;
1664
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001665 DefaultKeyedVector< audio_io_handle_t, sp<RecordThread> > mRecordThreads;
Eric Laurenta553c252009-07-17 12:17:14 -07001666
Eric Laurent4f0f17d2010-05-12 02:05:53 -07001667 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
Glenn Kastenb3db2132012-01-19 08:59:58 -08001668 volatile int32_t mNextUniqueId; // updated by android_atomic_inc
Glenn Kastenaccb1142012-01-04 11:00:47 -08001669 audio_mode_t mMode;
Eric Laurent2d95dfb2011-08-29 12:42:48 -07001670 bool mBtNrecIsOff;
Eric Laurent53334cd2010-06-23 17:38:20 -07001671
Glenn Kastenb3db2132012-01-19 08:59:58 -08001672 // protected by mLock
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001673 Vector<AudioSessionRef*> mAudioSessionRefs;
Glenn Kastene6f8a422011-12-13 11:47:54 -08001674
John Grossmand8cf2962012-02-08 16:37:41 -08001675 float masterVolume_l() const;
1676 float masterVolumeSW_l() const { return mMasterVolumeSW; }
Glenn Kastene6f8a422011-12-13 11:47:54 -08001677 bool masterMute_l() const { return mMasterMute; }
Glenn Kasten803a86a2012-01-25 14:28:29 -08001678
1679private:
1680 sp<Client> registerPid_l(pid_t pid); // always returns non-0
1681
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001682};
1683
Dima Zavin31f188892011-04-18 16:57:27 -07001684
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001685// ----------------------------------------------------------------------------
1686
1687}; // namespace android
1688
1689#endif // ANDROID_AUDIO_FLINGER_H