blob: d1950a3c1e84c5542247110e06019624cf054fdb [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,
90 uint32_t flags,
91 const sp<IMemory>& sharedBuffer,
Glenn Kasten39d00cb2012-01-17 11:09:42 -080092 audio_io_handle_t output,
John Grossmand8cf2962012-02-08 16:37:41 -080093 bool isTimed,
Eric Laurent65b65452010-06-01 23:49:17 -070094 int *sessionId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095 status_t *status);
96
Glenn Kasten00931bb2012-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 Kasten39d00cb2012-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;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113
114 virtual status_t setMasterVolume(float value);
115 virtual status_t setMasterMute(bool muted);
116
117 virtual float masterVolume() const;
John Grossmand8cf2962012-02-08 16:37:41 -0800118 virtual float masterVolumeSW() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119 virtual bool masterMute() const;
120
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800121 virtual status_t setStreamVolume(audio_stream_type_t stream, float value,
122 audio_io_handle_t output);
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800123 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800125 virtual float streamVolume(audio_stream_type_t stream,
126 audio_io_handle_t output) const;
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800127 virtual bool streamMute(audio_stream_type_t stream) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800128
Glenn Kastenaccb1142012-01-04 11:00:47 -0800129 virtual status_t setMode(audio_mode_t mode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130
131 virtual status_t setMicMute(bool state);
132 virtual bool getMicMute() const;
133
Glenn Kasten39d00cb2012-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;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136
137 virtual void registerClient(const sp<IAudioFlingerClient>& client);
Eric Laurenta553c252009-07-17 12:17:14 -0700138
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800139 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t format, int channelCount) const;
Eric Laurenta553c252009-07-17 12:17:14 -0700140
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800141 virtual audio_io_handle_t openOutput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -0700142 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800143 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -0700144 uint32_t *pChannels,
145 uint32_t *pLatencyMs,
Glenn Kasten28b269f2012-03-07 09:15:37 -0800146 audio_policy_output_flags_t flags);
Eric Laurenta553c252009-07-17 12:17:14 -0700147
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800148 virtual audio_io_handle_t openDuplicateOutput(audio_io_handle_t output1,
149 audio_io_handle_t output2);
Eric Laurenta553c252009-07-17 12:17:14 -0700150
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800151 virtual status_t closeOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700152
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800153 virtual status_t suspendOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700154
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800155 virtual status_t restoreOutput(audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700156
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800157 virtual audio_io_handle_t openInput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -0700158 uint32_t *pSamplingRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800159 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -0700160 uint32_t *pChannels,
Glenn Kasten882c0a22012-01-27 12:32:34 -0800161 audio_in_acoustics_t acoustics);
Eric Laurenta553c252009-07-17 12:17:14 -0700162
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800163 virtual status_t closeInput(audio_io_handle_t input);
Eric Laurenta553c252009-07-17 12:17:14 -0700164
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800165 virtual status_t setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output);
Eric Laurenta553c252009-07-17 12:17:14 -0700166
Eric Laurent415f3e22009-10-21 08:14:22 -0700167 virtual status_t setVoiceVolume(float volume);
168
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800169 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames,
170 audio_io_handle_t output) const;
Eric Laurent0986e792010-01-19 17:37:09 -0800171
Glenn Kasten00931bb2012-01-26 09:48:03 -0800172 virtual unsigned int getInputFramesLost(audio_io_handle_t ioHandle) const;
173
Eric Laurent65b65452010-06-01 23:49:17 -0700174 virtual int newAudioSessionId();
175
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700176 virtual void acquireAudioSessionId(int audioSession);
177
178 virtual void releaseAudioSessionId(int audioSession);
179
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800180 virtual status_t queryNumberEffects(uint32_t *numEffects) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700181
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800182 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700183
Glenn Kasten67313332012-01-30 07:40:52 -0800184 virtual status_t getEffectDescriptor(const effect_uuid_t *pUuid,
Glenn Kasten3f6d83a2012-01-26 16:25:10 -0800185 effect_descriptor_t *descriptor) const;
Eric Laurent65b65452010-06-01 23:49:17 -0700186
187 virtual sp<IEffect> createEffect(pid_t pid,
188 effect_descriptor_t *pDesc,
189 const sp<IEffectClient>& effectClient,
190 int32_t priority,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800191 audio_io_handle_t io,
Eric Laurent65b65452010-06-01 23:49:17 -0700192 int sessionId,
193 status_t *status,
194 int *id,
195 int *enabled);
196
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800197 virtual status_t moveEffects(int sessionId, audio_io_handle_t srcOutput,
198 audio_io_handle_t dstOutput);
Eric Laurent53334cd2010-06-23 17:38:20 -0700199
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200 virtual status_t onTransact(
201 uint32_t code,
202 const Parcel& data,
203 Parcel* reply,
204 uint32_t flags);
205
Glenn Kasten00931bb2012-01-26 09:48:03 -0800206 // end of IAudioFlinger interface
207
208private:
Glenn Kastenaccb1142012-01-04 11:00:47 -0800209 audio_mode_t getMode() const { return mMode; }
Eric Laurent53334cd2010-06-23 17:38:20 -0700210
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800211 bool btNrecIsOff() const { return mBtNrecIsOff; }
Eric Laurent6639b552011-08-01 09:52:20 -0700212
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800213 AudioFlinger();
214 virtual ~AudioFlinger();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215
Glenn Kastenad8d1752012-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 Kasten67cb3122012-03-01 17:10:56 -0800219 // RefBase
Dima Zavin2986f5b2011-04-19 19:04:32 -0700220 virtual void onFirstRef();
Glenn Kasten67cb3122012-03-01 17:10:56 -0800221
Dima Zavin31f188892011-04-18 16:57:27 -0700222 audio_hw_device_t* findSuitableHwDev_l(uint32_t devices);
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700223 void purgeStaleEffects_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800224
Glenn Kasten0fe52c82012-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 Grossmand8cf2962012-02-08 16:37:41 -0800227 static nsecs_t mStandbyTimeInNsecs;
228
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229 // 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 Kasten1f812f72012-01-30 10:15:48 -0800239 sp<MemoryDealer> heap() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800240 pid_t pid() const { return mPid; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800241 sp<AudioFlinger> audioFlinger() const { return mAudioFlinger; }
Eric Laurentb9481d82009-09-17 05:12:56 -0700242
John Grossmand8cf2962012-02-08 16:37:41 -0800243 bool reserveTimedTrack();
244 void releaseTimedTrack();
245
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800246 private:
247 Client(const Client&);
248 Client& operator = (const Client&);
Glenn Kastendc3ac852012-01-25 15:28:08 -0800249 const sp<AudioFlinger> mAudioFlinger;
250 const sp<MemoryDealer> mMemoryDealer;
251 const pid_t mPid;
John Grossmand8cf2962012-02-08 16:37:41 -0800252
253 Mutex mTimedTrackLock;
254 int mTimedTrackCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 };
256
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700257 // --- 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 Kastendc3ac852012-01-25 15:28:08 -0800265 sp<IAudioFlingerClient> audioFlingerClient() const { return mAudioFlingerClient; }
Eric Laurent4f0f17d2010-05-12 02:05:53 -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 Kastendc3ac852012-01-25 15:28:08 -0800274 const sp<AudioFlinger> mAudioFlinger;
275 const pid_t mPid;
276 const sp<IAudioFlingerClient> mAudioFlingerClient;
Eric Laurent4f0f17d2010-05-12 02:05:53 -0700277 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278
279 class TrackHandle;
280 class RecordHandle;
Eric Laurenta553c252009-07-17 12:17:14 -0700281 class RecordThread;
282 class PlaybackThread;
283 class MixerThread;
284 class DirectOutputThread;
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800285 class DuplicatingThread;
Eric Laurenta553c252009-07-17 12:17:14 -0700286 class Track;
287 class RecordTrack;
Eric Laurent65b65452010-06-01 23:49:17 -0700288 class EffectModule;
289 class EffectHandle;
290 class EffectChain;
Dima Zavin31f188892011-04-18 16:57:27 -0700291 struct AudioStreamOut;
292 struct AudioStreamIn;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293
Eric Laurenta553c252009-07-17 12:17:14 -0700294 class ThreadBase : public Thread {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800295 public:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296
Glenn Kastenefd511a2012-01-26 10:38:26 -0800297 enum type_t {
Eric Laurent464d5b32011-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 Kasten39d00cb2012-01-17 11:09:42 -0800304 ThreadBase (const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id, uint32_t device, type_t type);
Glenn Kastenefd511a2012-01-26 10:38:26 -0800305 virtual ~ThreadBase();
306
Eric Laurent3fdb1262009-11-07 00:01:32 -0800307 status_t dumpBase(int fd, const Vector<String16>& args);
Eric Laurent1345d332011-07-24 17:49:51 -0700308 status_t dumpEffectChains(int fd, const Vector<String16>& args);
Eric Laurent3fdb1262009-11-07 00:01:32 -0800309
Eric Laurent6dbdc402011-07-22 09:04:31 -0700310 void clearPowerManager();
311
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800312 // base for record and playback
313 class TrackBase : public AudioBufferProvider, public RefBase {
314
315 public:
316 enum track_state {
317 IDLE,
318 TERMINATED,
Glenn Kastenb3db2132012-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.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800321 STOPPED,
322 RESUMING,
323 ACTIVE,
324 PAUSING,
325 PAUSED
326 };
327
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800328 TrackBase(ThreadBase *thread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 const sp<Client>& client,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800330 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800331 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700332 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -0700334 const sp<IMemory>& sharedBuffer,
335 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800336 virtual ~TrackBase();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337
Glenn Kasten6a20b262012-02-02 10:56:47 -0800338 virtual status_t start(pid_t tid) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800339 virtual void stop() = 0;
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800340 sp<IMemory> getCblk() const { return mCblkMemory; }
Eric Laurent6c30a712009-08-10 23:22:32 -0700341 audio_track_cblk_t* cblk() const { return mCblk; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800342 int sessionId() const { return mSessionId; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343
344 protected:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800345 TrackBase(const TrackBase&);
346 TrackBase& operator = (const TrackBase&);
347
Glenn Kastenc2db1192012-02-22 10:47:35 -0800348 // AudioBufferProvider interface
349 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
351
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800352 audio_format_t format() const {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353 return mFormat;
354 }
355
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800356 int channelCount() const { return mChannelCount; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800357
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800358 uint32_t channelMask() const { return mChannelMask; }
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700359
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800360 int sampleRate() const; // FIXME inline after cblk sr moved
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361
362 void* getBuffer(uint32_t offset, uint32_t frames) const;
363
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800364 bool isStopped() const {
365 return mState == STOPPED;
366 }
367
368 bool isTerminated() const {
369 return mState == TERMINATED;
370 }
371
372 bool step();
373 void reset();
374
Glenn Kastendc3ac852012-01-25 15:28:08 -0800375 const wp<ThreadBase> mThread;
376 /*const*/ sp<Client> mClient; // see explanation at ~TrackBase() why not const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 sp<IMemory> mCblkMemory;
378 audio_track_cblk_t* mCblk;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800379 void* mBuffer;
380 void* mBufferEnd;
381 uint32_t mFrameCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800382 // we don't really need a lock for these
Glenn Kasten56356202012-01-26 13:39:18 -0800383 track_state mState;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800384 const audio_format_t mFormat;
Glenn Kasten35269822012-02-21 10:35:56 -0800385 bool mStepServerFailed;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800386 const int mSessionId;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700387 uint8_t mChannelCount;
388 uint32_t mChannelMask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 };
390
Eric Laurenta553c252009-07-17 12:17:14 -0700391 class ConfigEvent {
392 public:
393 ConfigEvent() : mEvent(0), mParam(0) {}
394
395 int mEvent;
396 int mParam;
397 };
398
Eric Laurent6dbdc402011-07-22 09:04:31 -0700399 class PMDeathRecipient : public IBinder::DeathRecipient {
400 public:
401 PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
402 virtual ~PMDeathRecipient() {}
403
404 // IBinder::DeathRecipient
405 virtual void binderDied(const wp<IBinder>& who);
406
407 private:
408 PMDeathRecipient(const PMDeathRecipient&);
409 PMDeathRecipient& operator = (const PMDeathRecipient&);
410
411 wp<ThreadBase> mThread;
412 };
413
Eric Laurent464d5b32011-06-17 21:29:58 -0700414 virtual status_t initCheck() const = 0;
Glenn Kastenefd511a2012-01-26 10:38:26 -0800415 type_t type() const { return mType; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800416 uint32_t sampleRate() const { return mSampleRate; }
417 int channelCount() const { return mChannelCount; }
418 audio_format_t format() const { return mFormat; }
419 size_t frameCount() const { return mFrameCount; }
Eric Laurenta553c252009-07-17 12:17:14 -0700420 void wakeUp() { mWaitWorkCV.broadcast(); }
Glenn Kasten761286f2012-01-06 08:39:38 -0800421 // Should be "virtual status_t requestExitAndWait()" and override same
422 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
Eric Laurenta553c252009-07-17 12:17:14 -0700423 void exit();
424 virtual bool checkForNewParameters_l() = 0;
425 virtual status_t setParameters(const String8& keyValuePairs);
426 virtual String8 getParameters(const String8& keys) = 0;
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700427 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700428 void sendConfigEvent(int event, int param = 0);
Eric Laurent8fce46a2009-08-04 09:45:33 -0700429 void sendConfigEvent_l(int event, int param = 0);
Eric Laurenta553c252009-07-17 12:17:14 -0700430 void processConfigEvents();
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800431 audio_io_handle_t id() const { return mId;}
Glenn Kasten0fccd352012-02-24 15:42:17 -0800432 bool standby() const { return mStandby; }
433 uint32_t device() const { return mDevice; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700434 virtual audio_stream_t* stream() = 0;
435
436 sp<EffectHandle> createEffect_l(
437 const sp<AudioFlinger::Client>& client,
438 const sp<IEffectClient>& effectClient,
439 int32_t priority,
440 int sessionId,
441 effect_descriptor_t *desc,
442 int *enabled,
443 status_t *status);
444 void disconnectEffect(const sp< EffectModule>& effect,
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700445 const wp<EffectHandle>& handle,
Glenn Kasten29441ff2012-02-03 10:32:24 -0800446 bool unpinIfLast);
Eric Laurent464d5b32011-06-17 21:29:58 -0700447
448 // return values for hasAudioSession (bit field)
449 enum effect_state {
450 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
451 // effect
452 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
453 // track
454 };
455
456 // get effect chain corresponding to session Id.
457 sp<EffectChain> getEffectChain(int sessionId);
458 // same as getEffectChain() but must be called with ThreadBase mutex locked
459 sp<EffectChain> getEffectChain_l(int sessionId);
460 // add an effect chain to the chain list (mEffectChains)
461 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
462 // remove an effect chain from the chain list (mEffectChains)
463 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
Glenn Kastenf2218b72012-02-24 15:42:48 -0800464 // lock all effect chains Mutexes. Must be called before releasing the
Eric Laurent464d5b32011-06-17 21:29:58 -0700465 // ThreadBase mutex before processing the mixer and effects. This guarantees the
466 // integrity of the chains during the process.
Glenn Kastenf2218b72012-02-24 15:42:48 -0800467 // Also sets the parameter 'effectChains' to current value of mEffectChains.
Glenn Kasten18db49a2012-03-12 16:29:55 -0700468 void lockEffectChains_l(Vector< sp<EffectChain> >& effectChains);
Eric Laurent464d5b32011-06-17 21:29:58 -0700469 // unlock effect chains after process
Glenn Kasten18db49a2012-03-12 16:29:55 -0700470 void unlockEffectChains(const Vector< sp<EffectChain> >& effectChains);
Eric Laurent464d5b32011-06-17 21:29:58 -0700471 // set audio mode to all effect chains
Glenn Kastenaccb1142012-01-04 11:00:47 -0800472 void setMode(audio_mode_t mode);
Eric Laurent464d5b32011-06-17 21:29:58 -0700473 // get effect module with corresponding ID on specified audio session
474 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
475 // add and effect module. Also creates the effect chain is none exists for
476 // the effects audio session
477 status_t addEffect_l(const sp< EffectModule>& effect);
478 // remove and effect module. Also removes the effect chain is this was the last
479 // effect
480 void removeEffect_l(const sp< EffectModule>& effect);
481 // detach all tracks connected to an auxiliary effect
482 virtual void detachAuxEffect_l(int effectId) {}
483 // returns either EFFECT_SESSION if effects on this audio session exist in one
484 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
485 virtual uint32_t hasAudioSession(int sessionId) = 0;
486 // the value returned by default implementation is not important as the
487 // strategy is only meaningful for PlaybackThread which implements this method
488 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
Eric Laurenta553c252009-07-17 12:17:14 -0700489
Eric Laurentf82fccd2011-07-27 19:49:51 -0700490 // suspend or restore effect according to the type of effect passed. a NULL
491 // type pointer means suspend all effects in the session
492 void setEffectSuspended(const effect_uuid_t *type,
493 bool suspend,
494 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
495 // check if some effects must be suspended/restored when an effect is enabled
496 // or disabled
Eric Laurent7fa1cee2011-10-19 11:44:54 -0700497 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurentf82fccd2011-07-27 19:49:51 -0700498 bool enabled,
499 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent7fa1cee2011-10-19 11:44:54 -0700500 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
501 bool enabled,
502 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
Eric Laurent2c817f52009-07-23 13:17:39 -0700503 mutable Mutex mLock;
504
Eric Laurenta553c252009-07-17 12:17:14 -0700505 protected:
506
Eric Laurentf82fccd2011-07-27 19:49:51 -0700507 // entry describing an effect being suspended in mSuspendedSessions keyed vector
508 class SuspendedSessionDesc : public RefBase {
509 public:
510 SuspendedSessionDesc() : mRefCount(0) {}
511
512 int mRefCount; // number of active suspend requests
513 effect_uuid_t mType; // effect type UUID
514 };
515
Eric Laurent6dbdc402011-07-22 09:04:31 -0700516 void acquireWakeLock();
517 void acquireWakeLock_l();
518 void releaseWakeLock();
519 void releaseWakeLock_l();
Eric Laurentf82fccd2011-07-27 19:49:51 -0700520 void setEffectSuspended_l(const effect_uuid_t *type,
521 bool suspend,
522 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
523 // updated mSuspendedSessions when an effect suspended or restored
524 void updateSuspendedSessions_l(const effect_uuid_t *type,
525 bool suspend,
526 int sessionId);
527 // check if some effects must be suspended when an effect chain is added
528 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
Eric Laurent6dbdc402011-07-22 09:04:31 -0700529
Glenn Kastenb3030f92012-03-09 12:07:30 -0800530 friend class AudioFlinger; // for mEffectChains
Eric Laurenta553c252009-07-17 12:17:14 -0700531
Glenn Kastenefd511a2012-01-26 10:38:26 -0800532 const type_t mType;
Glenn Kastenbf106572012-03-01 09:21:37 -0800533
534 // Used by parameters, config events, addTrack_l, exit
Eric Laurenta553c252009-07-17 12:17:14 -0700535 Condition mWaitWorkCV;
Glenn Kastenbf106572012-03-01 09:21:37 -0800536
Glenn Kastendc3ac852012-01-25 15:28:08 -0800537 const sp<AudioFlinger> mAudioFlinger;
Eric Laurenta553c252009-07-17 12:17:14 -0700538 uint32_t mSampleRate;
539 size_t mFrameCount;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700540 uint32_t mChannelMask;
Eric Laurentb0a01472010-05-14 05:45:46 -0700541 uint16_t mChannelCount;
Glenn Kastenfaf354d2012-01-11 09:48:27 -0800542 size_t mFrameSize;
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800543 audio_format_t mFormat;
Glenn Kastenbf106572012-03-01 09:21:37 -0800544
545 // Parameter sequence by client: binder thread calling setParameters():
546 // 1. Lock mLock
547 // 2. Append to mNewParameters
548 // 3. mWaitWorkCV.signal
549 // 4. mParamCond.waitRelative with timeout
550 // 5. read mParamStatus
551 // 6. mWaitWorkCV.signal
552 // 7. Unlock
553 //
554 // Parameter sequence by server: threadLoop calling checkForNewParameters_l():
555 // 1. Lock mLock
556 // 2. If there is an entry in mNewParameters proceed ...
557 // 2. Read first entry in mNewParameters
558 // 3. Process
559 // 4. Remove first entry from mNewParameters
560 // 5. Set mParamStatus
561 // 6. mParamCond.signal
562 // 7. mWaitWorkCV.wait with timeout (this is to avoid overwriting mParamStatus)
563 // 8. Unlock
Eric Laurenta553c252009-07-17 12:17:14 -0700564 Condition mParamCond;
Eric Laurent8fce46a2009-08-04 09:45:33 -0700565 Vector<String8> mNewParameters;
Eric Laurenta553c252009-07-17 12:17:14 -0700566 status_t mParamStatus;
Glenn Kastenbf106572012-03-01 09:21:37 -0800567
Glenn Kasten4b220f02011-12-13 11:50:00 -0800568 Vector<ConfigEvent> mConfigEvents;
Eric Laurenta553c252009-07-17 12:17:14 -0700569 bool mStandby;
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800570 const audio_io_handle_t mId;
Eric Laurent464d5b32011-06-17 21:29:58 -0700571 Vector< sp<EffectChain> > mEffectChains;
572 uint32_t mDevice; // output device for PlaybackThread
573 // input + output devices for RecordThread
Glenn Kasten86e33622012-02-28 12:30:08 -0800574 static const int kNameLength = 16; // prctl(PR_SET_NAME) limit
Eric Laurent6dbdc402011-07-22 09:04:31 -0700575 char mName[kNameLength];
576 sp<IPowerManager> mPowerManager;
577 sp<IBinder> mWakeLockToken;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800578 const sp<PMDeathRecipient> mDeathRecipient;
Eric Laurentf82fccd2011-07-27 19:49:51 -0700579 // list of suspended effects per session and per type. The first vector is
580 // keyed by session ID, the second by type UUID timeLow field
581 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > > mSuspendedSessions;
Eric Laurenta553c252009-07-17 12:17:14 -0700582 };
583
Glenn Kasten37733342012-02-08 12:36:25 -0800584 struct stream_type_t {
585 stream_type_t()
586 : volume(1.0f),
587 mute(false),
588 valid(true)
589 {
590 }
591 float volume;
592 bool mute;
593 bool valid;
594 };
595
Eric Laurenta553c252009-07-17 12:17:14 -0700596 // --- PlaybackThread ---
597 class PlaybackThread : public ThreadBase {
598 public:
599
Eric Laurent059b4be2009-11-09 23:32:22 -0800600 enum mixer_state {
Glenn Kastenf2218b72012-02-24 15:42:48 -0800601 MIXER_IDLE, // no active tracks
602 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
603 MIXER_TRACKS_READY // at least one active track, and at least one track has data
604 // standby mode does not have an enum value
605 // suspend by audio policy manager is orthogonal to mixer state
Eric Laurent059b4be2009-11-09 23:32:22 -0800606 };
607
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800608 // playback track
609 class Track : public TrackBase {
610 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800611 Track( PlaybackThread *thread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800612 const sp<Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800613 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800614 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800615 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700616 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -0700618 const sp<IMemory>& sharedBuffer,
619 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -0800620 virtual ~Track();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800621
622 void dump(char* buffer, size_t size);
Glenn Kasten6a20b262012-02-02 10:56:47 -0800623 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800624 virtual void stop();
625 void pause();
626
627 void flush();
628 void destroy();
629 void mute(bool);
Eric Laurenta553c252009-07-17 12:17:14 -0700630 int name() const {
631 return mName;
632 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800633
Glenn Kastenaae26c82012-02-08 12:35:35 -0800634 audio_stream_type_t streamType() const {
Eric Laurent4bc035a2009-05-22 09:18:15 -0700635 return mStreamType;
636 }
Eric Laurent65b65452010-06-01 23:49:17 -0700637 status_t attachAuxEffect(int EffectId);
638 void setAuxBuffer(int EffectId, int32_t *buffer);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800639 int32_t *auxBuffer() const { return mAuxBuffer; }
Eric Laurent65b65452010-06-01 23:49:17 -0700640 void setMainBuffer(int16_t *buffer) { mMainBuffer = buffer; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800641 int16_t *mainBuffer() const { return mMainBuffer; }
642 int auxEffectId() const { return mAuxEffectId; }
Eric Laurent4bc035a2009-05-22 09:18:15 -0700643
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800644 protected:
Glenn Kastenb3030f92012-03-09 12:07:30 -0800645 // for numerous
Eric Laurent2c817f52009-07-23 13:17:39 -0700646 friend class PlaybackThread;
647 friend class MixerThread;
648 friend class DirectOutputThread;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800649
650 Track(const Track&);
651 Track& operator = (const Track&);
652
Glenn Kastenc2db1192012-02-22 10:47:35 -0800653 // AudioBufferProvider interface
654 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
655 // releaseBuffer() not overridden
656
John Grossmand8cf2962012-02-08 16:37:41 -0800657 virtual uint32_t framesReady() const;
658
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800659 bool isMuted() const { return mMute; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800660 bool isPausing() const {
661 return mState == PAUSING;
662 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800663 bool isPaused() const {
664 return mState == PAUSED;
665 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800666 bool isReady() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800667 void setPaused() { mState = PAUSED; }
668 void reset();
669
Eric Laurent49f02be2009-11-19 09:00:56 -0800670 bool isOutputTrack() const {
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700671 return (mStreamType == AUDIO_STREAM_CNT);
Eric Laurent49f02be2009-11-19 09:00:56 -0800672 }
673
Glenn Kastenb3030f92012-03-09 12:07:30 -0800674 public:
John Grossmand8cf2962012-02-08 16:37:41 -0800675 virtual bool isTimedTrack() const { return false; }
Glenn Kastenb3030f92012-03-09 12:07:30 -0800676 protected:
John Grossmand8cf2962012-02-08 16:37:41 -0800677
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800678 // we don't really need a lock for these
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800679 volatile bool mMute;
680 // FILLED state is used for suppressing volume ramp at begin of playing
681 enum {FS_FILLING, FS_FILLED, FS_ACTIVE};
682 mutable uint8_t mFillingUpStatus;
683 int8_t mRetryCount;
Glenn Kastene9b2b3b2012-03-19 11:14:37 -0700684 const sp<IMemory> mSharedBuffer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800685 bool mResetDone;
Glenn Kastene9b2b3b2012-03-19 11:14:37 -0700686 const audio_stream_type_t mStreamType;
Eric Laurenta553c252009-07-17 12:17:14 -0700687 int mName;
Eric Laurent65b65452010-06-01 23:49:17 -0700688 int16_t *mMainBuffer;
689 int32_t *mAuxBuffer;
690 int mAuxEffectId;
Eric Laurenta92ebfa2010-08-31 13:50:07 -0700691 bool mHasVolumeController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800692 }; // end of Track
693
John Grossmand8cf2962012-02-08 16:37:41 -0800694 class TimedTrack : public Track {
695 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800696 static sp<TimedTrack> create(PlaybackThread *thread,
John Grossmand8cf2962012-02-08 16:37:41 -0800697 const sp<Client>& client,
698 audio_stream_type_t streamType,
699 uint32_t sampleRate,
700 audio_format_t format,
701 uint32_t channelMask,
702 int frameCount,
703 const sp<IMemory>& sharedBuffer,
704 int sessionId);
705 ~TimedTrack();
706
707 class TimedBuffer {
708 public:
709 TimedBuffer();
710 TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
711 const sp<IMemory>& buffer() const { return mBuffer; }
712 int64_t pts() const { return mPTS; }
713 int position() const { return mPosition; }
714 void setPosition(int pos) { mPosition = pos; }
715 private:
716 sp<IMemory> mBuffer;
717 int64_t mPTS;
718 int mPosition;
719 };
720
721 virtual bool isTimedTrack() const { return true; }
722
723 virtual uint32_t framesReady() const;
724
Glenn Kastenc2db1192012-02-22 10:47:35 -0800725 // AudioBufferProvider interface
726 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
John Grossmand8cf2962012-02-08 16:37:41 -0800727 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kastenc2db1192012-02-22 10:47:35 -0800728
John Grossmand8cf2962012-02-08 16:37:41 -0800729 void timedYieldSamples(AudioBufferProvider::Buffer* buffer);
730 void timedYieldSilence(uint32_t numFrames,
731 AudioBufferProvider::Buffer* buffer);
732
733 status_t allocateTimedBuffer(size_t size,
734 sp<IMemory>* buffer);
735 status_t queueTimedBuffer(const sp<IMemory>& buffer,
736 int64_t pts);
737 status_t setMediaTimeTransform(const LinearTransform& xform,
738 TimedAudioTrack::TargetTimeline target);
739 void trimTimedBufferQueue_l();
740
741 private:
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800742 TimedTrack(PlaybackThread *thread,
John Grossmand8cf2962012-02-08 16:37:41 -0800743 const sp<Client>& client,
744 audio_stream_type_t streamType,
745 uint32_t sampleRate,
746 audio_format_t format,
747 uint32_t channelMask,
748 int frameCount,
749 const sp<IMemory>& sharedBuffer,
750 int sessionId);
751
752 uint64_t mLocalTimeFreq;
753 LinearTransform mLocalTimeToSampleTransform;
754 sp<MemoryDealer> mTimedMemoryDealer;
755 Vector<TimedBuffer> mTimedBufferQueue;
756 uint8_t* mTimedSilenceBuffer;
757 uint32_t mTimedSilenceBufferSize;
758 mutable Mutex mTimedBufferQueueLock;
759 bool mTimedAudioOutputOnTime;
760 CCHelper mCCHelper;
761
762 Mutex mMediaTimeTransformLock;
763 LinearTransform mMediaTimeTransform;
764 bool mMediaTimeTransformValid;
765 TimedAudioTrack::TargetTimeline mMediaTimeTransformTarget;
766 };
767
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800768
769 // playback track
770 class OutputTrack : public Track {
771 public:
Eric Laurenta553c252009-07-17 12:17:14 -0700772
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800773 class Buffer: public AudioBufferProvider::Buffer {
774 public:
775 int16_t *mBuffer;
776 };
Eric Laurenta553c252009-07-17 12:17:14 -0700777
Glenn Kasten685c9ce2012-01-20 13:32:16 -0800778 OutputTrack(PlaybackThread *thread,
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800779 DuplicatingThread *sourceThread,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800780 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800781 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700782 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800783 int frameCount);
Glenn Kastenb1631382012-01-30 14:54:39 -0800784 virtual ~OutputTrack();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800785
Glenn Kasten6a20b262012-02-02 10:56:47 -0800786 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800787 virtual void stop();
Eric Laurenta553c252009-07-17 12:17:14 -0700788 bool write(int16_t* data, uint32_t frames);
Glenn Kasten7d3be3a2012-01-26 10:53:32 -0800789 bool bufferQueueEmpty() const { return mBufferQueue.size() == 0; }
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800790 bool isActive() const { return mActive; }
791 const wp<ThreadBase>& thread() const { return mThread; }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800792
793 private:
794
Glenn Kasten34f9f8b2012-01-20 17:00:00 -0800795 enum {
796 NO_MORE_BUFFERS = 0x80000001, // same in AudioTrack.h, ok to be different value
797 };
798
Eric Laurenta553c252009-07-17 12:17:14 -0700799 status_t obtainBuffer(AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800800 void clearBufferQueue();
Eric Laurenta553c252009-07-17 12:17:14 -0700801
802 // Maximum number of pending buffers allocated by OutputTrack::write()
Eric Laurent8ac9f8d2009-12-18 05:47:48 -0800803 static const uint8_t kMaxOverFlowBuffers = 10;
Eric Laurenta553c252009-07-17 12:17:14 -0700804
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800805 Vector < Buffer* > mBufferQueue;
806 AudioBufferProvider::Buffer mOutBuffer;
Eric Laurenta553c252009-07-17 12:17:14 -0700807 bool mActive;
Glenn Kastendc3ac852012-01-25 15:28:08 -0800808 DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
Eric Laurenta553c252009-07-17 12:17:14 -0700809 }; // end of OutputTrack
810
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800811 PlaybackThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
812 audio_io_handle_t id, uint32_t device, type_t type);
Eric Laurenta553c252009-07-17 12:17:14 -0700813 virtual ~PlaybackThread();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800814
Glenn Kasten8d8557a2012-03-09 10:30:26 -0800815 status_t dump(int fd, const Vector<String16>& args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800816
817 // Thread virtuals
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800818 virtual status_t readyToRun();
Glenn Kasten67cb3122012-03-01 17:10:56 -0800819 virtual bool threadLoop();
820
821 // RefBase
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800822 virtual void onFirstRef();
823
Glenn Kasten67cb3122012-03-01 17:10:56 -0800824protected:
825 // Code snippets that were lifted up out of threadLoop()
826 virtual void threadLoop_mix() = 0;
827 virtual void threadLoop_sleepTime() = 0;
828 virtual void threadLoop_write();
829 virtual void threadLoop_standby();
830
Glenn Kasten761415b2012-03-06 11:23:32 -0800831 // prepareTracks_l reads and writes mActiveTracks, and also returns the
832 // pending set of tracks to remove via Vector 'tracksToRemove'. The caller is
833 // responsible for clearing or destroying this Vector later on, when it
834 // is safe to do so. That will drop the final ref count and destroy the tracks.
835 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0;
Glenn Kasten67cb3122012-03-01 17:10:56 -0800836
837public:
838
Glenn Kastenc434c902011-12-13 11:53:26 -0800839 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent464d5b32011-06-17 21:29:58 -0700840
Glenn Kasten8d8557a2012-03-09 10:30:26 -0800841 // return estimated latency in milliseconds, as reported by HAL
842 uint32_t latency() const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800843
Glenn Kasten8b02b992012-01-09 09:40:36 -0800844 void setMasterVolume(float value);
845 void setMasterMute(bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800846
Glenn Kasten8b02b992012-01-09 09:40:36 -0800847 void setStreamVolume(audio_stream_type_t stream, float value);
848 void setStreamMute(audio_stream_type_t stream, bool muted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800849
Glenn Kasten8b02b992012-01-09 09:40:36 -0800850 float streamVolume(audio_stream_type_t stream) const;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800851
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700852 sp<Track> createTrack_l(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853 const sp<AudioFlinger::Client>& client,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800854 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800855 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800856 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700857 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800858 int frameCount,
859 const sp<IMemory>& sharedBuffer,
Eric Laurent65b65452010-06-01 23:49:17 -0700860 int sessionId,
John Grossmand8cf2962012-02-08 16:37:41 -0800861 bool isTimed,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800862 status_t *status);
Eric Laurenta553c252009-07-17 12:17:14 -0700863
Glenn Kasten5b0135e2012-01-26 09:46:34 -0800864 AudioStreamOut* getOutput() const;
Eric Laurent828b9772011-08-07 16:32:26 -0700865 AudioStreamOut* clearOutput();
866 virtual audio_stream_t* stream();
Eric Laurenta553c252009-07-17 12:17:14 -0700867
Eric Laurentd5603c12009-08-06 08:49:39 -0700868 void suspend() { mSuspended++; }
Glenn Kastene70583e2012-02-29 07:07:30 -0800869 void restore() { if (mSuspended > 0) mSuspended--; }
870 bool isSuspended() const { return (mSuspended > 0); }
Eric Laurenta553c252009-07-17 12:17:14 -0700871 virtual String8 getParameters(const String8& keys);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700872 virtual void audioConfigChanged_l(int event, int param = 0);
Glenn Kasten8d8557a2012-03-09 10:30:26 -0800873 status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames);
Glenn Kasteneabd94a2012-02-02 14:06:11 -0800874 int16_t *mixBuffer() const { return mMixBuffer; };
Eric Laurent65b65452010-06-01 23:49:17 -0700875
Eric Laurent464d5b32011-06-17 21:29:58 -0700876 virtual void detachAuxEffect_l(int effectId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700877 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
878 int EffectId);
879 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
880 int EffectId);
Eric Laurenta553c252009-07-17 12:17:14 -0700881
Eric Laurent464d5b32011-06-17 21:29:58 -0700882 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
883 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
884 virtual uint32_t hasAudioSession(int sessionId);
885 virtual uint32_t getStrategyForSession_l(int sessionId);
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700886
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800887 void setStreamValid(audio_stream_type_t streamType, bool valid);
Eric Laurent05ce0942011-08-30 10:18:54 -0700888
Eric Laurent2c817f52009-07-23 13:17:39 -0700889 protected:
Eric Laurent2c817f52009-07-23 13:17:39 -0700890 int16_t* mMixBuffer;
Glenn Kastene70583e2012-02-29 07:07:30 -0800891 uint32_t mSuspended; // suspend count, > 0 means suspended
Eric Laurent2c817f52009-07-23 13:17:39 -0700892 int mBytesWritten;
Glenn Kastene6f8a422011-12-13 11:47:54 -0800893 private:
Glenn Kastenb3db2132012-01-19 08:59:58 -0800894 // mMasterMute is in both PlaybackThread and in AudioFlinger. When a
895 // PlaybackThread needs to find out if master-muted, it checks it's local
896 // copy rather than the one in AudioFlinger. This optimization saves a lock.
Eric Laurent2c817f52009-07-23 13:17:39 -0700897 bool mMasterMute;
Glenn Kasten8b02b992012-01-09 09:40:36 -0800898 void setMasterMute_l(bool muted) { mMasterMute = muted; }
Glenn Kastene6f8a422011-12-13 11:47:54 -0800899 protected:
Eric Laurent2c817f52009-07-23 13:17:39 -0700900 SortedVector< wp<Track> > mActiveTracks;
901
Glenn Kasten76b6c0c2012-02-14 08:52:15 -0800902 // Allocate a track name. Returns name >= 0 if successful, -1 on failure.
Eric Laurent62443f52009-10-05 20:29:18 -0700903 virtual int getTrackName_l() = 0;
904 virtual void deleteTrackName_l(int name) = 0;
Eric Laurent44331692011-12-05 09:47:19 -0800905 virtual uint32_t activeSleepTimeUs();
Eric Laurent059b4be2009-11-09 23:32:22 -0800906 virtual uint32_t idleSleepTimeUs() = 0;
Eric Laurent8448a792010-08-18 18:13:17 -0700907 virtual uint32_t suspendSleepTimeUs() = 0;
Eric Laurent62443f52009-10-05 20:29:18 -0700908
Glenn Kasten2521a012012-02-24 07:21:48 -0800909 // Code snippets that are temporarily lifted up out of threadLoop() until the merge
910 void checkSilentMode_l();
911
Glenn Kasten08d2c042012-03-06 11:28:04 -0800912 // Non-trivial for DUPLICATING only
913 virtual void saveOutputTracks() { }
914 virtual void clearOutputTracks() { }
915
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800916 // Cache various calculated values, at threadLoop() entry and after a parameter change
917 virtual void cacheParameters_l();
918
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800919 private:
920
Glenn Kastenb3030f92012-03-09 12:07:30 -0800921 friend class AudioFlinger; // for numerous
Eric Laurenta553c252009-07-17 12:17:14 -0700922
923 PlaybackThread(const Client&);
924 PlaybackThread& operator = (const PlaybackThread&);
925
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700926 status_t addTrack_l(const sp<Track>& track);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700927 void destroyTrack_l(const sp<Track>& track);
Eric Laurent90681d62011-05-09 12:09:06 -0700928 void removeTrack_l(const sp<Track>& track);
Eric Laurent62443f52009-10-05 20:29:18 -0700929
Eric Laurenta553c252009-07-17 12:17:14 -0700930 void readOutputParameters();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800931
Eric Laurenta553c252009-07-17 12:17:14 -0700932 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800933 status_t dumpTracks(int fd, const Vector<String16>& args);
Eric Laurenta553c252009-07-17 12:17:14 -0700934
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800935 SortedVector< sp<Track> > mTracks;
Glenn Kasten6e987a42012-01-06 08:40:01 -0800936 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by DuplicatingThread
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700937 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
Glenn Kasten5b0135e2012-01-26 09:46:34 -0800938 AudioStreamOut *mOutput;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800939 float mMasterVolume;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800940 nsecs_t mLastWriteTime;
941 int mNumWrites;
942 int mNumDelayedWrites;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800943 bool mInWrite;
Glenn Kasten67cb3122012-03-01 17:10:56 -0800944
945 // FIXME rename these former local variables of threadLoop to standard "m" names
946 nsecs_t standbyTime;
947 size_t mixBufferSize;
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800948
949 // cached copies of activeSleepTimeUs() and idleSleepTimeUs() made by cacheParameters_l()
Glenn Kasten67cb3122012-03-01 17:10:56 -0800950 uint32_t activeSleepTime;
951 uint32_t idleSleepTime;
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800952
Glenn Kasten67cb3122012-03-01 17:10:56 -0800953 uint32_t sleepTime;
Glenn Kastena13446a2012-03-08 07:47:15 -0800954
955 // mixer status returned by prepareTracks_l()
956 mixer_state mMixerStatus; // current cycle
957 mixer_state mPrevMixerStatus; // previous cycle
Glenn Kasten67cb3122012-03-01 17:10:56 -0800958
959 // FIXME move these declarations into the specific sub-class that needs them
960 // MIXER only
961 bool longStandbyExit;
962 uint32_t sleepTimeShift;
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800963
964 // same as AudioFlinger::mStandbyTimeInNsecs except for DIRECT which uses a shorter value
Glenn Kasten67cb3122012-03-01 17:10:56 -0800965 nsecs_t standbyDelay;
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800966
967 // MIXER only
968 nsecs_t maxPeriod;
969
Glenn Kasten67cb3122012-03-01 17:10:56 -0800970 // DUPLICATING only
Glenn Kasten67cb3122012-03-01 17:10:56 -0800971 uint32_t writeFrames;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800972 };
973
Eric Laurenta553c252009-07-17 12:17:14 -0700974 class MixerThread : public PlaybackThread {
975 public:
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700976 MixerThread (const sp<AudioFlinger>& audioFlinger,
Dima Zavin31f188892011-04-18 16:57:27 -0700977 AudioStreamOut* output,
Glenn Kasten39d00cb2012-01-17 11:09:42 -0800978 audio_io_handle_t id,
Glenn Kastenefd511a2012-01-26 10:38:26 -0800979 uint32_t device,
980 type_t type = MIXER);
Eric Laurenta553c252009-07-17 12:17:14 -0700981 virtual ~MixerThread();
982
983 // Thread virtuals
Eric Laurenta553c252009-07-17 12:17:14 -0700984
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800985 void invalidateTracks(audio_stream_type_t streamType);
Eric Laurenta553c252009-07-17 12:17:14 -0700986 virtual bool checkForNewParameters_l();
987 virtual status_t dumpInternals(int fd, const Vector<String16>& args);
988
989 protected:
Glenn Kasten67cb3122012-03-01 17:10:56 -0800990 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
Eric Laurent62443f52009-10-05 20:29:18 -0700991 virtual int getTrackName_l();
992 virtual void deleteTrackName_l(int name);
Eric Laurent059b4be2009-11-09 23:32:22 -0800993 virtual uint32_t idleSleepTimeUs();
Eric Laurent8448a792010-08-18 18:13:17 -0700994 virtual uint32_t suspendSleepTimeUs();
Glenn Kasten0fe52c82012-02-24 14:59:21 -0800995 virtual void cacheParameters_l();
Eric Laurenta553c252009-07-17 12:17:14 -0700996
Glenn Kasten67cb3122012-03-01 17:10:56 -0800997 // threadLoop snippets
998 virtual void threadLoop_mix();
999 virtual void threadLoop_sleepTime();
1000
Eric Laurent71c44962012-01-17 19:20:12 -08001001 AudioMixer* mAudioMixer;
Eric Laurenta553c252009-07-17 12:17:14 -07001002 };
1003
1004 class DirectOutputThread : public PlaybackThread {
1005 public:
1006
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001007 DirectOutputThread (const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
1008 audio_io_handle_t id, uint32_t device);
Glenn Kastenb1631382012-01-30 14:54:39 -08001009 virtual ~DirectOutputThread();
Eric Laurenta553c252009-07-17 12:17:14 -07001010
1011 // Thread virtuals
Eric Laurenta553c252009-07-17 12:17:14 -07001012
Eric Laurent62443f52009-10-05 20:29:18 -07001013 virtual bool checkForNewParameters_l();
1014
1015 protected:
Eric Laurenta553c252009-07-17 12:17:14 -07001016 virtual int getTrackName_l();
1017 virtual void deleteTrackName_l(int name);
Eric Laurent059b4be2009-11-09 23:32:22 -08001018 virtual uint32_t activeSleepTimeUs();
1019 virtual uint32_t idleSleepTimeUs();
Eric Laurent8448a792010-08-18 18:13:17 -07001020 virtual uint32_t suspendSleepTimeUs();
Glenn Kasten0fe52c82012-02-24 14:59:21 -08001021 virtual void cacheParameters_l();
Eric Laurenta553c252009-07-17 12:17:14 -07001022
Glenn Kasten67cb3122012-03-01 17:10:56 -08001023 // threadLoop snippets
Glenn Kasten761415b2012-03-06 11:23:32 -08001024 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
Glenn Kasten67cb3122012-03-01 17:10:56 -08001025 virtual void threadLoop_mix();
1026 virtual void threadLoop_sleepTime();
Eric Laurent65b65452010-06-01 23:49:17 -07001027
Glenn Kastenb3db2132012-01-19 08:59:58 -08001028 // volumes last sent to audio HAL with stream->set_volume()
1029 // FIXME use standard representation and names
Eric Laurent65b65452010-06-01 23:49:17 -07001030 float mLeftVolFloat;
1031 float mRightVolFloat;
1032 uint16_t mLeftVolShort;
1033 uint16_t mRightVolShort;
Glenn Kasten67cb3122012-03-01 17:10:56 -08001034
1035 // FIXME rename these former local variables of threadLoop to standard names
1036 // next 3 were local to the while !exitingPending loop
1037 bool rampVolume;
1038 uint16_t leftVol;
1039 uint16_t rightVol;
Glenn Kastene0127832012-03-06 15:52:35 -08001040
1041private:
Glenn Kastenb8f96762012-03-07 17:05:59 -08001042 // prepareTracks_l() tells threadLoop_mix() the name of the single active track
1043 sp<Track> mActiveTrack;
Eric Laurenta553c252009-07-17 12:17:14 -07001044 };
1045
1046 class DuplicatingThread : public MixerThread {
1047 public:
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001048 DuplicatingThread (const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
1049 audio_io_handle_t id);
Glenn Kastenb1631382012-01-30 14:54:39 -08001050 virtual ~DuplicatingThread();
Eric Laurenta553c252009-07-17 12:17:14 -07001051
1052 // Thread virtuals
Eric Laurenta553c252009-07-17 12:17:14 -07001053 void addOutputTrack(MixerThread* thread);
1054 void removeOutputTrack(MixerThread* thread);
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08001055 uint32_t waitTimeMs() { return mWaitTimeMs; }
1056 protected:
1057 virtual uint32_t activeSleepTimeUs();
Eric Laurenta553c252009-07-17 12:17:14 -07001058
1059 private:
Glenn Kasten18db49a2012-03-12 16:29:55 -07001060 bool outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks);
Glenn Kasten67cb3122012-03-01 17:10:56 -08001061 protected:
1062 // threadLoop snippets
1063 virtual void threadLoop_mix();
1064 virtual void threadLoop_sleepTime();
1065 virtual void threadLoop_write();
1066 virtual void threadLoop_standby();
Glenn Kasten0fe52c82012-02-24 14:59:21 -08001067 virtual void cacheParameters_l();
Glenn Kasten2bad67f2012-03-06 11:24:48 -08001068
Glenn Kasten0fe52c82012-02-24 14:59:21 -08001069 private:
Glenn Kasten2bad67f2012-03-06 11:24:48 -08001070 // called from threadLoop, addOutputTrack, removeOutputTrack
1071 virtual void updateWaitTime_l();
Glenn Kasten0fe52c82012-02-24 14:59:21 -08001072 protected:
Glenn Kasten08d2c042012-03-06 11:28:04 -08001073 virtual void saveOutputTracks();
1074 virtual void clearOutputTracks();
Glenn Kasten67cb3122012-03-01 17:10:56 -08001075 private:
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08001076
Eric Laurent8ac9f8d2009-12-18 05:47:48 -08001077 uint32_t mWaitTimeMs;
Glenn Kasten08d2c042012-03-06 11:28:04 -08001078 SortedVector < sp<OutputTrack> > outputTracks;
1079 SortedVector < sp<OutputTrack> > mOutputTracks;
Eric Laurenta553c252009-07-17 12:17:14 -07001080 };
1081
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001082 PlaybackThread *checkPlaybackThread_l(audio_io_handle_t output) const;
1083 MixerThread *checkMixerThread_l(audio_io_handle_t output) const;
1084 RecordThread *checkRecordThread_l(audio_io_handle_t input) const;
Glenn Kasten8b02b992012-01-09 09:40:36 -08001085 // no range check, AudioFlinger::mLock held
1086 bool streamMute_l(audio_stream_type_t stream) const
1087 { return mStreamTypes[stream].mute; }
1088 // no range check, doesn't check per-thread stream volume, AudioFlinger::mLock held
1089 float streamVolume_l(audio_stream_type_t stream) const
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001090 { return mStreamTypes[stream].volume; }
Glenn Kastenffed04a2012-03-01 09:14:51 -08001091 void audioConfigChanged_l(int event, audio_io_handle_t ioHandle, const void *param2);
Eric Laurenta553c252009-07-17 12:17:14 -07001092
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001093 // allocate an audio_io_handle_t, session ID, or effect ID
Eric Laurent464d5b32011-06-17 21:29:58 -07001094 uint32_t nextUniqueId();
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001095
Eric Laurentf82fccd2011-07-27 19:49:51 -07001096 status_t moveEffectChain_l(int sessionId,
Glenn Kasten7d3be3a2012-01-26 10:53:32 -08001097 PlaybackThread *srcThread,
1098 PlaybackThread *dstThread,
Eric Laurent493941b2010-07-28 01:32:47 -07001099 bool reRegister);
Glenn Kasten0fccd352012-02-24 15:42:17 -08001100 // return thread associated with primary hardware device, or NULL
1101 PlaybackThread *primaryPlaybackThread_l() const;
1102 uint32_t primaryOutputDevice_l() const;
Eric Laurent65b65452010-06-01 23:49:17 -07001103
Glenn Kastenb3db2132012-01-19 08:59:58 -08001104 // server side of the client's IAudioTrack
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001105 class TrackHandle : public android::BnAudioTrack {
1106 public:
Eric Laurenta553c252009-07-17 12:17:14 -07001107 TrackHandle(const sp<PlaybackThread::Track>& track);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001108 virtual ~TrackHandle();
Glenn Kasten0ae4d972012-01-26 13:40:12 -08001109 virtual sp<IMemory> getCblk() const;
Glenn Kasten6a20b262012-02-02 10:56:47 -08001110 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001111 virtual void stop();
1112 virtual void flush();
1113 virtual void mute(bool);
1114 virtual void pause();
Eric Laurent65b65452010-06-01 23:49:17 -07001115 virtual status_t attachAuxEffect(int effectId);
John Grossmand8cf2962012-02-08 16:37:41 -08001116 virtual status_t allocateTimedBuffer(size_t size,
1117 sp<IMemory>* buffer);
1118 virtual status_t queueTimedBuffer(const sp<IMemory>& buffer,
1119 int64_t pts);
1120 virtual status_t setMediaTimeTransform(const LinearTransform& xform,
1121 int target);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001122 virtual status_t onTransact(
1123 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1124 private:
Glenn Kastendc3ac852012-01-25 15:28:08 -08001125 const sp<PlaybackThread::Track> mTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001126 };
1127
Eric Laurentb9481d82009-09-17 05:12:56 -07001128 void removeClient_l(pid_t pid);
Eric Laurent4f0f17d2010-05-12 02:05:53 -07001129 void removeNotificationClient(pid_t pid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001130
1131
Eric Laurenta553c252009-07-17 12:17:14 -07001132 // record thread
1133 class RecordThread : public ThreadBase, public AudioBufferProvider
1134 {
1135 public:
1136
1137 // record track
1138 class RecordTrack : public TrackBase {
1139 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -08001140 RecordTrack(RecordThread *thread,
Eric Laurenta553c252009-07-17 12:17:14 -07001141 const sp<Client>& client,
1142 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001143 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001144 uint32_t channelMask,
Eric Laurenta553c252009-07-17 12:17:14 -07001145 int frameCount,
Eric Laurent65b65452010-06-01 23:49:17 -07001146 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001147 virtual ~RecordTrack();
Eric Laurenta553c252009-07-17 12:17:14 -07001148
Glenn Kasten6a20b262012-02-02 10:56:47 -08001149 virtual status_t start(pid_t tid);
Eric Laurenta553c252009-07-17 12:17:14 -07001150 virtual void stop();
1151
1152 bool overflow() { bool tmp = mOverflow; mOverflow = false; return tmp; }
1153 bool setOverflow() { bool tmp = mOverflow; mOverflow = true; return tmp; }
1154
Eric Laurent3fdb1262009-11-07 00:01:32 -08001155 void dump(char* buffer, size_t size);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001156
Eric Laurenta553c252009-07-17 12:17:14 -07001157 private:
Glenn Kastenb3030f92012-03-09 12:07:30 -08001158 friend class AudioFlinger; // for mState
Eric Laurenta553c252009-07-17 12:17:14 -07001159
1160 RecordTrack(const RecordTrack&);
1161 RecordTrack& operator = (const RecordTrack&);
1162
Glenn Kastenc2db1192012-02-22 10:47:35 -08001163 // AudioBufferProvider interface
1164 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
1165 // releaseBuffer() not overridden
Eric Laurenta553c252009-07-17 12:17:14 -07001166
1167 bool mOverflow;
1168 };
1169
1170
1171 RecordThread(const sp<AudioFlinger>& audioFlinger,
Dima Zavin31f188892011-04-18 16:57:27 -07001172 AudioStreamIn *input,
Eric Laurenta553c252009-07-17 12:17:14 -07001173 uint32_t sampleRate,
Eric Laurent49f02be2009-11-19 09:00:56 -08001174 uint32_t channels,
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001175 audio_io_handle_t id,
Eric Laurent464d5b32011-06-17 21:29:58 -07001176 uint32_t device);
Glenn Kastenb1631382012-01-30 14:54:39 -08001177 virtual ~RecordThread();
Eric Laurenta553c252009-07-17 12:17:14 -07001178
Glenn Kasten67cb3122012-03-01 17:10:56 -08001179 // Thread
Eric Laurenta553c252009-07-17 12:17:14 -07001180 virtual bool threadLoop();
Eric Laurent828b9772011-08-07 16:32:26 -07001181 virtual status_t readyToRun();
Glenn Kasten67cb3122012-03-01 17:10:56 -08001182
1183 // RefBase
Eric Laurenta553c252009-07-17 12:17:14 -07001184 virtual void onFirstRef();
1185
Glenn Kastenc434c902011-12-13 11:53:26 -08001186 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
Eric Laurent464d5b32011-06-17 21:29:58 -07001187 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
1188 const sp<AudioFlinger::Client>& client,
1189 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -08001190 audio_format_t format,
Eric Laurent464d5b32011-06-17 21:29:58 -07001191 int channelMask,
1192 int frameCount,
Eric Laurent464d5b32011-06-17 21:29:58 -07001193 int sessionId,
1194 status_t *status);
1195
Eric Laurenta553c252009-07-17 12:17:14 -07001196 status_t start(RecordTrack* recordTrack);
Glenn Kasten6a20b262012-02-02 10:56:47 -08001197 status_t start(RecordTrack* recordTrack, pid_t tid);
Eric Laurenta553c252009-07-17 12:17:14 -07001198 void stop(RecordTrack* recordTrack);
1199 status_t dump(int fd, const Vector<String16>& args);
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001200 AudioStreamIn* getInput() const;
Eric Laurent828b9772011-08-07 16:32:26 -07001201 AudioStreamIn* clearInput();
1202 virtual audio_stream_t* stream();
Eric Laurenta553c252009-07-17 12:17:14 -07001203
Glenn Kastenc2db1192012-02-22 10:47:35 -08001204 // AudioBufferProvider interface
1205 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
Eric Laurenta553c252009-07-17 12:17:14 -07001206 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
Glenn Kastenc2db1192012-02-22 10:47:35 -08001207
Eric Laurenta553c252009-07-17 12:17:14 -07001208 virtual bool checkForNewParameters_l();
1209 virtual String8 getParameters(const String8& keys);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001210 virtual void audioConfigChanged_l(int event, int param = 0);
Eric Laurenta553c252009-07-17 12:17:14 -07001211 void readInputParameters();
Eric Laurent47d0a922010-02-26 02:47:27 -08001212 virtual unsigned int getInputFramesLost();
Eric Laurenta553c252009-07-17 12:17:14 -07001213
Eric Laurent464d5b32011-06-17 21:29:58 -07001214 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
1215 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
1216 virtual uint32_t hasAudioSession(int sessionId);
Eric Laurent6639b552011-08-01 09:52:20 -07001217 RecordTrack* track();
Eric Laurent464d5b32011-06-17 21:29:58 -07001218
Eric Laurenta553c252009-07-17 12:17:14 -07001219 private:
1220 RecordThread();
Dima Zavin31f188892011-04-18 16:57:27 -07001221 AudioStreamIn *mInput;
Eric Laurent464d5b32011-06-17 21:29:58 -07001222 RecordTrack* mTrack;
Eric Laurenta553c252009-07-17 12:17:14 -07001223 sp<RecordTrack> mActiveTrack;
1224 Condition mStartStopCond;
1225 AudioResampler *mResampler;
1226 int32_t *mRsmpOutBuffer;
1227 int16_t *mRsmpInBuffer;
1228 size_t mRsmpInIndex;
1229 size_t mInputBytes;
Glenn Kastendc3ac852012-01-25 15:28:08 -08001230 const int mReqChannelCount;
1231 const uint32_t mReqSampleRate;
Eric Laurent9cc489a2009-12-05 05:20:01 -08001232 ssize_t mBytesRead;
Eric Laurenta553c252009-07-17 12:17:14 -07001233 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001234
Glenn Kastenb3db2132012-01-19 08:59:58 -08001235 // server side of the client's IAudioRecord
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001236 class RecordHandle : public android::BnAudioRecord {
1237 public:
Eric Laurenta553c252009-07-17 12:17:14 -07001238 RecordHandle(const sp<RecordThread::RecordTrack>& recordTrack);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001239 virtual ~RecordHandle();
Glenn Kasten0ae4d972012-01-26 13:40:12 -08001240 virtual sp<IMemory> getCblk() const;
Glenn Kasten6a20b262012-02-02 10:56:47 -08001241 virtual status_t start(pid_t tid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001242 virtual void stop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001243 virtual status_t onTransact(
1244 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
1245 private:
Glenn Kastendc3ac852012-01-25 15:28:08 -08001246 const sp<RecordThread::RecordTrack> mRecordTrack;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001247 };
1248
Eric Laurent65b65452010-06-01 23:49:17 -07001249 //--- Audio Effect Management
1250
1251 // EffectModule and EffectChain classes both have their own mutex to protect
1252 // state changes or resource modifications. Always respect the following order
1253 // if multiple mutexes must be acquired to avoid cross deadlock:
1254 // AudioFlinger -> ThreadBase -> EffectChain -> EffectModule
1255
1256 // The EffectModule class is a wrapper object controlling the effect engine implementation
1257 // in the effect library. It prevents concurrent calls to process() and command() functions
1258 // from different client threads. It keeps a list of EffectHandle objects corresponding
1259 // to all client applications using this effect and notifies applications of effect state,
1260 // control or parameter changes. It manages the activation state machine to send appropriate
1261 // reset, enable, disable commands to effect engine and provide volume
1262 // ramping when effects are activated/deactivated.
1263 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
1264 // the attached track(s) to accumulate their auxiliary channel.
1265 class EffectModule: public RefBase {
1266 public:
Glenn Kasten685c9ce2012-01-20 13:32:16 -08001267 EffectModule(ThreadBase *thread,
Eric Laurent65b65452010-06-01 23:49:17 -07001268 const wp<AudioFlinger::EffectChain>& chain,
1269 effect_descriptor_t *desc,
1270 int id,
1271 int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001272 virtual ~EffectModule();
Eric Laurent65b65452010-06-01 23:49:17 -07001273
1274 enum effect_state {
1275 IDLE,
Eric Laurent7d850f22010-07-09 13:34:17 -07001276 RESTART,
Eric Laurent65b65452010-06-01 23:49:17 -07001277 STARTING,
1278 ACTIVE,
1279 STOPPING,
Eric Laurent21b5c472011-07-26 20:54:46 -07001280 STOPPED,
1281 DESTROYED
Eric Laurent65b65452010-06-01 23:49:17 -07001282 };
1283
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001284 int id() const { return mId; }
Eric Laurent65b65452010-06-01 23:49:17 -07001285 void process();
Eric Laurent7d850f22010-07-09 13:34:17 -07001286 void updateState();
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001287 status_t command(uint32_t cmdCode,
1288 uint32_t cmdSize,
1289 void *pCmdData,
1290 uint32_t *replySize,
1291 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001292
Eric Laurentdf9b81c2010-07-02 08:12:41 -07001293 void reset_l();
Eric Laurent65b65452010-06-01 23:49:17 -07001294 status_t configure();
1295 status_t init();
Glenn Kasten452d6d62012-01-26 13:43:46 -08001296 effect_state state() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001297 return mState;
1298 }
1299 uint32_t status() {
1300 return mStatus;
1301 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001302 int sessionId() const {
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001303 return mSessionId;
1304 }
Eric Laurent65b65452010-06-01 23:49:17 -07001305 status_t setEnabled(bool enabled);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001306 bool isEnabled() const;
1307 bool isProcessEnabled() const;
Eric Laurent65b65452010-06-01 23:49:17 -07001308
1309 void setInBuffer(int16_t *buffer) { mConfig.inputCfg.buffer.s16 = buffer; }
1310 int16_t *inBuffer() { return mConfig.inputCfg.buffer.s16; }
1311 void setOutBuffer(int16_t *buffer) { mConfig.outputCfg.buffer.s16 = buffer; }
1312 int16_t *outBuffer() { return mConfig.outputCfg.buffer.s16; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001313 void setChain(const wp<EffectChain>& chain) { mChain = chain; }
1314 void setThread(const wp<ThreadBase>& thread) { mThread = thread; }
Glenn Kastendc3ac852012-01-25 15:28:08 -08001315 const wp<ThreadBase>& thread() { return mThread; }
Eric Laurent65b65452010-06-01 23:49:17 -07001316
Glenn Kasten1f812f72012-01-30 10:15:48 -08001317 status_t addHandle(const sp<EffectHandle>& handle);
Glenn Kasten29441ff2012-02-03 10:32:24 -08001318 void disconnect(const wp<EffectHandle>& handle, bool unpinIfLast);
Eric Laurent65b65452010-06-01 23:49:17 -07001319 size_t removeHandle (const wp<EffectHandle>& handle);
1320
1321 effect_descriptor_t& desc() { return mDescriptor; }
Eric Laurent53334cd2010-06-23 17:38:20 -07001322 wp<EffectChain>& chain() { return mChain; }
Eric Laurent65b65452010-06-01 23:49:17 -07001323
1324 status_t setDevice(uint32_t device);
1325 status_t setVolume(uint32_t *left, uint32_t *right, bool controller);
Glenn Kastenaccb1142012-01-04 11:00:47 -08001326 status_t setMode(audio_mode_t mode);
Eric Laurent6fccbd02011-10-05 17:42:25 -07001327 status_t start();
Eric Laurent21b5c472011-07-26 20:54:46 -07001328 status_t stop();
Eric Laurentf82fccd2011-07-27 19:49:51 -07001329 void setSuspended(bool suspended);
Glenn Kasten1dce8412012-01-04 11:01:11 -08001330 bool suspended() const;
Eric Laurentf82fccd2011-07-27 19:49:51 -07001331
1332 sp<EffectHandle> controlHandle();
Eric Laurent65b65452010-06-01 23:49:17 -07001333
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001334 bool isPinned() const { return mPinned; }
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001335 void unPin() { mPinned = false; }
1336
Eric Laurent65b65452010-06-01 23:49:17 -07001337 status_t dump(int fd, const Vector<String16>& args);
1338
1339 protected:
Glenn Kastenb3030f92012-03-09 12:07:30 -08001340 friend class AudioFlinger; // for mHandles
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001341 bool mPinned;
Eric Laurent65b65452010-06-01 23:49:17 -07001342
Eric Laurent7d850f22010-07-09 13:34:17 -07001343 // Maximum time allocated to effect engines to complete the turn off sequence
1344 static const uint32_t MAX_DISABLE_TIME_MS = 10000;
1345
Eric Laurent65b65452010-06-01 23:49:17 -07001346 EffectModule(const EffectModule&);
1347 EffectModule& operator = (const EffectModule&);
1348
Eric Laurentdf9b81c2010-07-02 08:12:41 -07001349 status_t start_l();
1350 status_t stop_l();
Eric Laurent65b65452010-06-01 23:49:17 -07001351
Glenn Kasten1dce8412012-01-04 11:01:11 -08001352mutable Mutex mLock; // mutex for process, commands and handles list protection
Eric Laurent65b65452010-06-01 23:49:17 -07001353 wp<ThreadBase> mThread; // parent thread
1354 wp<EffectChain> mChain; // parent effect chain
1355 int mId; // this instance unique ID
1356 int mSessionId; // audio session ID
1357 effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
1358 effect_config_t mConfig; // input and output audio configuration
Eric Laurent0fb66c22011-05-17 19:16:02 -07001359 effect_handle_t mEffectInterface; // Effect module C API
Glenn Kasten452d6d62012-01-26 13:43:46 -08001360 status_t mStatus; // initialization status
1361 effect_state mState; // current activation state
Eric Laurent65b65452010-06-01 23:49:17 -07001362 Vector< wp<EffectHandle> > mHandles; // list of client handles
Glenn Kastenb3db2132012-01-19 08:59:58 -08001363 // First handle in mHandles has highest priority and controls the effect module
Eric Laurent7d850f22010-07-09 13:34:17 -07001364 uint32_t mMaxDisableWaitCnt; // maximum grace period before forcing an effect off after
1365 // sending disable command.
1366 uint32_t mDisableWaitCnt; // current process() calls count during disable period.
Eric Laurentf82fccd2011-07-27 19:49:51 -07001367 bool mSuspended; // effect is suspended: temporarily disabled by framework
Eric Laurent65b65452010-06-01 23:49:17 -07001368 };
1369
1370 // The EffectHandle class implements the IEffect interface. It provides resources
1371 // to receive parameter updates, keeps track of effect control
1372 // ownership and state and has a pointer to the EffectModule object it is controlling.
1373 // There is one EffectHandle object for each application controlling (or using)
1374 // an effect module.
1375 // The EffectHandle is obtained by calling AudioFlinger::createEffect().
1376 class EffectHandle: public android::BnEffect {
1377 public:
1378
1379 EffectHandle(const sp<EffectModule>& effect,
1380 const sp<AudioFlinger::Client>& client,
1381 const sp<IEffectClient>& effectClient,
1382 int32_t priority);
1383 virtual ~EffectHandle();
1384
1385 // IEffect
1386 virtual status_t enable();
1387 virtual status_t disable();
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001388 virtual status_t command(uint32_t cmdCode,
1389 uint32_t cmdSize,
1390 void *pCmdData,
1391 uint32_t *replySize,
1392 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001393 virtual void disconnect();
Glenn Kasten29441ff2012-02-03 10:32:24 -08001394 private:
1395 void disconnect(bool unpinIfLast);
1396 public:
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001397 virtual sp<IMemory> getCblk() const { return mCblkMemory; }
Eric Laurent65b65452010-06-01 23:49:17 -07001398 virtual status_t onTransact(uint32_t code, const Parcel& data,
1399 Parcel* reply, uint32_t flags);
1400
1401
1402 // Give or take control of effect module
Eric Laurentf82fccd2011-07-27 19:49:51 -07001403 // - hasControl: true if control is given, false if removed
1404 // - signal: true client app should be signaled of change, false otherwise
1405 // - enabled: state of the effect when control is passed
1406 void setControl(bool hasControl, bool signal, bool enabled);
Eric Laurenta4c72ac2010-07-28 05:40:18 -07001407 void commandExecuted(uint32_t cmdCode,
1408 uint32_t cmdSize,
1409 void *pCmdData,
1410 uint32_t replySize,
1411 void *pReplyData);
Eric Laurent65b65452010-06-01 23:49:17 -07001412 void setEnabled(bool enabled);
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001413 bool enabled() const { return mEnabled; }
Eric Laurent65b65452010-06-01 23:49:17 -07001414
1415 // Getters
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001416 int id() const { return mEffect->id(); }
1417 int priority() const { return mPriority; }
1418 bool hasControl() const { return mHasControl; }
1419 sp<EffectModule> effect() const { return mEffect; }
Eric Laurent65b65452010-06-01 23:49:17 -07001420
1421 void dump(char* buffer, size_t size);
1422
1423 protected:
Glenn Kastenb3030f92012-03-09 12:07:30 -08001424 friend class AudioFlinger; // for mEffect, mHasControl, mEnabled
Eric Laurent65b65452010-06-01 23:49:17 -07001425 EffectHandle(const EffectHandle&);
1426 EffectHandle& operator =(const EffectHandle&);
1427
1428 sp<EffectModule> mEffect; // pointer to controlled EffectModule
1429 sp<IEffectClient> mEffectClient; // callback interface for client notifications
Glenn Kasten803a86a2012-01-25 14:28:29 -08001430 /*const*/ sp<Client> mClient; // client for shared memory allocation, see disconnect()
Eric Laurent65b65452010-06-01 23:49:17 -07001431 sp<IMemory> mCblkMemory; // shared memory for control block
1432 effect_param_cblk_t* mCblk; // control block for deferred parameter setting via shared memory
1433 uint8_t* mBuffer; // pointer to parameter area in shared memory
1434 int mPriority; // client application priority to control the effect
1435 bool mHasControl; // true if this handle is controlling the effect
Eric Laurentf82fccd2011-07-27 19:49:51 -07001436 bool mEnabled; // cached enable state: needed when the effect is
1437 // restored after being suspended
Eric Laurent65b65452010-06-01 23:49:17 -07001438 };
1439
1440 // the EffectChain class represents a group of effects associated to one audio session.
1441 // There can be any number of EffectChain objects per output mixer thread (PlaybackThread).
1442 // The EffecChain with session ID 0 contains global effects applied to the output mix.
1443 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to tracks)
1444 // are insert only. The EffectChain maintains an ordered list of effect module, the order corresponding
1445 // in the effect process order. When attached to a track (session ID != 0), it also provide it's own
1446 // input buffer used by the track as accumulation buffer.
1447 class EffectChain: public RefBase {
1448 public:
1449 EffectChain(const wp<ThreadBase>& wThread, int sessionId);
Glenn Kasten685c9ce2012-01-20 13:32:16 -08001450 EffectChain(ThreadBase *thread, int sessionId);
Glenn Kastenb1631382012-01-30 14:54:39 -08001451 virtual ~EffectChain();
Eric Laurent65b65452010-06-01 23:49:17 -07001452
Eric Laurentf82fccd2011-07-27 19:49:51 -07001453 // special key used for an entry in mSuspendedEffects keyed vector
1454 // corresponding to a suspend all request.
1455 static const int kKeyForSuspendAll = 0;
1456
Eric Laurentf9c361d2011-11-11 15:42:52 -08001457 // minimum duration during which we force calling effect process when last track on
1458 // a session is stopped or removed to allow effect tail to be rendered
1459 static const int kProcessTailDurationMs = 1000;
1460
Eric Laurent65b65452010-06-01 23:49:17 -07001461 void process_l();
1462
1463 void lock() {
1464 mLock.lock();
1465 }
1466 void unlock() {
1467 mLock.unlock();
1468 }
1469
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001470 status_t addEffect_l(const sp<EffectModule>& handle);
Eric Laurent76c40f72010-07-15 12:50:15 -07001471 size_t removeEffect_l(const sp<EffectModule>& handle);
Eric Laurent65b65452010-06-01 23:49:17 -07001472
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001473 int sessionId() const { return mSessionId; }
Eric Laurent464d5b32011-06-17 21:29:58 -07001474 void setSessionId(int sessionId) { mSessionId = sessionId; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001475
Eric Laurent76c40f72010-07-15 12:50:15 -07001476 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1477 sp<EffectModule> getEffectFromId_l(int id);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001478 sp<EffectModule> getEffectFromType_l(const effect_uuid_t *type);
Eric Laurent76c40f72010-07-15 12:50:15 -07001479 bool setVolume_l(uint32_t *left, uint32_t *right);
1480 void setDevice_l(uint32_t device);
Glenn Kastenaccb1142012-01-04 11:00:47 -08001481 void setMode_l(audio_mode_t mode);
Eric Laurent53334cd2010-06-23 17:38:20 -07001482
Eric Laurent65b65452010-06-01 23:49:17 -07001483 void setInBuffer(int16_t *buffer, bool ownsBuffer = false) {
1484 mInBuffer = buffer;
1485 mOwnInBuffer = ownsBuffer;
1486 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001487 int16_t *inBuffer() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001488 return mInBuffer;
1489 }
1490 void setOutBuffer(int16_t *buffer) {
1491 mOutBuffer = buffer;
1492 }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001493 int16_t *outBuffer() const {
Eric Laurent65b65452010-06-01 23:49:17 -07001494 return mOutBuffer;
1495 }
1496
Eric Laurent90681d62011-05-09 12:09:06 -07001497 void incTrackCnt() { android_atomic_inc(&mTrackCnt); }
1498 void decTrackCnt() { android_atomic_dec(&mTrackCnt); }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001499 int32_t trackCnt() const { return mTrackCnt;}
Eric Laurent90681d62011-05-09 12:09:06 -07001500
Eric Laurentf9c361d2011-11-11 15:42:52 -08001501 void incActiveTrackCnt() { android_atomic_inc(&mActiveTrackCnt);
1502 mTailBufferCount = mMaxTailBuffers; }
Eric Laurent90681d62011-05-09 12:09:06 -07001503 void decActiveTrackCnt() { android_atomic_dec(&mActiveTrackCnt); }
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001504 int32_t activeTrackCnt() const { return mActiveTrackCnt;}
Eric Laurent65b65452010-06-01 23:49:17 -07001505
Glenn Kasteneabd94a2012-02-02 14:06:11 -08001506 uint32_t strategy() const { return mStrategy; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001507 void setStrategy(uint32_t strategy)
Glenn Kasten18db49a2012-03-12 16:29:55 -07001508 { mStrategy = strategy; }
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001509
Eric Laurentf82fccd2011-07-27 19:49:51 -07001510 // suspend effect of the given type
1511 void setEffectSuspended_l(const effect_uuid_t *type,
1512 bool suspend);
1513 // suspend all eligible effects
1514 void setEffectSuspendedAll_l(bool suspend);
1515 // check if effects should be suspend or restored when a given effect is enable or disabled
Eric Laurent7fa1cee2011-10-19 11:44:54 -07001516 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
Eric Laurentf82fccd2011-07-27 19:49:51 -07001517 bool enabled);
1518
Eric Laurent65b65452010-06-01 23:49:17 -07001519 status_t dump(int fd, const Vector<String16>& args);
1520
1521 protected:
Glenn Kastenb3030f92012-03-09 12:07:30 -08001522 friend class AudioFlinger; // for mThread, mEffects
Eric Laurent65b65452010-06-01 23:49:17 -07001523 EffectChain(const EffectChain&);
1524 EffectChain& operator =(const EffectChain&);
1525
Eric Laurentf82fccd2011-07-27 19:49:51 -07001526 class SuspendedEffectDesc : public RefBase {
1527 public:
1528 SuspendedEffectDesc() : mRefCount(0) {}
1529
1530 int mRefCount;
1531 effect_uuid_t mType;
1532 wp<EffectModule> mEffect;
1533 };
1534
1535 // get a list of effect modules to suspend when an effect of the type
1536 // passed is enabled.
Glenn Kasten97040262012-01-30 12:56:03 -08001537 void getSuspendEligibleEffects(Vector< sp<EffectModule> > &effects);
1538
Eric Laurentf82fccd2011-07-27 19:49:51 -07001539 // get an effect module if it is currently enable
1540 sp<EffectModule> getEffectIfEnabled(const effect_uuid_t *type);
Eric Laurent6752ec82011-08-10 10:37:50 -07001541 // true if the effect whose descriptor is passed can be suspended
1542 // OEMs can modify the rules implemented in this method to exclude specific effect
1543 // types or implementations from the suspend/restore mechanism.
1544 bool isEffectEligibleForSuspend(const effect_descriptor_t& desc);
Eric Laurentf82fccd2011-07-27 19:49:51 -07001545
Eric Laurent65b65452010-06-01 23:49:17 -07001546 wp<ThreadBase> mThread; // parent mixer thread
1547 Mutex mLock; // mutex protecting effect list
Glenn Kasten18db49a2012-03-12 16:29:55 -07001548 Vector< sp<EffectModule> > mEffects; // list of effect modules
Eric Laurent65b65452010-06-01 23:49:17 -07001549 int mSessionId; // audio session ID
1550 int16_t *mInBuffer; // chain input buffer
1551 int16_t *mOutBuffer; // chain output buffer
Eric Laurent90681d62011-05-09 12:09:06 -07001552 volatile int32_t mActiveTrackCnt; // number of active tracks connected
1553 volatile int32_t mTrackCnt; // number of tracks connected
Eric Laurentf9c361d2011-11-11 15:42:52 -08001554 int32_t mTailBufferCount; // current effect tail buffer count
1555 int32_t mMaxTailBuffers; // maximum effect tail buffers
Eric Laurent65b65452010-06-01 23:49:17 -07001556 bool mOwnInBuffer; // true if the chain owns its input buffer
Eric Laurent76c40f72010-07-15 12:50:15 -07001557 int mVolumeCtrlIdx; // index of insert effect having control over volume
1558 uint32_t mLeftVolume; // previous volume on left channel
1559 uint32_t mRightVolume; // previous volume on right channel
Eric Laurent0d7e0482010-07-19 06:24:46 -07001560 uint32_t mNewLeftVolume; // new volume on left channel
1561 uint32_t mNewRightVolume; // new volume on right channel
Eric Laurent8ed6ed02010-07-13 04:45:46 -07001562 uint32_t mStrategy; // strategy for this effect chain
Glenn Kasten76b6c0c2012-02-14 08:52:15 -08001563 // mSuspendedEffects lists all effects currently suspended in the chain.
1564 // Use effect type UUID timelow field as key. There is no real risk of identical
Eric Laurentf82fccd2011-07-27 19:49:51 -07001565 // timeLow fields among effect type UUIDs.
Glenn Kasten76b6c0c2012-02-14 08:52:15 -08001566 // Updated by updateSuspendedSessions_l() only.
Eric Laurentf82fccd2011-07-27 19:49:51 -07001567 KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
Eric Laurent65b65452010-06-01 23:49:17 -07001568 };
1569
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001570 // AudioStreamOut and AudioStreamIn are immutable, so their fields are const.
1571 // For emphasis, we could also make all pointers to them be "const *",
1572 // but that would clutter the code unnecessarily.
1573
Dima Zavin31f188892011-04-18 16:57:27 -07001574 struct AudioStreamOut {
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001575 audio_hw_device_t* const hwDev;
1576 audio_stream_out_t* const stream;
Dima Zavin31f188892011-04-18 16:57:27 -07001577
1578 AudioStreamOut(audio_hw_device_t *dev, audio_stream_out_t *out) :
1579 hwDev(dev), stream(out) {}
1580 };
1581
1582 struct AudioStreamIn {
Glenn Kasten5b0135e2012-01-26 09:46:34 -08001583 audio_hw_device_t* const hwDev;
1584 audio_stream_in_t* const stream;
Dima Zavin31f188892011-04-18 16:57:27 -07001585
1586 AudioStreamIn(audio_hw_device_t *dev, audio_stream_in_t *in) :
1587 hwDev(dev), stream(in) {}
1588 };
1589
Glenn Kastenb3db2132012-01-19 08:59:58 -08001590 // for mAudioSessionRefs only
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001591 struct AudioSessionRef {
Glenn Kasten9a42ac92012-03-06 11:22:01 -08001592 AudioSessionRef(int sessionid, pid_t pid) :
1593 mSessionid(sessionid), mPid(pid), mCnt(1) {}
1594 const int mSessionid;
1595 const pid_t mPid;
1596 int mCnt;
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001597 };
1598
John Grossmand8cf2962012-02-08 16:37:41 -08001599 enum master_volume_support {
1600 // MVS_NONE:
1601 // Audio HAL has no support for master volume, either setting or
1602 // getting. All master volume control must be implemented in SW by the
1603 // AudioFlinger mixing core.
1604 MVS_NONE,
1605
1606 // MVS_SETONLY:
1607 // Audio HAL has support for setting master volume, but not for getting
1608 // master volume (original HAL design did not include a getter).
1609 // AudioFlinger needs to keep track of the last set master volume in
1610 // addition to needing to set an initial, default, master volume at HAL
1611 // load time.
1612 MVS_SETONLY,
1613
1614 // MVS_FULL:
1615 // Audio HAL has support both for setting and getting master volume.
1616 // AudioFlinger should send all set and get master volume requests
1617 // directly to the HAL.
1618 MVS_FULL,
1619 };
1620
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001621 mutable Mutex mLock;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001622
Glenn Kasten803a86a2012-01-25 14:28:29 -08001623 DefaultKeyedVector< pid_t, wp<Client> > mClients; // see ~Client()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001624
Eric Laurenta553c252009-07-17 12:17:14 -07001625 mutable Mutex mHardwareLock;
Glenn Kastenad8d1752012-02-02 14:05:20 -08001626
1627 // These two fields are immutable after onFirstRef(), so no lock needed to access
1628 audio_hw_device_t* mPrimaryHardwareDev; // mAudioHwDevs[0] or NULL
Dima Zavin31f188892011-04-18 16:57:27 -07001629 Vector<audio_hw_device_t*> mAudioHwDevs;
Glenn Kasten00931bb2012-01-26 09:48:03 -08001630
Glenn Kasten23c9c742012-02-02 14:16:03 -08001631 // for dump, indicates which hardware operation is currently in progress (but not stream ops)
Glenn Kasten00931bb2012-01-26 09:48:03 -08001632 enum hardware_call_state {
Glenn Kasten23c9c742012-02-02 14:16:03 -08001633 AUDIO_HW_IDLE = 0, // no operation in progress
1634 AUDIO_HW_INIT, // init_check
1635 AUDIO_HW_OUTPUT_OPEN, // open_output_stream
1636 AUDIO_HW_OUTPUT_CLOSE, // unused
1637 AUDIO_HW_INPUT_OPEN, // unused
1638 AUDIO_HW_INPUT_CLOSE, // unused
1639 AUDIO_HW_STANDBY, // unused
1640 AUDIO_HW_SET_MASTER_VOLUME, // set_master_volume
1641 AUDIO_HW_GET_ROUTING, // unused
1642 AUDIO_HW_SET_ROUTING, // unused
1643 AUDIO_HW_GET_MODE, // unused
1644 AUDIO_HW_SET_MODE, // set_mode
1645 AUDIO_HW_GET_MIC_MUTE, // get_mic_mute
1646 AUDIO_HW_SET_MIC_MUTE, // set_mic_mute
1647 AUDIO_HW_SET_VOICE_VOLUME, // set_voice_volume
1648 AUDIO_HW_SET_PARAMETER, // set_parameters
1649 AUDIO_HW_GET_INPUT_BUFFER_SIZE, // get_input_buffer_size
1650 AUDIO_HW_GET_MASTER_VOLUME, // get_master_volume
1651 AUDIO_HW_GET_PARAMETER, // get_parameters
Glenn Kasten00931bb2012-01-26 09:48:03 -08001652 };
1653
Glenn Kastena934c2c2012-01-04 11:02:33 -08001654 mutable hardware_call_state mHardwareStatus; // for dump only
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07001655
Eric Laurenta553c252009-07-17 12:17:14 -07001656
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001657 DefaultKeyedVector< audio_io_handle_t, sp<PlaybackThread> > mPlaybackThreads;
Glenn Kasten37733342012-02-08 12:36:25 -08001658 stream_type_t mStreamTypes[AUDIO_STREAM_CNT];
Glenn Kastene6f8a422011-12-13 11:47:54 -08001659
1660 // both are protected by mLock
Eric Laurenta553c252009-07-17 12:17:14 -07001661 float mMasterVolume;
John Grossmand8cf2962012-02-08 16:37:41 -08001662 float mMasterVolumeSW;
1663 master_volume_support mMasterVolumeSupportLvl;
Eric Laurenta553c252009-07-17 12:17:14 -07001664 bool mMasterMute;
1665
Glenn Kasten39d00cb2012-01-17 11:09:42 -08001666 DefaultKeyedVector< audio_io_handle_t, sp<RecordThread> > mRecordThreads;
Eric Laurenta553c252009-07-17 12:17:14 -07001667
Eric Laurent4f0f17d2010-05-12 02:05:53 -07001668 DefaultKeyedVector< pid_t, sp<NotificationClient> > mNotificationClients;
Glenn Kastenb3db2132012-01-19 08:59:58 -08001669 volatile int32_t mNextUniqueId; // updated by android_atomic_inc
Glenn Kastenaccb1142012-01-04 11:00:47 -08001670 audio_mode_t mMode;
Eric Laurent2d95dfb2011-08-29 12:42:48 -07001671 bool mBtNrecIsOff;
Eric Laurent53334cd2010-06-23 17:38:20 -07001672
Glenn Kastenb3db2132012-01-19 08:59:58 -08001673 // protected by mLock
Marco Nelissenc74b93f2011-08-02 13:33:41 -07001674 Vector<AudioSessionRef*> mAudioSessionRefs;
Glenn Kastene6f8a422011-12-13 11:47:54 -08001675
John Grossmand8cf2962012-02-08 16:37:41 -08001676 float masterVolume_l() const;
1677 float masterVolumeSW_l() const { return mMasterVolumeSW; }
Glenn Kastene6f8a422011-12-13 11:47:54 -08001678 bool masterMute_l() const { return mMasterMute; }
Glenn Kasten803a86a2012-01-25 14:28:29 -08001679
1680private:
1681 sp<Client> registerPid_l(pid_t pid); // always returns non-0
1682
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001683};
1684
Dima Zavin31f188892011-04-18 16:57:27 -07001685
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001686// ----------------------------------------------------------------------------
1687
1688}; // namespace android
1689
1690#endif // ANDROID_AUDIO_FLINGER_H