blob: 194b8268db282e203a3f09b1a7ab6d5020ef8d4b [file] [log] [blame]
Glenn Kasten99e53b82012-01-19 08:59:58 -08001/*
Mathias Agopian65ab4712010-07-14 17:59:35 -07002**
3** Copyright 2007, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#ifndef ANDROID_AUDIO_FLINGER_H
19#define ANDROID_AUDIO_FLINGER_H
20
21#include <stdint.h>
22#include <sys/types.h>
23#include <limits.h>
24
John Grossman4ff14ba2012-02-08 16:37:41 -080025#include <common_time/cc_helper.h>
26
Mathias Agopian65ab4712010-07-14 17:59:35 -070027#include <media/IAudioFlinger.h>
28#include <media/IAudioFlingerClient.h>
29#include <media/IAudioTrack.h>
30#include <media/IAudioRecord.h>
Glenn Kasten335787f2012-01-20 17:00:00 -080031#include <media/AudioSystem.h>
John Grossman4ff14ba2012-02-08 16:37:41 -080032#include <media/AudioTrack.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070033
34#include <utils/Atomic.h>
35#include <utils/Errors.h>
36#include <utils/threads.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070037#include <utils/SortedVector.h>
Dima Zavin799a70e2011-04-18 16:57:27 -070038#include <utils/TypeHelpers.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070039#include <utils/Vector.h>
40
Mathias Agopian5462fc92010-07-14 18:41:18 -070041#include <binder/BinderService.h>
42#include <binder/MemoryDealer.h>
43
Dima Zavin64760242011-05-11 14:15:23 -070044#include <system/audio.h>
Dima Zavin7394a4f2011-06-13 18:16:26 -070045#include <hardware/audio.h>
Mathias Agopian65ab4712010-07-14 17:59:35 -070046
47#include "AudioBufferProvider.h"
48
Eric Laurentfeb0db62011-07-22 09:04:31 -070049#include <powermanager/IPowerManager.h>
50
Mathias Agopian65ab4712010-07-14 17:59:35 -070051namespace android {
52
53class audio_track_cblk_t;
54class effect_param_cblk_t;
55class AudioMixer;
56class AudioBuffer;
57class AudioResampler;
58
Mathias Agopian65ab4712010-07-14 17:59:35 -070059// ----------------------------------------------------------------------------
60
Glenn Kasten53d76db2012-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 Grossman4ff14ba2012-02-08 16:37:41 -080070static const nsecs_t kDefaultStandbyTimeInNsecs = seconds(3);
Mathias Agopian65ab4712010-07-14 17:59:35 -070071
Mathias Agopian5462fc92010-07-14 18:41:18 -070072class AudioFlinger :
73 public BinderService<AudioFlinger>,
74 public BnAudioFlinger
Mathias Agopian65ab4712010-07-14 17:59:35 -070075{
Mathias Agopian5462fc92010-07-14 18:41:18 -070076 friend class BinderService<AudioFlinger>;
Mathias Agopian65ab4712010-07-14 17:59:35 -070077public:
Glenn Kasten54c3b662012-01-06 07:46:30 -080078 static const char* getServiceName() { return "media.audio_flinger"; }
Mathias Agopian65ab4712010-07-14 17:59:35 -070079
80 virtual status_t dump(int fd, const Vector<String16>& args);
81
Glenn Kasten2f732eb2012-01-26 09:48:03 -080082 // IAudioFlinger interface, in binder opcode order
Mathias Agopian65ab4712010-07-14 17:59:35 -070083 virtual sp<IAudioTrack> createTrack(
84 pid_t pid,
Glenn Kastenfff6d712012-01-12 16:38:12 -080085 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -070086 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -080087 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -070088 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -070089 int frameCount,
90 uint32_t flags,
91 const sp<IMemory>& sharedBuffer,
Glenn Kasten72ef00d2012-01-17 11:09:42 -080092 audio_io_handle_t output,
John Grossman4ff14ba2012-02-08 16:37:41 -080093 bool isTimed,
Mathias Agopian65ab4712010-07-14 17:59:35 -070094 int *sessionId,
95 status_t *status);
96
Glenn Kasten2f732eb2012-01-26 09:48:03 -080097 virtual sp<IAudioRecord> openRecord(
98 pid_t pid,
99 audio_io_handle_t input,
100 uint32_t sampleRate,
101 audio_format_t format,
102 uint32_t channelMask,
103 int frameCount,
104 uint32_t flags,
105 int *sessionId,
106 status_t *status);
107
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800108 virtual uint32_t sampleRate(audio_io_handle_t output) const;
109 virtual int channelCount(audio_io_handle_t output) const;
110 virtual audio_format_t format(audio_io_handle_t output) const;
111 virtual size_t frameCount(audio_io_handle_t output) const;
112 virtual uint32_t latency(audio_io_handle_t output) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700113
114 virtual status_t setMasterVolume(float value);
115 virtual status_t setMasterMute(bool muted);
116
117 virtual float masterVolume() const;
John Grossman4ff14ba2012-02-08 16:37:41 -0800118 virtual float masterVolumeSW() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700119 virtual bool masterMute() const;
120
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800121 virtual status_t setStreamVolume(audio_stream_type_t stream, float value,
122 audio_io_handle_t output);
Glenn Kastenfff6d712012-01-12 16:38:12 -0800123 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700124
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800125 virtual float streamVolume(audio_stream_type_t stream,
126 audio_io_handle_t output) const;
Glenn Kastenfff6d712012-01-12 16:38:12 -0800127 virtual bool streamMute(audio_stream_type_t stream) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700128
Glenn Kastenf78aee72012-01-04 11:00:47 -0800129 virtual status_t setMode(audio_mode_t mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700130
131 virtual status_t setMicMute(bool state);
132 virtual bool getMicMute() const;
133
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800134 virtual status_t setParameters(audio_io_handle_t ioHandle, const String8& keyValuePairs);
135 virtual String8 getParameters(audio_io_handle_t ioHandle, const String8& keys) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700136
137 virtual void registerClient(const sp<IAudioFlingerClient>& client);
138
Glenn Kastenf587ba52012-01-26 16:25:10 -0800139 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700140
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800141 virtual audio_io_handle_t openOutput(uint32_t *pDevices,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700142 uint32_t *pSamplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800143 audio_format_t *pFormat,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700144 uint32_t *pChannels,
145 uint32_t *pLatencyMs,
Glenn Kasten18868c52012-03-07 09:15:37 -0800146 audio_policy_output_flags_t flags);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700147
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800148 virtual audio_io_handle_t openDuplicateOutput(audio_io_handle_t output1,
149 audio_io_handle_t output2);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700150
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800151 virtual status_t closeOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700152
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800153 virtual status_t suspendOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700154
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800155 virtual status_t restoreOutput(audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700156
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800157 virtual audio_io_handle_t openInput(uint32_t *pDevices,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700158 uint32_t *pSamplingRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800159 audio_format_t *pFormat,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700160 uint32_t *pChannels,
Glenn Kastende9719b2012-01-27 12:32:34 -0800161 audio_in_acoustics_t acoustics);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700162
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800163 virtual status_t closeInput(audio_io_handle_t input);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700164
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800165 virtual status_t setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700166
167 virtual status_t setVoiceVolume(float volume);
168
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800169 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
170 audio_io_handle_t output) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700171
Glenn Kasten2f732eb2012-01-26 09:48:03 -0800172 virtual unsigned int getInputFramesLost(audio_io_handle_t ioHandle) const;
173
Mathias Agopian65ab4712010-07-14 17:59:35 -0700174 virtual int newAudioSessionId();
175
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700176 virtual void acquireAudioSessionId(int audioSession);
177
178 virtual void releaseAudioSessionId(int audioSession);
179
Glenn Kastenf587ba52012-01-26 16:25:10 -0800180 virtual status_t queryNumberEffects(uint32_t *numEffects) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700181
Glenn Kastenf587ba52012-01-26 16:25:10 -0800182 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700183
Glenn Kasten5e92a782012-01-30 07:40:52 -0800184 virtual status_t getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kastenf587ba52012-01-26 16:25:10 -0800185 effect_descriptor_t *descriptor) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700186
187 virtual sp<IEffect> createEffect(pid_t pid,
188 effect_descriptor_t *pDesc,
189 const sp<IEffectClient>& effectClient,
190 int32_t priority,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800191 audio_io_handle_t io,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700192 int sessionId,
193 status_t *status,
194 int *id,
195 int *enabled);
196
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800197 virtual status_t moveEffects(int sessionId, audio_io_handle_t srcOutput,
198 audio_io_handle_t dstOutput);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700199
Mathias Agopian65ab4712010-07-14 17:59:35 -0700200 virtual status_t onTransact(
201 uint32_t code,
202 const Parcel& data,
203 Parcel* reply,
204 uint32_t flags);
205
Glenn Kasten2f732eb2012-01-26 09:48:03 -0800206 // end of IAudioFlinger interface
207
208private:
Glenn Kastenf78aee72012-01-04 11:00:47 -0800209 audio_mode_t getMode() const { return mMode; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700210
Glenn Kastenc59c0042012-02-02 14:06:11 -0800211 bool btNrecIsOff() const { return mBtNrecIsOff; }
Eric Laurent59bd0da2011-08-01 09:52:20 -0700212
Mathias Agopian65ab4712010-07-14 17:59:35 -0700213 AudioFlinger();
214 virtual ~AudioFlinger();
215
Glenn Kasten2b213bc2012-02-02 14:05:20 -0800216 // call in any IAudioFlinger method that accesses mPrimaryHardwareDev
217 status_t initCheck() const { return mPrimaryHardwareDev == NULL ? NO_INIT : NO_ERROR; }
218
Glenn Kasten000f0e32012-03-01 17:10:56 -0800219 // RefBase
Dima Zavin5a61d2f2011-04-19 19:04:32 -0700220 virtual void onFirstRef();
Glenn Kasten000f0e32012-03-01 17:10:56 -0800221
Dima Zavin799a70e2011-04-18 16:57:27 -0700222 audio_hw_device_t* findSuitableHwDev_l(uint32_t devices);
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700223 void purgeStaleEffects_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700224
Glenn Kasten66fcab92012-02-24 14:59:21 -0800225 // standby delay for MIXER and DUPLICATING playback threads is read from property
226 // ro.audio.flinger_standbytime_ms or defaults to kDefaultStandbyTimeInNsecs
John Grossman4ff14ba2012-02-08 16:37:41 -0800227 static nsecs_t mStandbyTimeInNsecs;
228
Mathias Agopian65ab4712010-07-14 17:59:35 -0700229 // Internal dump utilites.
230 status_t dumpPermissionDenial(int fd, const Vector<String16>& args);
231 status_t dumpClients(int fd, const Vector<String16>& args);
232 status_t dumpInternals(int fd, const Vector<String16>& args);
233
234 // --- Client ---
235 class Client : public RefBase {
236 public:
237 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid);
238 virtual ~Client();
Glenn Kasten435dbe62012-01-30 10:15:48 -0800239 sp<MemoryDealer> heap() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700240 pid_t pid() const { return mPid; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800241 sp<AudioFlinger> audioFlinger() const { return mAudioFlinger; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700242
John Grossman4ff14ba2012-02-08 16:37:41 -0800243 bool reserveTimedTrack();
244 void releaseTimedTrack();
245
Mathias Agopian65ab4712010-07-14 17:59:35 -0700246 private:
247 Client(const Client&);
248 Client& operator = (const Client&);
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800249 const sp<AudioFlinger> mAudioFlinger;
250 const sp<MemoryDealer> mMemoryDealer;
251 const pid_t mPid;
John Grossman4ff14ba2012-02-08 16:37:41 -0800252
253 Mutex mTimedTrackLock;
254 int mTimedTrackCount;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700255 };
256
257 // --- Notification Client ---
258 class NotificationClient : public IBinder::DeathRecipient {
259 public:
260 NotificationClient(const sp<AudioFlinger>& audioFlinger,
261 const sp<IAudioFlingerClient>& client,
262 pid_t pid);
263 virtual ~NotificationClient();
264
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800265 sp<IAudioFlingerClient> audioFlingerClient() const { return mAudioFlingerClient; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700266
267 // IBinder::DeathRecipient
268 virtual void binderDied(const wp<IBinder>& who);
269
270 private:
271 NotificationClient(const NotificationClient&);
272 NotificationClient& operator = (const NotificationClient&);
273
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800274 const sp<AudioFlinger> mAudioFlinger;
275 const pid_t mPid;
276 const sp<IAudioFlingerClient> mAudioFlingerClient;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700277 };
278
279 class TrackHandle;
280 class RecordHandle;
281 class RecordThread;
282 class PlaybackThread;
283 class MixerThread;
284 class DirectOutputThread;
285 class DuplicatingThread;
286 class Track;
287 class RecordTrack;
288 class EffectModule;
289 class EffectHandle;
290 class EffectChain;
Dima Zavin799a70e2011-04-18 16:57:27 -0700291 struct AudioStreamOut;
292 struct AudioStreamIn;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700293
294 class ThreadBase : public Thread {
295 public:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700296
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800297 enum type_t {
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700298 MIXER, // Thread class is MixerThread
299 DIRECT, // Thread class is DirectOutputThread
300 DUPLICATING, // Thread class is DuplicatingThread
301 RECORD // Thread class is RecordThread
302 };
303
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800304 ThreadBase (const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id, uint32_t device, type_t type);
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800305 virtual ~ThreadBase();
306
Mathias Agopian65ab4712010-07-14 17:59:35 -0700307 status_t dumpBase(int fd, const Vector<String16>& args);
Eric Laurent1d2bff02011-07-24 17:49:51 -0700308 status_t dumpEffectChains(int fd, const Vector<String16>& args);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700309
Eric Laurentfeb0db62011-07-22 09:04:31 -0700310 void clearPowerManager();
311
Mathias Agopian65ab4712010-07-14 17:59:35 -0700312 // base for record and playback
313 class TrackBase : public AudioBufferProvider, public RefBase {
314
315 public:
316 enum track_state {
317 IDLE,
318 TERMINATED,
Glenn Kasten99e53b82012-01-19 08:59:58 -0800319 // These are order-sensitive; do not change order without reviewing the impact.
320 // In particular there are assumptions about > STOPPED.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700321 STOPPED,
322 RESUMING,
323 ACTIVE,
324 PAUSING,
325 PAUSED
326 };
327
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800328 TrackBase(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700329 const sp<Client>& client,
330 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800331 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700332 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700333 int frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700334 const sp<IMemory>& sharedBuffer,
335 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800336 virtual ~TrackBase();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700337
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800338 virtual status_t start(pid_t tid) = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700339 virtual void stop() = 0;
Glenn Kastenc59c0042012-02-02 14:06:11 -0800340 sp<IMemory> getCblk() const { return mCblkMemory; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700341 audio_track_cblk_t* cblk() const { return mCblk; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800342 int sessionId() const { return mSessionId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700343
344 protected:
345 friend class ThreadBase;
346 friend class RecordHandle;
347 friend class PlaybackThread;
348 friend class RecordThread;
349 friend class MixerThread;
350 friend class DirectOutputThread;
351
352 TrackBase(const TrackBase&);
353 TrackBase& operator = (const TrackBase&);
354
Glenn Kasten01c4ebf2012-02-22 10:47:35 -0800355 // AudioBufferProvider interface
356 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts) = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700357 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
358
Glenn Kasten58f30212012-01-12 12:27:51 -0800359 audio_format_t format() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700360 return mFormat;
361 }
362
Glenn Kastenc59c0042012-02-02 14:06:11 -0800363 int channelCount() const { return mChannelCount; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700364
Glenn Kastenc59c0042012-02-02 14:06:11 -0800365 uint32_t channelMask() const { return mChannelMask; }
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700366
Glenn Kastenc59c0042012-02-02 14:06:11 -0800367 int sampleRate() const; // FIXME inline after cblk sr moved
Mathias Agopian65ab4712010-07-14 17:59:35 -0700368
369 void* getBuffer(uint32_t offset, uint32_t frames) const;
370
371 bool isStopped() const {
372 return mState == STOPPED;
373 }
374
375 bool isTerminated() const {
376 return mState == TERMINATED;
377 }
378
379 bool step();
380 void reset();
381
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800382 const wp<ThreadBase> mThread;
383 /*const*/ sp<Client> mClient; // see explanation at ~TrackBase() why not const
Mathias Agopian65ab4712010-07-14 17:59:35 -0700384 sp<IMemory> mCblkMemory;
385 audio_track_cblk_t* mCblk;
386 void* mBuffer;
387 void* mBufferEnd;
388 uint32_t mFrameCount;
389 // we don't really need a lock for these
Glenn Kastenb853e982012-01-26 13:39:18 -0800390 track_state mState;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800391 const audio_format_t mFormat;
Glenn Kasten5cf034d2012-02-21 10:35:56 -0800392 bool mStepServerFailed;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800393 const int mSessionId;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700394 uint8_t mChannelCount;
395 uint32_t mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700396 };
397
398 class ConfigEvent {
399 public:
400 ConfigEvent() : mEvent(0), mParam(0) {}
401
402 int mEvent;
403 int mParam;
404 };
405
Eric Laurentfeb0db62011-07-22 09:04:31 -0700406 class PMDeathRecipient : public IBinder::DeathRecipient {
407 public:
408 PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
409 virtual ~PMDeathRecipient() {}
410
411 // IBinder::DeathRecipient
412 virtual void binderDied(const wp<IBinder>& who);
413
414 private:
415 PMDeathRecipient(const PMDeathRecipient&);
416 PMDeathRecipient& operator = (const PMDeathRecipient&);
417
418 wp<ThreadBase> mThread;
419 };
420
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700421 virtual status_t initCheck() const = 0;
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800422 type_t type() const { return mType; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800423 uint32_t sampleRate() const { return mSampleRate; }
424 int channelCount() const { return mChannelCount; }
425 audio_format_t format() const { return mFormat; }
426 size_t frameCount() const { return mFrameCount; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700427 void wakeUp() { mWaitWorkCV.broadcast(); }
Glenn Kastenb28686f2012-01-06 08:39:38 -0800428 // Should be "virtual status_t requestExitAndWait()" and override same
429 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700430 void exit();
431 virtual bool checkForNewParameters_l() = 0;
432 virtual status_t setParameters(const String8& keyValuePairs);
433 virtual String8 getParameters(const String8& keys) = 0;
434 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
435 void sendConfigEvent(int event, int param = 0);
436 void sendConfigEvent_l(int event, int param = 0);
437 void processConfigEvents();
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800438 audio_io_handle_t id() const { return mId;}
Glenn Kasten02fe1bf2012-02-24 15:42:17 -0800439 bool standby() const { return mStandby; }
440 uint32_t device() const { return mDevice; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700441 virtual audio_stream_t* stream() = 0;
442
443 sp<EffectHandle> createEffect_l(
444 const sp<AudioFlinger::Client>& client,
445 const sp<IEffectClient>& effectClient,
446 int32_t priority,
447 int sessionId,
448 effect_descriptor_t *desc,
449 int *enabled,
450 status_t *status);
451 void disconnectEffect(const sp< EffectModule>& effect,
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700452 const wp<EffectHandle>& handle,
Glenn Kasten58123c32012-02-03 10:32:24 -0800453 bool unpinIfLast);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700454
455 // return values for hasAudioSession (bit field)
456 enum effect_state {
457 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
458 // effect
459 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
460 // track
461 };
462
463 // get effect chain corresponding to session Id.
464 sp<EffectChain> getEffectChain(int sessionId);
465 // same as getEffectChain() but must be called with ThreadBase mutex locked
466 sp<EffectChain> getEffectChain_l(int sessionId);
467 // add an effect chain to the chain list (mEffectChains)
468 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
469 // remove an effect chain from the chain list (mEffectChains)
470 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
Glenn Kastend805b712012-02-24 15:42:48 -0800471 // lock all effect chains Mutexes. Must be called before releasing the
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700472 // ThreadBase mutex before processing the mixer and effects. This guarantees the
473 // integrity of the chains during the process.
Glenn Kastend805b712012-02-24 15:42:48 -0800474 // Also sets the parameter 'effectChains' to current value of mEffectChains.
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700475 void lockEffectChains_l(Vector<sp <EffectChain> >& effectChains);
476 // unlock effect chains after process
Glenn Kasten02fe1bf2012-02-24 15:42:17 -0800477 void unlockEffectChains(const Vector<sp<EffectChain> >& effectChains);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700478 // set audio mode to all effect chains
Glenn Kastenf78aee72012-01-04 11:00:47 -0800479 void setMode(audio_mode_t mode);
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700480 // get effect module with corresponding ID on specified audio session
481 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
482 // add and effect module. Also creates the effect chain is none exists for
483 // the effects audio session
484 status_t addEffect_l(const sp< EffectModule>& effect);
485 // remove and effect module. Also removes the effect chain is this was the last
486 // effect
487 void removeEffect_l(const sp< EffectModule>& effect);
488 // detach all tracks connected to an auxiliary effect
489 virtual void detachAuxEffect_l(int effectId) {}
490 // returns either EFFECT_SESSION if effects on this audio session exist in one
491 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
492 virtual uint32_t hasAudioSession(int sessionId) = 0;
493 // the value returned by default implementation is not important as the
494 // strategy is only meaningful for PlaybackThread which implements this method
495 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700496
Eric Laurent59255e42011-07-27 19:49:51 -0700497 // suspend or restore effect according to the type of effect passed. a NULL
498 // type pointer means suspend all effects in the session
499 void setEffectSuspended(const effect_uuid_t *type,
500 bool suspend,
501 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
502 // check if some effects must be suspended/restored when an effect is enabled
503 // or disabled
Eric Laurenta85a74a2011-10-19 11:44:54 -0700504 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurent59255e42011-07-27 19:49:51 -0700505 bool enabled,
506 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurenta85a74a2011-10-19 11:44:54 -0700507 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
508 bool enabled,
509 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700510 mutable Mutex mLock;
511
512 protected:
513
Eric Laurent59255e42011-07-27 19:49:51 -0700514 // entry describing an effect being suspended in mSuspendedSessions keyed vector
515 class SuspendedSessionDesc : public RefBase {
516 public:
517 SuspendedSessionDesc() : mRefCount(0) {}
518
519 int mRefCount; // number of active suspend requests
520 effect_uuid_t mType; // effect type UUID
521 };
522
Eric Laurentfeb0db62011-07-22 09:04:31 -0700523 void acquireWakeLock();
524 void acquireWakeLock_l();
525 void releaseWakeLock();
526 void releaseWakeLock_l();
Eric Laurent59255e42011-07-27 19:49:51 -0700527 void setEffectSuspended_l(const effect_uuid_t *type,
528 bool suspend,
529 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
530 // updated mSuspendedSessions when an effect suspended or restored
531 void updateSuspendedSessions_l(const effect_uuid_t *type,
532 bool suspend,
533 int sessionId);
534 // check if some effects must be suspended when an effect chain is added
535 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
Eric Laurentfeb0db62011-07-22 09:04:31 -0700536
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700537 friend class AudioFlinger;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700538 friend class Track;
539 friend class TrackBase;
540 friend class PlaybackThread;
541 friend class MixerThread;
542 friend class DirectOutputThread;
543 friend class DuplicatingThread;
544 friend class RecordThread;
545 friend class RecordTrack;
546
Glenn Kasten23bb8be2012-01-26 10:38:26 -0800547 const type_t mType;
Glenn Kastencbc52bf2012-03-01 09:21:37 -0800548
549 // Used by parameters, config events, addTrack_l, exit
Mathias Agopian65ab4712010-07-14 17:59:35 -0700550 Condition mWaitWorkCV;
Glenn Kastencbc52bf2012-03-01 09:21:37 -0800551
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800552 const sp<AudioFlinger> mAudioFlinger;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700553 uint32_t mSampleRate;
554 size_t mFrameCount;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700555 uint32_t mChannelMask;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700556 uint16_t mChannelCount;
Glenn Kastenb9980652012-01-11 09:48:27 -0800557 size_t mFrameSize;
Glenn Kasten58f30212012-01-12 12:27:51 -0800558 audio_format_t mFormat;
Glenn Kastencbc52bf2012-03-01 09:21:37 -0800559
560 // Parameter sequence by client: binder thread calling setParameters():
561 // 1. Lock mLock
562 // 2. Append to mNewParameters
563 // 3. mWaitWorkCV.signal
564 // 4. mParamCond.waitRelative with timeout
565 // 5. read mParamStatus
566 // 6. mWaitWorkCV.signal
567 // 7. Unlock
568 //
569 // Parameter sequence by server: threadLoop calling checkForNewParameters_l():
570 // 1. Lock mLock
571 // 2. If there is an entry in mNewParameters proceed ...
572 // 2. Read first entry in mNewParameters
573 // 3. Process
574 // 4. Remove first entry from mNewParameters
575 // 5. Set mParamStatus
576 // 6. mParamCond.signal
577 // 7. mWaitWorkCV.wait with timeout (this is to avoid overwriting mParamStatus)
578 // 8. Unlock
Mathias Agopian65ab4712010-07-14 17:59:35 -0700579 Condition mParamCond;
580 Vector<String8> mNewParameters;
581 status_t mParamStatus;
Glenn Kastencbc52bf2012-03-01 09:21:37 -0800582
Glenn Kastenf3990f22011-12-13 11:50:00 -0800583 Vector<ConfigEvent> mConfigEvents;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700584 bool mStandby;
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800585 const audio_io_handle_t mId;
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700586 Vector< sp<EffectChain> > mEffectChains;
587 uint32_t mDevice; // output device for PlaybackThread
588 // input + output devices for RecordThread
Glenn Kasten480b4682012-02-28 12:30:08 -0800589 static const int kNameLength = 16; // prctl(PR_SET_NAME) limit
Eric Laurentfeb0db62011-07-22 09:04:31 -0700590 char mName[kNameLength];
591 sp<IPowerManager> mPowerManager;
592 sp<IBinder> mWakeLockToken;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800593 const sp<PMDeathRecipient> mDeathRecipient;
Eric Laurent59255e42011-07-27 19:49:51 -0700594 // list of suspended effects per session and per type. The first vector is
595 // keyed by session ID, the second by type UUID timeLow field
596 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > > mSuspendedSessions;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700597 };
598
Glenn Kastenb7bf7962012-02-08 12:36:25 -0800599 struct stream_type_t {
600 stream_type_t()
601 : volume(1.0f),
602 mute(false),
603 valid(true)
604 {
605 }
606 float volume;
607 bool mute;
608 bool valid;
609 };
610
Mathias Agopian65ab4712010-07-14 17:59:35 -0700611 // --- PlaybackThread ---
612 class PlaybackThread : public ThreadBase {
613 public:
614
Mathias Agopian65ab4712010-07-14 17:59:35 -0700615 enum mixer_state {
Glenn Kastend805b712012-02-24 15:42:48 -0800616 MIXER_IDLE, // no active tracks
617 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
618 MIXER_TRACKS_READY // at least one active track, and at least one track has data
619 // standby mode does not have an enum value
620 // suspend by audio policy manager is orthogonal to mixer state
Mathias Agopian65ab4712010-07-14 17:59:35 -0700621 };
622
623 // playback track
624 class Track : public TrackBase {
625 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800626 Track( PlaybackThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700627 const sp<Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800628 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700629 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800630 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700631 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700632 int frameCount,
633 const sp<IMemory>& sharedBuffer,
634 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800635 virtual ~Track();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700636
637 void dump(char* buffer, size_t size);
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800638 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700639 virtual void stop();
640 void pause();
641
642 void flush();
643 void destroy();
644 void mute(bool);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700645 int name() const {
646 return mName;
647 }
648
Glenn Kasten02bbd202012-02-08 12:35:35 -0800649 audio_stream_type_t streamType() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -0700650 return mStreamType;
651 }
652 status_t attachAuxEffect(int EffectId);
653 void setAuxBuffer(int EffectId, int32_t *buffer);
Glenn Kastenc59c0042012-02-02 14:06:11 -0800654 int32_t *auxBuffer() const { return mAuxBuffer; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700655 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800656 int16_t *mainBuffer() const { return mMainBuffer; }
657 int auxEffectId() const { return mAuxEffectId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700658
Mathias Agopian65ab4712010-07-14 17:59:35 -0700659 protected:
660 friend class ThreadBase;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700661 friend class TrackHandle;
662 friend class PlaybackThread;
663 friend class MixerThread;
664 friend class DirectOutputThread;
665
666 Track(const Track&);
667 Track& operator = (const Track&);
668
Glenn Kasten01c4ebf2012-02-22 10:47:35 -0800669 // AudioBufferProvider interface
670 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
671 // releaseBuffer() not overridden
672
John Grossman4ff14ba2012-02-08 16:37:41 -0800673 virtual uint32_t framesReady() const;
674
Glenn Kastenc59c0042012-02-02 14:06:11 -0800675 bool isMuted() const { return mMute; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700676 bool isPausing() const {
677 return mState == PAUSING;
678 }
679 bool isPaused() const {
680 return mState == PAUSED;
681 }
682 bool isReady() const;
683 void setPaused() { mState = PAUSED; }
684 void reset();
685
686 bool isOutputTrack() const {
Dima Zavinfce7a472011-04-19 22:30:36 -0700687 return (mStreamType == AUDIO_STREAM_CNT);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700688 }
689
John Grossman4ff14ba2012-02-08 16:37:41 -0800690 virtual bool isTimedTrack() const { return false; }
691
Mathias Agopian65ab4712010-07-14 17:59:35 -0700692 // we don't really need a lock for these
Mathias Agopian65ab4712010-07-14 17:59:35 -0700693 volatile bool mMute;
694 // FILLED state is used for suppressing volume ramp at begin of playing
695 enum {FS_FILLING, FS_FILLED, FS_ACTIVE};
696 mutable uint8_t mFillingUpStatus;
697 int8_t mRetryCount;
698 sp<IMemory> mSharedBuffer;
699 bool mResetDone;
Glenn Kastenfff6d712012-01-12 16:38:12 -0800700 audio_stream_type_t mStreamType;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700701 int mName;
702 int16_t *mMainBuffer;
703 int32_t *mAuxBuffer;
704 int mAuxEffectId;
Eric Laurent8f45bd72010-08-31 13:50:07 -0700705 bool mHasVolumeController;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700706 }; // end of Track
707
John Grossman4ff14ba2012-02-08 16:37:41 -0800708 class TimedTrack : public Track {
709 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800710 static sp<TimedTrack> create(PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -0800711 const sp<Client>& client,
712 audio_stream_type_t streamType,
713 uint32_t sampleRate,
714 audio_format_t format,
715 uint32_t channelMask,
716 int frameCount,
717 const sp<IMemory>& sharedBuffer,
718 int sessionId);
719 ~TimedTrack();
720
721 class TimedBuffer {
722 public:
723 TimedBuffer();
724 TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
725 const sp<IMemory>& buffer() const { return mBuffer; }
726 int64_t pts() const { return mPTS; }
727 int position() const { return mPosition; }
728 void setPosition(int pos) { mPosition = pos; }
729 private:
730 sp<IMemory> mBuffer;
731 int64_t mPTS;
732 int mPosition;
733 };
734
735 virtual bool isTimedTrack() const { return true; }
736
737 virtual uint32_t framesReady() const;
738
Glenn Kasten01c4ebf2012-02-22 10:47:35 -0800739 // AudioBufferProvider interface
740 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
John Grossman4ff14ba2012-02-08 16:37:41 -0800741 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kasten01c4ebf2012-02-22 10:47:35 -0800742
John Grossman4ff14ba2012-02-08 16:37:41 -0800743 void timedYieldSamples(AudioBufferProvider::Buffer* buffer);
744 void timedYieldSilence(uint32_t numFrames,
745 AudioBufferProvider::Buffer* buffer);
746
747 status_t allocateTimedBuffer(size_t size,
748 sp<IMemory>* buffer);
749 status_t queueTimedBuffer(const sp<IMemory>& buffer,
750 int64_t pts);
751 status_t setMediaTimeTransform(const LinearTransform& xform,
752 TimedAudioTrack::TargetTimeline target);
753 void trimTimedBufferQueue_l();
754
755 private:
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800756 TimedTrack(PlaybackThread *thread,
John Grossman4ff14ba2012-02-08 16:37:41 -0800757 const sp<Client>& client,
758 audio_stream_type_t streamType,
759 uint32_t sampleRate,
760 audio_format_t format,
761 uint32_t channelMask,
762 int frameCount,
763 const sp<IMemory>& sharedBuffer,
764 int sessionId);
765
766 uint64_t mLocalTimeFreq;
767 LinearTransform mLocalTimeToSampleTransform;
768 sp<MemoryDealer> mTimedMemoryDealer;
769 Vector<TimedBuffer> mTimedBufferQueue;
770 uint8_t* mTimedSilenceBuffer;
771 uint32_t mTimedSilenceBufferSize;
772 mutable Mutex mTimedBufferQueueLock;
773 bool mTimedAudioOutputOnTime;
774 CCHelper mCCHelper;
775
776 Mutex mMediaTimeTransformLock;
777 LinearTransform mMediaTimeTransform;
778 bool mMediaTimeTransformValid;
779 TimedAudioTrack::TargetTimeline mMediaTimeTransformTarget;
780 };
781
Mathias Agopian65ab4712010-07-14 17:59:35 -0700782
783 // playback track
784 class OutputTrack : public Track {
785 public:
786
787 class Buffer: public AudioBufferProvider::Buffer {
788 public:
789 int16_t *mBuffer;
790 };
791
Glenn Kasten9eaa5572012-01-20 13:32:16 -0800792 OutputTrack(PlaybackThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700793 DuplicatingThread *sourceThread,
794 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800795 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700796 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700797 int frameCount);
Glenn Kastenc19e2242012-01-30 14:54:39 -0800798 virtual ~OutputTrack();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700799
Glenn Kasten6dbc1352012-02-02 10:56:47 -0800800 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700801 virtual void stop();
802 bool write(int16_t* data, uint32_t frames);
Glenn Kastena1117922012-01-26 10:53:32 -0800803 bool bufferQueueEmpty() const { return mBufferQueue.size() == 0; }
Glenn Kastenc59c0042012-02-02 14:06:11 -0800804 bool isActive() const { return mActive; }
805 const wp<ThreadBase>& thread() const { return mThread; }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700806
807 private:
808
Glenn Kasten335787f2012-01-20 17:00:00 -0800809 enum {
810 NO_MORE_BUFFERS = 0x80000001, // same in AudioTrack.h, ok to be different value
811 };
812
Mathias Agopian65ab4712010-07-14 17:59:35 -0700813 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
814 void clearBufferQueue();
815
816 // Maximum number of pending buffers allocated by OutputTrack::write()
817 static const uint8_t kMaxOverFlowBuffers = 10;
818
819 Vector < Buffer* > mBufferQueue;
820 AudioBufferProvider::Buffer mOutBuffer;
821 bool mActive;
Glenn Kasten84afa3b2012-01-25 15:28:08 -0800822 DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
Mathias Agopian65ab4712010-07-14 17:59:35 -0700823 }; // end of OutputTrack
824
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800825 PlaybackThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
826 audio_io_handle_t id, uint32_t device, type_t type);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700827 virtual ~PlaybackThread();
828
829 virtual status_t dump(int fd, const Vector<String16>& args);
830
831 // Thread virtuals
832 virtual status_t readyToRun();
Glenn Kasten000f0e32012-03-01 17:10:56 -0800833 virtual bool threadLoop();
834
835 // RefBase
Mathias Agopian65ab4712010-07-14 17:59:35 -0700836 virtual void onFirstRef();
837
Glenn Kasten000f0e32012-03-01 17:10:56 -0800838protected:
839 // Code snippets that were lifted up out of threadLoop()
840 virtual void threadLoop_mix() = 0;
841 virtual void threadLoop_sleepTime() = 0;
842 virtual void threadLoop_write();
843 virtual void threadLoop_standby();
844
Glenn Kasten000f0e32012-03-01 17:10:56 -0800845 // Non-trivial for DIRECT only
846 virtual void applyVolume() { }
847
Glenn Kasten1465f0c2012-03-06 11:23:32 -0800848 // prepareTracks_l reads and writes mActiveTracks, and also returns the
849 // pending set of tracks to remove via Vector 'tracksToRemove'. The caller is
850 // responsible for clearing or destroying this Vector later on, when it
851 // is safe to do so. That will drop the final ref count and destroy the tracks.
852 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0;
Glenn Kasten000f0e32012-03-01 17:10:56 -0800853
854public:
855
Glenn Kastene0feee32011-12-13 11:53:26 -0800856 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700857
Mathias Agopian65ab4712010-07-14 17:59:35 -0700858 virtual uint32_t latency() const;
859
Glenn Kasten6637baa2012-01-09 09:40:36 -0800860 void setMasterVolume(float value);
861 void setMasterMute(bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700862
Glenn Kasten6637baa2012-01-09 09:40:36 -0800863 void setStreamVolume(audio_stream_type_t stream, float value);
864 void setStreamMute(audio_stream_type_t stream, bool muted);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700865
Glenn Kasten6637baa2012-01-09 09:40:36 -0800866 float streamVolume(audio_stream_type_t stream) const;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700867
Mathias Agopian65ab4712010-07-14 17:59:35 -0700868 sp<Track> createTrack_l(
869 const sp<AudioFlinger::Client>& client,
Glenn Kastenfff6d712012-01-12 16:38:12 -0800870 audio_stream_type_t streamType,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700871 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -0800872 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700873 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700874 int frameCount,
875 const sp<IMemory>& sharedBuffer,
876 int sessionId,
John Grossman4ff14ba2012-02-08 16:37:41 -0800877 bool isTimed,
Mathias Agopian65ab4712010-07-14 17:59:35 -0700878 status_t *status);
879
Glenn Kastenaed850d2012-01-26 09:46:34 -0800880 AudioStreamOut* getOutput() const;
Eric Laurentb8ba0a92011-08-07 16:32:26 -0700881 AudioStreamOut* clearOutput();
882 virtual audio_stream_t* stream();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700883
Mathias Agopian65ab4712010-07-14 17:59:35 -0700884 void suspend() { mSuspended++; }
Glenn Kastenc455fe92012-02-29 07:07:30 -0800885 void restore() { if (mSuspended > 0) mSuspended--; }
886 bool isSuspended() const { return (mSuspended > 0); }
Mathias Agopian65ab4712010-07-14 17:59:35 -0700887 virtual String8 getParameters(const String8& keys);
888 virtual void audioConfigChanged_l(int event, int param = 0);
889 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
Glenn Kastenc59c0042012-02-02 14:06:11 -0800890 int16_t *mixBuffer() const { return mMixBuffer; };
Mathias Agopian65ab4712010-07-14 17:59:35 -0700891
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700892 virtual void detachAuxEffect_l(int effectId);
Eric Laurentde070132010-07-13 04:45:46 -0700893 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
894 int EffectId);
895 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
896 int EffectId);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700897
Eric Laurent7c7f10b2011-06-17 21:29:58 -0700898 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
899 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
900 virtual uint32_t hasAudioSession(int sessionId);
901 virtual uint32_t getStrategyForSession_l(int sessionId);
Eric Laurentde070132010-07-13 04:45:46 -0700902
Glenn Kastenfff6d712012-01-12 16:38:12 -0800903 void setStreamValid(audio_stream_type_t streamType, bool valid);
Eric Laurent9f6530f2011-08-30 10:18:54 -0700904
Mathias Agopian65ab4712010-07-14 17:59:35 -0700905 protected:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700906 int16_t* mMixBuffer;
Glenn Kastenc455fe92012-02-29 07:07:30 -0800907 uint32_t mSuspended; // suspend count, > 0 means suspended
Mathias Agopian65ab4712010-07-14 17:59:35 -0700908 int mBytesWritten;
Glenn Kasten98067102011-12-13 11:47:54 -0800909 private:
Glenn Kasten99e53b82012-01-19 08:59:58 -0800910 // mMasterMute is in both PlaybackThread and in AudioFlinger. When a
911 // PlaybackThread needs to find out if master-muted, it checks it's local
912 // copy rather than the one in AudioFlinger. This optimization saves a lock.
Mathias Agopian65ab4712010-07-14 17:59:35 -0700913 bool mMasterMute;
Glenn Kasten6637baa2012-01-09 09:40:36 -0800914 void setMasterMute_l(bool muted) { mMasterMute = muted; }
Glenn Kasten98067102011-12-13 11:47:54 -0800915 protected:
Mathias Agopian65ab4712010-07-14 17:59:35 -0700916 SortedVector< wp<Track> > mActiveTracks;
917
918 virtual int getTrackName_l() = 0;
919 virtual void deleteTrackName_l(int name) = 0;
Eric Laurent162b40b2011-12-05 09:47:19 -0800920 virtual uint32_t activeSleepTimeUs();
Mathias Agopian65ab4712010-07-14 17:59:35 -0700921 virtual uint32_t idleSleepTimeUs() = 0;
Eric Laurent25cbe0e2010-08-18 18:13:17 -0700922 virtual uint32_t suspendSleepTimeUs() = 0;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700923
Glenn Kasten37d825e2012-02-24 07:21:48 -0800924 // Code snippets that are temporarily lifted up out of threadLoop() until the merge
925 void checkSilentMode_l();
926
Glenn Kastenfa26a852012-03-06 11:28:04 -0800927 // Non-trivial for DUPLICATING only
928 virtual void saveOutputTracks() { }
929 virtual void clearOutputTracks() { }
930
Glenn Kasten66fcab92012-02-24 14:59:21 -0800931 // Cache various calculated values, at threadLoop() entry and after a parameter change
932 virtual void cacheParameters_l();
933
Mathias Agopian65ab4712010-07-14 17:59:35 -0700934 private:
935
936 friend class AudioFlinger;
937 friend class OutputTrack;
938 friend class Track;
939 friend class TrackBase;
940 friend class MixerThread;
941 friend class DirectOutputThread;
942 friend class DuplicatingThread;
943
944 PlaybackThread(const Client&);
945 PlaybackThread& operator = (const PlaybackThread&);
946
947 status_t addTrack_l(const sp<Track>& track);
948 void destroyTrack_l(const sp<Track>& track);
Eric Laurentb469b942011-05-09 12:09:06 -0700949 void removeTrack_l(const sp<Track>& track);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700950
951 void readOutputParameters();
952
Mathias Agopian65ab4712010-07-14 17:59:35 -0700953 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
954 status_t dumpTracks(int fd, const Vector<String16>& args);
Mathias Agopian65ab4712010-07-14 17:59:35 -0700955
956 SortedVector< sp<Track> > mTracks;
Glenn Kasten263709e2012-01-06 08:40:01 -0800957 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by DuplicatingThread
Dima Zavinfce7a472011-04-19 22:30:36 -0700958 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
Glenn Kastenaed850d2012-01-26 09:46:34 -0800959 AudioStreamOut *mOutput;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700960 float mMasterVolume;
961 nsecs_t mLastWriteTime;
962 int mNumWrites;
963 int mNumDelayedWrites;
964 bool mInWrite;
Glenn Kasten000f0e32012-03-01 17:10:56 -0800965
966 // FIXME rename these former local variables of threadLoop to standard "m" names
967 nsecs_t standbyTime;
968 size_t mixBufferSize;
Glenn Kasten66fcab92012-02-24 14:59:21 -0800969
970 // cached copies of activeSleepTimeUs() and idleSleepTimeUs() made by cacheParameters_l()
Glenn Kasten000f0e32012-03-01 17:10:56 -0800971 uint32_t activeSleepTime;
972 uint32_t idleSleepTime;
Glenn Kasten66fcab92012-02-24 14:59:21 -0800973
Glenn Kasten000f0e32012-03-01 17:10:56 -0800974 uint32_t sleepTime;
Glenn Kastenfec279f2012-03-08 07:47:15 -0800975
976 // mixer status returned by prepareTracks_l()
977 mixer_state mMixerStatus; // current cycle
978 mixer_state mPrevMixerStatus; // previous cycle
Glenn Kasten000f0e32012-03-01 17:10:56 -0800979
980 // FIXME move these declarations into the specific sub-class that needs them
981 // MIXER only
982 bool longStandbyExit;
983 uint32_t sleepTimeShift;
Glenn Kasten66fcab92012-02-24 14:59:21 -0800984
985 // same as AudioFlinger::mStandbyTimeInNsecs except for DIRECT which uses a shorter value
Glenn Kasten000f0e32012-03-01 17:10:56 -0800986 nsecs_t standbyDelay;
Glenn Kasten66fcab92012-02-24 14:59:21 -0800987
988 // MIXER only
989 nsecs_t maxPeriod;
990
Glenn Kasten000f0e32012-03-01 17:10:56 -0800991 // DUPLICATING only
Glenn Kasten000f0e32012-03-01 17:10:56 -0800992 uint32_t writeFrames;
Mathias Agopian65ab4712010-07-14 17:59:35 -0700993 };
994
995 class MixerThread : public PlaybackThread {
996 public:
Eric Laurentde070132010-07-13 04:45:46 -0700997 MixerThread (const sp<AudioFlinger>& audioFlinger,
Dima Zavin799a70e2011-04-18 16:57:27 -0700998 AudioStreamOut* output,
Glenn Kasten72ef00d2012-01-17 11:09:42 -0800999 audio_io_handle_t id,
Glenn Kasten23bb8be2012-01-26 10:38:26 -08001000 uint32_t device,
1001 type_t type = MIXER);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001002 virtual ~MixerThread();
1003
1004 // Thread virtuals
Mathias Agopian65ab4712010-07-14 17:59:35 -07001005
Glenn Kastenfff6d712012-01-12 16:38:12 -08001006 void invalidateTracks(audio_stream_type_t streamType);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001007 virtual bool checkForNewParameters_l();
1008 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
1009
1010 protected:
Glenn Kasten000f0e32012-03-01 17:10:56 -08001011 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001012 virtual int getTrackName_l();
1013 virtual void deleteTrackName_l(int name);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001014 virtual uint32_t idleSleepTimeUs();
Eric Laurent25cbe0e2010-08-18 18:13:17 -07001015 virtual uint32_t suspendSleepTimeUs();
Glenn Kasten66fcab92012-02-24 14:59:21 -08001016 virtual void cacheParameters_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001017
Glenn Kasten000f0e32012-03-01 17:10:56 -08001018 // threadLoop snippets
1019 virtual void threadLoop_mix();
1020 virtual void threadLoop_sleepTime();
1021
Eric Laurent27741442012-01-17 19:20:12 -08001022 AudioMixer* mAudioMixer;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001023 };
1024
1025 class DirectOutputThread : public PlaybackThread {
1026 public:
1027
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001028 DirectOutputThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
1029 audio_io_handle_t id, uint32_t device);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001030 virtual ~DirectOutputThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001031
1032 // Thread virtuals
Mathias Agopian65ab4712010-07-14 17:59:35 -07001033
1034 virtual bool checkForNewParameters_l();
1035
1036 protected:
1037 virtual int getTrackName_l();
1038 virtual void deleteTrackName_l(int name);
1039 virtual uint32_t activeSleepTimeUs();
1040 virtual uint32_t idleSleepTimeUs();
Eric Laurent25cbe0e2010-08-18 18:13:17 -07001041 virtual uint32_t suspendSleepTimeUs();
Glenn Kasten66fcab92012-02-24 14:59:21 -08001042 virtual void cacheParameters_l();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001043
Glenn Kasten000f0e32012-03-01 17:10:56 -08001044 // threadLoop snippets
Glenn Kasten1465f0c2012-03-06 11:23:32 -08001045 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
Glenn Kasten000f0e32012-03-01 17:10:56 -08001046 virtual void threadLoop_mix();
1047 virtual void threadLoop_sleepTime();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001048
Glenn Kasten99e53b82012-01-19 08:59:58 -08001049 // volumes last sent to audio HAL with stream->set_volume()
1050 // FIXME use standard representation and names
Mathias Agopian65ab4712010-07-14 17:59:35 -07001051 float mLeftVolFloat;
1052 float mRightVolFloat;
1053 uint16_t mLeftVolShort;
1054 uint16_t mRightVolShort;
Glenn Kasten000f0e32012-03-01 17:10:56 -08001055
1056 // FIXME rename these former local variables of threadLoop to standard names
1057 // next 3 were local to the while !exitingPending loop
1058 bool rampVolume;
1059 uint16_t leftVol;
1060 uint16_t rightVol;
Glenn Kastend4513b02012-03-06 15:52:35 -08001061
1062private:
1063 void applyVolume(); // FIXME inline into threadLoop_mix()
Glenn Kastenb071e9b2012-03-07 17:05:59 -08001064
1065 // prepareTracks_l() tells threadLoop_mix() the name of the single active track
1066 sp<Track> mActiveTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001067 };
1068
1069 class DuplicatingThread : public MixerThread {
1070 public:
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001071 DuplicatingThread (const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
1072 audio_io_handle_t id);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001073 virtual ~DuplicatingThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001074
1075 // Thread virtuals
Mathias Agopian65ab4712010-07-14 17:59:35 -07001076 void addOutputTrack(MixerThread* thread);
1077 void removeOutputTrack(MixerThread* thread);
1078 uint32_t waitTimeMs() { return mWaitTimeMs; }
1079 protected:
1080 virtual uint32_t activeSleepTimeUs();
1081
1082 private:
Glenn Kasten02fe1bf2012-02-24 15:42:17 -08001083 bool outputsReady(const SortedVector<sp<OutputTrack> > &outputTracks);
Glenn Kasten000f0e32012-03-01 17:10:56 -08001084 protected:
1085 // threadLoop snippets
1086 virtual void threadLoop_mix();
1087 virtual void threadLoop_sleepTime();
1088 virtual void threadLoop_write();
1089 virtual void threadLoop_standby();
Glenn Kasten66fcab92012-02-24 14:59:21 -08001090 virtual void cacheParameters_l();
Glenn Kasten438b0362012-03-06 11:24:48 -08001091
Glenn Kasten66fcab92012-02-24 14:59:21 -08001092 private:
Glenn Kasten438b0362012-03-06 11:24:48 -08001093 // called from threadLoop, addOutputTrack, removeOutputTrack
1094 virtual void updateWaitTime_l();
Glenn Kasten66fcab92012-02-24 14:59:21 -08001095 protected:
Glenn Kastenfa26a852012-03-06 11:28:04 -08001096 virtual void saveOutputTracks();
1097 virtual void clearOutputTracks();
Glenn Kasten000f0e32012-03-01 17:10:56 -08001098 private:
Mathias Agopian65ab4712010-07-14 17:59:35 -07001099
Mathias Agopian65ab4712010-07-14 17:59:35 -07001100 uint32_t mWaitTimeMs;
Glenn Kastenfa26a852012-03-06 11:28:04 -08001101 SortedVector < sp<OutputTrack> > outputTracks;
1102 SortedVector < sp<OutputTrack> > mOutputTracks;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001103 };
1104
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001105 PlaybackThread *checkPlaybackThread_l(audio_io_handle_t output) const;
1106 MixerThread *checkMixerThread_l(audio_io_handle_t output) const;
1107 RecordThread *checkRecordThread_l(audio_io_handle_t input) const;
Glenn Kasten6637baa2012-01-09 09:40:36 -08001108 // no range check, AudioFlinger::mLock held
1109 bool streamMute_l(audio_stream_type_t stream) const
1110 { return mStreamTypes[stream].mute; }
1111 // no range check, doesn't check per-thread stream volume, AudioFlinger::mLock held
1112 float streamVolume_l(audio_stream_type_t stream) const
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001113 { return mStreamTypes[stream].volume; }
Glenn Kastenb81cc8c2012-03-01 09:14:51 -08001114 void audioConfigChanged_l(int event, audio_io_handle_t ioHandle, const void *param2);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001115
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001116 // allocate an audio_io_handle_t, session ID, or effect ID
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001117 uint32_t nextUniqueId();
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001118
Eric Laurent59255e42011-07-27 19:49:51 -07001119 status_t moveEffectChain_l(int sessionId,
Glenn Kastena1117922012-01-26 10:53:32 -08001120 PlaybackThread *srcThread,
1121 PlaybackThread *dstThread,
Eric Laurent39e94f82010-07-28 01:32:47 -07001122 bool reRegister);
Glenn Kasten02fe1bf2012-02-24 15:42:17 -08001123 // return thread associated with primary hardware device, or NULL
1124 PlaybackThread *primaryPlaybackThread_l() const;
1125 uint32_t primaryOutputDevice_l() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001126
1127 friend class AudioBuffer;
1128
Glenn Kasten99e53b82012-01-19 08:59:58 -08001129 // server side of the client's IAudioTrack
Mathias Agopian65ab4712010-07-14 17:59:35 -07001130 class TrackHandle : public android::BnAudioTrack {
1131 public:
1132 TrackHandle(const sp<PlaybackThread::Track>& track);
1133 virtual ~TrackHandle();
Glenn Kasten90716c52012-01-26 13:40:12 -08001134 virtual sp<IMemory> getCblk() const;
Glenn Kasten6dbc1352012-02-02 10:56:47 -08001135 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001136 virtual void stop();
1137 virtual void flush();
1138 virtual void mute(bool);
1139 virtual void pause();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001140 virtual status_t attachAuxEffect(int effectId);
John Grossman4ff14ba2012-02-08 16:37:41 -08001141 virtual status_t allocateTimedBuffer(size_t size,
1142 sp<IMemory>* buffer);
1143 virtual status_t queueTimedBuffer(const sp<IMemory>& buffer,
1144 int64_t pts);
1145 virtual status_t setMediaTimeTransform(const LinearTransform& xform,
1146 int target);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001147 virtual status_t onTransact(
1148 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1149 private:
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001150 const sp<PlaybackThread::Track> mTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001151 };
1152
1153 friend class Client;
1154 friend class PlaybackThread::Track;
1155
1156
1157 void removeClient_l(pid_t pid);
1158 void removeNotificationClient(pid_t pid);
1159
1160
1161 // record thread
1162 class RecordThread : public ThreadBase, public AudioBufferProvider
1163 {
1164 public:
1165
1166 // record track
1167 class RecordTrack : public TrackBase {
1168 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -08001169 RecordTrack(RecordThread *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001170 const sp<Client>& client,
1171 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08001172 audio_format_t format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001173 uint32_t channelMask,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001174 int frameCount,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001175 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001176 virtual ~RecordTrack();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001177
Glenn Kasten6dbc1352012-02-02 10:56:47 -08001178 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001179 virtual void stop();
1180
1181 bool overflow() { bool tmp = mOverflow; mOverflow = false; return tmp; }
1182 bool setOverflow() { bool tmp = mOverflow; mOverflow = true; return tmp; }
1183
1184 void dump(char* buffer, size_t size);
Eric Laurent59255e42011-07-27 19:49:51 -07001185
Mathias Agopian65ab4712010-07-14 17:59:35 -07001186 private:
1187 friend class AudioFlinger;
1188 friend class RecordThread;
1189
1190 RecordTrack(const RecordTrack&);
1191 RecordTrack& operator = (const RecordTrack&);
1192
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08001193 // AudioBufferProvider interface
1194 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
1195 // releaseBuffer() not overridden
Mathias Agopian65ab4712010-07-14 17:59:35 -07001196
1197 bool mOverflow;
1198 };
1199
1200
1201 RecordThread(const sp<AudioFlinger>& audioFlinger,
Dima Zavin799a70e2011-04-18 16:57:27 -07001202 AudioStreamIn *input,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001203 uint32_t sampleRate,
1204 uint32_t channels,
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001205 audio_io_handle_t id,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001206 uint32_t device);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001207 virtual ~RecordThread();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001208
Glenn Kasten000f0e32012-03-01 17:10:56 -08001209 // Thread
Mathias Agopian65ab4712010-07-14 17:59:35 -07001210 virtual bool threadLoop();
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001211 virtual status_t readyToRun();
Glenn Kasten000f0e32012-03-01 17:10:56 -08001212
1213 // RefBase
Mathias Agopian65ab4712010-07-14 17:59:35 -07001214 virtual void onFirstRef();
1215
Glenn Kastene0feee32011-12-13 11:53:26 -08001216 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001217 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
1218 const sp<AudioFlinger::Client>& client,
1219 uint32_t sampleRate,
Glenn Kasten58f30212012-01-12 12:27:51 -08001220 audio_format_t format,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001221 int channelMask,
1222 int frameCount,
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001223 int sessionId,
1224 status_t *status);
1225
Mathias Agopian65ab4712010-07-14 17:59:35 -07001226 status_t start(RecordTrack* recordTrack);
Glenn Kasten6dbc1352012-02-02 10:56:47 -08001227 status_t start(RecordTrack* recordTrack, pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001228 void stop(RecordTrack* recordTrack);
1229 status_t dump(int fd, const Vector<String16>& args);
Glenn Kastenaed850d2012-01-26 09:46:34 -08001230 AudioStreamIn* getInput() const;
Eric Laurentb8ba0a92011-08-07 16:32:26 -07001231 AudioStreamIn* clearInput();
1232 virtual audio_stream_t* stream();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001233
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08001234 // AudioBufferProvider interface
1235 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001236 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kasten01c4ebf2012-02-22 10:47:35 -08001237
Mathias Agopian65ab4712010-07-14 17:59:35 -07001238 virtual bool checkForNewParameters_l();
1239 virtual String8 getParameters(const String8& keys);
1240 virtual void audioConfigChanged_l(int event, int param = 0);
1241 void readInputParameters();
1242 virtual unsigned int getInputFramesLost();
1243
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001244 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
1245 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
1246 virtual uint32_t hasAudioSession(int sessionId);
Eric Laurent59bd0da2011-08-01 09:52:20 -07001247 RecordTrack* track();
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001248
Mathias Agopian65ab4712010-07-14 17:59:35 -07001249 private:
1250 RecordThread();
Dima Zavin799a70e2011-04-18 16:57:27 -07001251 AudioStreamIn *mInput;
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001252 RecordTrack* mTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001253 sp<RecordTrack> mActiveTrack;
1254 Condition mStartStopCond;
1255 AudioResampler *mResampler;
1256 int32_t *mRsmpOutBuffer;
1257 int16_t *mRsmpInBuffer;
1258 size_t mRsmpInIndex;
1259 size_t mInputBytes;
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001260 const int mReqChannelCount;
1261 const uint32_t mReqSampleRate;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001262 ssize_t mBytesRead;
1263 };
1264
Glenn Kasten99e53b82012-01-19 08:59:58 -08001265 // server side of the client's IAudioRecord
Mathias Agopian65ab4712010-07-14 17:59:35 -07001266 class RecordHandle : public android::BnAudioRecord {
1267 public:
1268 RecordHandle(const sp<RecordThread::RecordTrack>& recordTrack);
1269 virtual ~RecordHandle();
Glenn Kasten90716c52012-01-26 13:40:12 -08001270 virtual sp<IMemory> getCblk() const;
Glenn Kasten6dbc1352012-02-02 10:56:47 -08001271 virtual status_t start(pid_t tid);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001272 virtual void stop();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001273 virtual status_t onTransact(
1274 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1275 private:
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001276 const sp<RecordThread::RecordTrack> mRecordTrack;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001277 };
1278
1279 //--- Audio Effect Management
1280
1281 // EffectModule and EffectChain classes both have their own mutex to protect
1282 // state changes or resource modifications. Always respect the following order
1283 // if multiple mutexes must be acquired to avoid cross deadlock:
1284 // AudioFlinger -> ThreadBase -> EffectChain -> EffectModule
1285
1286 // The EffectModule class is a wrapper object controlling the effect engine implementation
1287 // in the effect library. It prevents concurrent calls to process() and command() functions
1288 // from different client threads. It keeps a list of EffectHandle objects corresponding
1289 // to all client applications using this effect and notifies applications of effect state,
1290 // control or parameter changes. It manages the activation state machine to send appropriate
1291 // reset, enable, disable commands to effect engine and provide volume
1292 // ramping when effects are activated/deactivated.
1293 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
1294 // the attached track(s) to accumulate their auxiliary channel.
1295 class EffectModule: public RefBase {
1296 public:
Glenn Kasten9eaa5572012-01-20 13:32:16 -08001297 EffectModule(ThreadBase *thread,
Mathias Agopian65ab4712010-07-14 17:59:35 -07001298 const wp<AudioFlinger::EffectChain>& chain,
1299 effect_descriptor_t *desc,
1300 int id,
1301 int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001302 virtual ~EffectModule();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001303
1304 enum effect_state {
1305 IDLE,
1306 RESTART,
1307 STARTING,
1308 ACTIVE,
1309 STOPPING,
Eric Laurentec437d82011-07-26 20:54:46 -07001310 STOPPED,
1311 DESTROYED
Mathias Agopian65ab4712010-07-14 17:59:35 -07001312 };
1313
Glenn Kastenc59c0042012-02-02 14:06:11 -08001314 int id() const { return mId; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001315 void process();
1316 void updateState();
Eric Laurent25f43952010-07-28 05:40:18 -07001317 status_t command(uint32_t cmdCode,
1318 uint32_t cmdSize,
1319 void *pCmdData,
1320 uint32_t *replySize,
1321 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001322
1323 void reset_l();
1324 status_t configure();
1325 status_t init();
Glenn Kasten28243dd2012-01-26 13:43:46 -08001326 effect_state state() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001327 return mState;
1328 }
1329 uint32_t status() {
1330 return mStatus;
1331 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001332 int sessionId() const {
Eric Laurentde070132010-07-13 04:45:46 -07001333 return mSessionId;
1334 }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001335 status_t setEnabled(bool enabled);
Glenn Kastenc59c0042012-02-02 14:06:11 -08001336 bool isEnabled() const;
1337 bool isProcessEnabled() const;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001338
1339 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
1340 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
1341 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
1342 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
Eric Laurentde070132010-07-13 04:45:46 -07001343 void setChain(const wp<EffectChain>& chain) { mChain = chain; }
1344 void setThread(const wp<ThreadBase>& thread) { mThread = thread; }
Glenn Kasten84afa3b2012-01-25 15:28:08 -08001345 const wp<ThreadBase>& thread() { return mThread; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001346
Glenn Kasten435dbe62012-01-30 10:15:48 -08001347 status_t addHandle(const sp<EffectHandle>& handle);
Glenn Kasten58123c32012-02-03 10:32:24 -08001348 void disconnect(const wp<EffectHandle>& handle, bool unpinIfLast);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001349 size_t removeHandle (const wp<EffectHandle>& handle);
1350
1351 effect_descriptor_t& desc() { return mDescriptor; }
1352 wp<EffectChain>& chain() { return mChain; }
1353
1354 status_t setDevice(uint32_t device);
1355 status_t setVolume(uint32_t *left, uint32_t *right, bool controller);
Glenn Kastenf78aee72012-01-04 11:00:47 -08001356 status_t setMode(audio_mode_t mode);
Eric Laurentec35a142011-10-05 17:42:25 -07001357 status_t start();
Eric Laurentec437d82011-07-26 20:54:46 -07001358 status_t stop();
Eric Laurent59255e42011-07-27 19:49:51 -07001359 void setSuspended(bool suspended);
Glenn Kastena3a85482012-01-04 11:01:11 -08001360 bool suspended() const;
Eric Laurent59255e42011-07-27 19:49:51 -07001361
1362 sp<EffectHandle> controlHandle();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001363
Glenn Kastenc59c0042012-02-02 14:06:11 -08001364 bool isPinned() const { return mPinned; }
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001365 void unPin() { mPinned = false; }
1366
Mathias Agopian65ab4712010-07-14 17:59:35 -07001367 status_t dump(int fd, const Vector<String16>& args);
1368
1369 protected:
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001370 friend class EffectHandle;
1371 friend class AudioFlinger;
1372 bool mPinned;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001373
1374 // Maximum time allocated to effect engines to complete the turn off sequence
1375 static const uint32_t MAX_DISABLE_TIME_MS = 10000;
1376
1377 EffectModule(const EffectModule&);
1378 EffectModule& operator = (const EffectModule&);
1379
1380 status_t start_l();
1381 status_t stop_l();
1382
Glenn Kastena3a85482012-01-04 11:01:11 -08001383mutable Mutex mLock; // mutex for process, commands and handles list protection
Mathias Agopian65ab4712010-07-14 17:59:35 -07001384 wp<ThreadBase> mThread; // parent thread
1385 wp<EffectChain> mChain; // parent effect chain
1386 int mId; // this instance unique ID
1387 int mSessionId; // audio session ID
1388 effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
1389 effect_config_t mConfig; // input and output audio configuration
Eric Laurente1315cf2011-05-17 19:16:02 -07001390 effect_handle_t mEffectInterface; // Effect module C API
Glenn Kasten28243dd2012-01-26 13:43:46 -08001391 status_t mStatus; // initialization status
1392 effect_state mState; // current activation state
Mathias Agopian65ab4712010-07-14 17:59:35 -07001393 Vector< wp<EffectHandle> > mHandles; // list of client handles
Glenn Kasten99e53b82012-01-19 08:59:58 -08001394 // First handle in mHandles has highest priority and controls the effect module
Mathias Agopian65ab4712010-07-14 17:59:35 -07001395 uint32_t mMaxDisableWaitCnt; // maximum grace period before forcing an effect off after
1396 // sending disable command.
1397 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
Eric Laurent59255e42011-07-27 19:49:51 -07001398 bool mSuspended; // effect is suspended: temporarily disabled by framework
Mathias Agopian65ab4712010-07-14 17:59:35 -07001399 };
1400
1401 // The EffectHandle class implements the IEffect interface. It provides resources
1402 // to receive parameter updates, keeps track of effect control
1403 // ownership and state and has a pointer to the EffectModule object it is controlling.
1404 // There is one EffectHandle object for each application controlling (or using)
1405 // an effect module.
1406 // The EffectHandle is obtained by calling AudioFlinger::createEffect().
1407 class EffectHandle: public android::BnEffect {
1408 public:
1409
1410 EffectHandle(const sp<EffectModule>& effect,
1411 const sp<AudioFlinger::Client>& client,
1412 const sp<IEffectClient>& effectClient,
1413 int32_t priority);
1414 virtual ~EffectHandle();
1415
1416 // IEffect
1417 virtual status_t enable();
1418 virtual status_t disable();
Eric Laurent25f43952010-07-28 05:40:18 -07001419 virtual status_t command(uint32_t cmdCode,
1420 uint32_t cmdSize,
1421 void *pCmdData,
1422 uint32_t *replySize,
1423 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001424 virtual void disconnect();
Glenn Kasten58123c32012-02-03 10:32:24 -08001425 private:
1426 void disconnect(bool unpinIfLast);
1427 public:
Glenn Kastenc59c0042012-02-02 14:06:11 -08001428 virtual sp<IMemory> getCblk() const { return mCblkMemory; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001429 virtual status_t onTransact(uint32_t code, const Parcel& data,
1430 Parcel* reply, uint32_t flags);
1431
1432
1433 // Give or take control of effect module
Eric Laurent59255e42011-07-27 19:49:51 -07001434 // - hasControl: true if control is given, false if removed
1435 // - signal: true client app should be signaled of change, false otherwise
1436 // - enabled: state of the effect when control is passed
1437 void setControl(bool hasControl, bool signal, bool enabled);
Eric Laurent25f43952010-07-28 05:40:18 -07001438 void commandExecuted(uint32_t cmdCode,
1439 uint32_t cmdSize,
1440 void *pCmdData,
1441 uint32_t replySize,
1442 void *pReplyData);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001443 void setEnabled(bool enabled);
Glenn Kastenc59c0042012-02-02 14:06:11 -08001444 bool enabled() const { return mEnabled; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001445
1446 // Getters
Glenn Kastenc59c0042012-02-02 14:06:11 -08001447 int id() const { return mEffect->id(); }
1448 int priority() const { return mPriority; }
1449 bool hasControl() const { return mHasControl; }
1450 sp<EffectModule> effect() const { return mEffect; }
Mathias Agopian65ab4712010-07-14 17:59:35 -07001451
1452 void dump(char* buffer, size_t size);
1453
1454 protected:
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001455 friend class AudioFlinger;
1456 friend class EffectModule;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001457 EffectHandle(const EffectHandle&);
1458 EffectHandle& operator =(const EffectHandle&);
1459
1460 sp<EffectModule> mEffect; // pointer to controlled EffectModule
1461 sp<IEffectClient> mEffectClient; // callback interface for client notifications
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001462 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
Mathias Agopian65ab4712010-07-14 17:59:35 -07001463 sp<IMemory> mCblkMemory; // shared memory for control block
1464 effect_param_cblk_t* mCblk; // control block for deferred parameter setting via shared memory
1465 uint8_t* mBuffer; // pointer to parameter area in shared memory
1466 int mPriority; // client application priority to control the effect
1467 bool mHasControl; // true if this handle is controlling the effect
Eric Laurent59255e42011-07-27 19:49:51 -07001468 bool mEnabled; // cached enable state: needed when the effect is
1469 // restored after being suspended
Mathias Agopian65ab4712010-07-14 17:59:35 -07001470 };
1471
1472 // the EffectChain class represents a group of effects associated to one audio session.
1473 // There can be any number of EffectChain objects per output mixer thread (PlaybackThread).
1474 // The EffecChain with session ID 0 contains global effects applied to the output mix.
1475 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to tracks)
1476 // are insert only. The EffectChain maintains an ordered list of effect module, the order corresponding
1477 // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
1478 // input buffer used by the track as accumulation buffer.
1479 class EffectChain: public RefBase {
1480 public:
1481 EffectChain(const wp<ThreadBase>& wThread, int sessionId);
Glenn Kasten9eaa5572012-01-20 13:32:16 -08001482 EffectChain(ThreadBase *thread, int sessionId);
Glenn Kastenc19e2242012-01-30 14:54:39 -08001483 virtual ~EffectChain();
Mathias Agopian65ab4712010-07-14 17:59:35 -07001484
Eric Laurent59255e42011-07-27 19:49:51 -07001485 // special key used for an entry in mSuspendedEffects keyed vector
1486 // corresponding to a suspend all request.
1487 static const int kKeyForSuspendAll = 0;
1488
Eric Laurent544fe9b2011-11-11 15:42:52 -08001489 // minimum duration during which we force calling effect process when last track on
1490 // a session is stopped or removed to allow effect tail to be rendered
1491 static const int kProcessTailDurationMs = 1000;
1492
Mathias Agopian65ab4712010-07-14 17:59:35 -07001493 void process_l();
1494
1495 void lock() {
1496 mLock.lock();
1497 }
1498 void unlock() {
1499 mLock.unlock();
1500 }
1501
Eric Laurentde070132010-07-13 04:45:46 -07001502 status_t addEffect_l(const sp<EffectModule>& handle);
Eric Laurentcab11242010-07-15 12:50:15 -07001503 size_t removeEffect_l(const sp<EffectModule>& handle);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001504
Glenn Kastenc59c0042012-02-02 14:06:11 -08001505 int sessionId() const { return mSessionId; }
Eric Laurent7c7f10b2011-06-17 21:29:58 -07001506 void setSessionId(int sessionId) { mSessionId = sessionId; }
Eric Laurentde070132010-07-13 04:45:46 -07001507
Eric Laurentcab11242010-07-15 12:50:15 -07001508 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1509 sp<EffectModule> getEffectFromId_l(int id);
Eric Laurent59255e42011-07-27 19:49:51 -07001510 sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type);
Eric Laurentcab11242010-07-15 12:50:15 -07001511 bool setVolume_l(uint32_t *left, uint32_t *right);
1512 void setDevice_l(uint32_t device);
Glenn Kastenf78aee72012-01-04 11:00:47 -08001513 void setMode_l(audio_mode_t mode);
Mathias Agopian65ab4712010-07-14 17:59:35 -07001514
Mathias Agopian65ab4712010-07-14 17:59:35 -07001515 void setInBuffer(int16_t *buffer, bool ownsBuffer = false) {
1516 mInBuffer = buffer;
1517 mOwnInBuffer = ownsBuffer;
1518 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001519 int16_t *inBuffer() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001520 return mInBuffer;
1521 }
1522 void setOutBuffer(int16_t *buffer) {
1523 mOutBuffer = buffer;
1524 }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001525 int16_t *outBuffer() const {
Mathias Agopian65ab4712010-07-14 17:59:35 -07001526 return mOutBuffer;
1527 }
1528
Eric Laurentb469b942011-05-09 12:09:06 -07001529 void incTrackCnt() { android_atomic_inc(&mTrackCnt); }
1530 void decTrackCnt() { android_atomic_dec(&mTrackCnt); }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001531 int32_t trackCnt() const { return mTrackCnt;}
Eric Laurentb469b942011-05-09 12:09:06 -07001532
Eric Laurent544fe9b2011-11-11 15:42:52 -08001533 void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt);
1534 mTailBufferCount = mMaxTailBuffers; }
Eric Laurentb469b942011-05-09 12:09:06 -07001535 void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); }
Glenn Kastenc59c0042012-02-02 14:06:11 -08001536 int32_t activeTrackCnt() const { return mActiveTrackCnt;}
Mathias Agopian65ab4712010-07-14 17:59:35 -07001537
Glenn Kastenc59c0042012-02-02 14:06:11 -08001538 uint32_t strategy() const { return mStrategy; }
Eric Laurentde070132010-07-13 04:45:46 -07001539 void setStrategy(uint32_t strategy)
1540 { mStrategy = strategy; }
1541
Eric Laurent59255e42011-07-27 19:49:51 -07001542 // suspend effect of the given type
1543 void setEffectSuspended_l(const effect_uuid_t *type,
1544 bool suspend);
1545 // suspend all eligible effects
1546 void setEffectSuspendedAll_l(bool suspend);
1547 // check if effects should be suspend or restored when a given effect is enable or disabled
Eric Laurenta85a74a2011-10-19 11:44:54 -07001548 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurent59255e42011-07-27 19:49:51 -07001549 bool enabled);
1550
Mathias Agopian65ab4712010-07-14 17:59:35 -07001551 status_t dump(int fd, const Vector<String16>& args);
1552
1553 protected:
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001554 friend class AudioFlinger;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001555 EffectChain(const EffectChain&);
1556 EffectChain& operator =(const EffectChain&);
1557
Eric Laurent59255e42011-07-27 19:49:51 -07001558 class SuspendedEffectDesc : public RefBase {
1559 public:
1560 SuspendedEffectDesc() : mRefCount(0) {}
1561
1562 int mRefCount;
1563 effect_uuid_t mType;
1564 wp<EffectModule> mEffect;
1565 };
1566
1567 // get a list of effect modules to suspend when an effect of the type
1568 // passed is enabled.
Glenn Kastend0539712012-01-30 12:56:03 -08001569 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects);
1570
Eric Laurent59255e42011-07-27 19:49:51 -07001571 // get an effect module if it is currently enable
1572 sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type);
Eric Laurentdb7c0792011-08-10 10:37:50 -07001573 // true if the effect whose descriptor is passed can be suspended
1574 // OEMs can modify the rules implemented in this method to exclude specific effect
1575 // types or implementations from the suspend/restore mechanism.
1576 bool isEffectEligibleForSuspend(const effect_descriptor_t& desc);
Eric Laurent59255e42011-07-27 19:49:51 -07001577
Mathias Agopian65ab4712010-07-14 17:59:35 -07001578 wp<ThreadBase> mThread; // parent mixer thread
1579 Mutex mLock; // mutex protecting effect list
1580 Vector<sp<EffectModule> > mEffects; // list of effect modules
1581 int mSessionId; // audio session ID
1582 int16_t *mInBuffer; // chain input buffer
1583 int16_t *mOutBuffer; // chain output buffer
Eric Laurentb469b942011-05-09 12:09:06 -07001584 volatile int32_t mActiveTrackCnt; // number of active tracks connected
1585 volatile int32_t mTrackCnt; // number of tracks connected
Eric Laurent544fe9b2011-11-11 15:42:52 -08001586 int32_t mTailBufferCount; // current effect tail buffer count
1587 int32_t mMaxTailBuffers; // maximum effect tail buffers
Mathias Agopian65ab4712010-07-14 17:59:35 -07001588 bool mOwnInBuffer; // true if the chain owns its input buffer
Eric Laurentcab11242010-07-15 12:50:15 -07001589 int mVolumeCtrlIdx; // index of insert effect having control over volume
1590 uint32_t mLeftVolume; // previous volume on left channel
1591 uint32_t mRightVolume; // previous volume on right channel
Eric Laurentf997cab2010-07-19 06:24:46 -07001592 uint32_t mNewLeftVolume; // new volume on left channel
1593 uint32_t mNewRightVolume; // new volume on right channel
Eric Laurentde070132010-07-13 04:45:46 -07001594 uint32_t mStrategy; // strategy for this effect chain
Eric Laurent59255e42011-07-27 19:49:51 -07001595 // mSuspendedEffects lists all effect currently suspended in the chain
1596 // use effect type UUID timelow field as key. There is no real risk of identical
1597 // timeLow fields among effect type UUIDs.
1598 KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001599 };
1600
Glenn Kastenaed850d2012-01-26 09:46:34 -08001601 // AudioStreamOut and AudioStreamIn are immutable, so their fields are const.
1602 // For emphasis, we could also make all pointers to them be "const *",
1603 // but that would clutter the code unnecessarily.
1604
Dima Zavin799a70e2011-04-18 16:57:27 -07001605 struct AudioStreamOut {
Glenn Kastenaed850d2012-01-26 09:46:34 -08001606 audio_hw_device_t* const hwDev;
1607 audio_stream_out_t* const stream;
Dima Zavin799a70e2011-04-18 16:57:27 -07001608
1609 AudioStreamOut(audio_hw_device_t *dev, audio_stream_out_t *out) :
1610 hwDev(dev), stream(out) {}
1611 };
1612
1613 struct AudioStreamIn {
Glenn Kastenaed850d2012-01-26 09:46:34 -08001614 audio_hw_device_t* const hwDev;
1615 audio_stream_in_t* const stream;
Dima Zavin799a70e2011-04-18 16:57:27 -07001616
1617 AudioStreamIn(audio_hw_device_t *dev, audio_stream_in_t *in) :
1618 hwDev(dev), stream(in) {}
1619 };
1620
Glenn Kasten99e53b82012-01-19 08:59:58 -08001621 // for mAudioSessionRefs only
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001622 struct AudioSessionRef {
Glenn Kasten012ca6b2012-03-06 11:22:01 -08001623 AudioSessionRef(int sessionid, pid_t pid) :
1624 mSessionid(sessionid), mPid(pid), mCnt(1) {}
1625 const int mSessionid;
1626 const pid_t mPid;
1627 int mCnt;
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001628 };
1629
Mathias Agopian65ab4712010-07-14 17:59:35 -07001630 friend class RecordThread;
1631 friend class PlaybackThread;
1632
John Grossman4ff14ba2012-02-08 16:37:41 -08001633 enum master_volume_support {
1634 // MVS_NONE:
1635 // Audio HAL has no support for master volume, either setting or
1636 // getting. All master volume control must be implemented in SW by the
1637 // AudioFlinger mixing core.
1638 MVS_NONE,
1639
1640 // MVS_SETONLY:
1641 // Audio HAL has support for setting master volume, but not for getting
1642 // master volume (original HAL design did not include a getter).
1643 // AudioFlinger needs to keep track of the last set master volume in
1644 // addition to needing to set an initial, default, master volume at HAL
1645 // load time.
1646 MVS_SETONLY,
1647
1648 // MVS_FULL:
1649 // Audio HAL has support both for setting and getting master volume.
1650 // AudioFlinger should send all set and get master volume requests
1651 // directly to the HAL.
1652 MVS_FULL,
1653 };
1654
Mathias Agopian65ab4712010-07-14 17:59:35 -07001655 mutable Mutex mLock;
1656
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001657 DefaultKeyedVector< pid_t, wp<Client> > mClients; // see ~Client()
Mathias Agopian65ab4712010-07-14 17:59:35 -07001658
1659 mutable Mutex mHardwareLock;
Glenn Kasten2b213bc2012-02-02 14:05:20 -08001660
1661 // These two fields are immutable after onFirstRef(), so no lock needed to access
1662 audio_hw_device_t* mPrimaryHardwareDev; // mAudioHwDevs[0] or NULL
Dima Zavin799a70e2011-04-18 16:57:27 -07001663 Vector<audio_hw_device_t*> mAudioHwDevs;
Glenn Kasten2f732eb2012-01-26 09:48:03 -08001664
Glenn Kasten8abf44d2012-02-02 14:16:03 -08001665 // for dump, indicates which hardware operation is currently in progress (but not stream ops)
Glenn Kasten2f732eb2012-01-26 09:48:03 -08001666 enum hardware_call_state {
Glenn Kasten8abf44d2012-02-02 14:16:03 -08001667 AUDIO_HW_IDLE = 0, // no operation in progress
1668 AUDIO_HW_INIT, // init_check
1669 AUDIO_HW_OUTPUT_OPEN, // open_output_stream
1670 AUDIO_HW_OUTPUT_CLOSE, // unused
1671 AUDIO_HW_INPUT_OPEN, // unused
1672 AUDIO_HW_INPUT_CLOSE, // unused
1673 AUDIO_HW_STANDBY, // unused
1674 AUDIO_HW_SET_MASTER_VOLUME, // set_master_volume
1675 AUDIO_HW_GET_ROUTING, // unused
1676 AUDIO_HW_SET_ROUTING, // unused
1677 AUDIO_HW_GET_MODE, // unused
1678 AUDIO_HW_SET_MODE, // set_mode
1679 AUDIO_HW_GET_MIC_MUTE, // get_mic_mute
1680 AUDIO_HW_SET_MIC_MUTE, // set_mic_mute
1681 AUDIO_HW_SET_VOICE_VOLUME, // set_voice_volume
1682 AUDIO_HW_SET_PARAMETER, // set_parameters
1683 AUDIO_HW_GET_INPUT_BUFFER_SIZE, // get_input_buffer_size
1684 AUDIO_HW_GET_MASTER_VOLUME, // get_master_volume
1685 AUDIO_HW_GET_PARAMETER, // get_parameters
Glenn Kasten2f732eb2012-01-26 09:48:03 -08001686 };
1687
Glenn Kastena4454b42012-01-04 11:02:33 -08001688 mutable hardware_call_state mHardwareStatus; // for dump only
Mathias Agopian65ab4712010-07-14 17:59:35 -07001689
1690
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001691 DefaultKeyedVector< audio_io_handle_t, sp<PlaybackThread> > mPlaybackThreads;
Glenn Kastenb7bf7962012-02-08 12:36:25 -08001692 stream_type_t mStreamTypes[AUDIO_STREAM_CNT];
Glenn Kasten98067102011-12-13 11:47:54 -08001693
1694 // both are protected by mLock
Mathias Agopian65ab4712010-07-14 17:59:35 -07001695 float mMasterVolume;
John Grossman4ff14ba2012-02-08 16:37:41 -08001696 float mMasterVolumeSW;
1697 master_volume_support mMasterVolumeSupportLvl;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001698 bool mMasterMute;
1699
Glenn Kasten72ef00d2012-01-17 11:09:42 -08001700 DefaultKeyedVector< audio_io_handle_t, sp<RecordThread> > mRecordThreads;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001701
1702 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
Glenn Kasten99e53b82012-01-19 08:59:58 -08001703 volatile int32_t mNextUniqueId; // updated by android_atomic_inc
Glenn Kastenf78aee72012-01-04 11:00:47 -08001704 audio_mode_t mMode;
Eric Laurentbee53372011-08-29 12:42:48 -07001705 bool mBtNrecIsOff;
Mathias Agopian65ab4712010-07-14 17:59:35 -07001706
Glenn Kasten99e53b82012-01-19 08:59:58 -08001707 // protected by mLock
Marco Nelissen3a34bef2011-08-02 13:33:41 -07001708 Vector<AudioSessionRef*> mAudioSessionRefs;
Glenn Kasten98067102011-12-13 11:47:54 -08001709
John Grossman4ff14ba2012-02-08 16:37:41 -08001710 float masterVolume_l() const;
1711 float masterVolumeSW_l() const { return mMasterVolumeSW; }
Glenn Kasten98067102011-12-13 11:47:54 -08001712 bool masterMute_l() const { return mMasterMute; }
Glenn Kasten98ec94c2012-01-25 14:28:29 -08001713
1714private:
1715 sp<Client> registerPid_l(pid_t pid); // always returns non-0
1716
Mathias Agopian65ab4712010-07-14 17:59:35 -07001717};
1718
Dima Zavin799a70e2011-04-18 16:57:27 -07001719
Mathias Agopian65ab4712010-07-14 17:59:35 -07001720// ----------------------------------------------------------------------------
1721
1722}; // namespace android
1723
1724#endif // ANDROID_AUDIO_FLINGER_H