blob: 3fe470ca8a0a6ab6b62db231228ee382ea5a3d8a [file] [log] [blame]
Eric Laurent81784c32012-11-19 14:55:58 -08001/*
2**
3** Copyright 2012, 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 INCLUDING_FROM_AUDIOFLINGER_H
19 #error This header file should only be included from AudioFlinger.h
20#endif
21
22class ThreadBase : public Thread {
23public:
24
25#include "TrackBase.h"
26
27 enum type_t {
28 MIXER, // Thread class is MixerThread
29 DIRECT, // Thread class is DirectOutputThread
30 DUPLICATING, // Thread class is DuplicatingThread
Eric Laurentbfb1b832013-01-07 09:53:42 -080031 RECORD, // Thread class is RecordThread
32 OFFLOAD // Thread class is OffloadThread
Eric Laurent81784c32012-11-19 14:55:58 -080033 };
34
35 ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
36 audio_devices_t outDevice, audio_devices_t inDevice, type_t type);
37 virtual ~ThreadBase();
38
39 void dumpBase(int fd, const Vector<String16>& args);
40 void dumpEffectChains(int fd, const Vector<String16>& args);
41
42 void clearPowerManager();
43
44 // base for record and playback
45 enum {
46 CFG_EVENT_IO,
47 CFG_EVENT_PRIO
48 };
49
50 class ConfigEvent {
51 public:
52 ConfigEvent(int type) : mType(type) {}
53 virtual ~ConfigEvent() {}
54
55 int type() const { return mType; }
56
57 virtual void dump(char *buffer, size_t size) = 0;
58
59 private:
60 const int mType;
61 };
62
63 class IoConfigEvent : public ConfigEvent {
64 public:
65 IoConfigEvent(int event, int param) :
66 ConfigEvent(CFG_EVENT_IO), mEvent(event), mParam(event) {}
67 virtual ~IoConfigEvent() {}
68
69 int event() const { return mEvent; }
70 int param() const { return mParam; }
71
72 virtual void dump(char *buffer, size_t size) {
73 snprintf(buffer, size, "IO event: event %d, param %d\n", mEvent, mParam);
74 }
75
76 private:
77 const int mEvent;
78 const int mParam;
79 };
80
81 class PrioConfigEvent : public ConfigEvent {
82 public:
83 PrioConfigEvent(pid_t pid, pid_t tid, int32_t prio) :
84 ConfigEvent(CFG_EVENT_PRIO), mPid(pid), mTid(tid), mPrio(prio) {}
85 virtual ~PrioConfigEvent() {}
86
87 pid_t pid() const { return mPid; }
88 pid_t tid() const { return mTid; }
89 int32_t prio() const { return mPrio; }
90
91 virtual void dump(char *buffer, size_t size) {
92 snprintf(buffer, size, "Prio event: pid %d, tid %d, prio %d\n", mPid, mTid, mPrio);
93 }
94
95 private:
96 const pid_t mPid;
97 const pid_t mTid;
98 const int32_t mPrio;
99 };
100
101
102 class PMDeathRecipient : public IBinder::DeathRecipient {
103 public:
104 PMDeathRecipient(const wp<ThreadBase>& thread) : mThread(thread) {}
105 virtual ~PMDeathRecipient() {}
106
107 // IBinder::DeathRecipient
108 virtual void binderDied(const wp<IBinder>& who);
109
110 private:
111 PMDeathRecipient(const PMDeathRecipient&);
112 PMDeathRecipient& operator = (const PMDeathRecipient&);
113
114 wp<ThreadBase> mThread;
115 };
116
117 virtual status_t initCheck() const = 0;
118
119 // static externally-visible
120 type_t type() const { return mType; }
121 audio_io_handle_t id() const { return mId;}
122
123 // dynamic externally-visible
124 uint32_t sampleRate() const { return mSampleRate; }
125 uint32_t channelCount() const { return mChannelCount; }
126 audio_channel_mask_t channelMask() const { return mChannelMask; }
127 audio_format_t format() const { return mFormat; }
128 // Called by AudioFlinger::frameCount(audio_io_handle_t output) and effects,
Glenn Kasten9b58f632013-07-16 11:37:48 -0700129 // and returns the [normal mix] buffer's frame count.
130 virtual size_t frameCount() const = 0;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800131 size_t frameSize() const { return mFrameSize; }
Eric Laurent81784c32012-11-19 14:55:58 -0800132
133 // Should be "virtual status_t requestExitAndWait()" and override same
134 // method in Thread, but Thread::requestExitAndWait() is not yet virtual.
135 void exit();
136 virtual bool checkForNewParameters_l() = 0;
137 virtual status_t setParameters(const String8& keyValuePairs);
138 virtual String8 getParameters(const String8& keys) = 0;
139 virtual void audioConfigChanged_l(int event, int param = 0) = 0;
140 void sendIoConfigEvent(int event, int param = 0);
141 void sendIoConfigEvent_l(int event, int param = 0);
142 void sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio);
143 void processConfigEvents();
144
145 // see note at declaration of mStandby, mOutDevice and mInDevice
146 bool standby() const { return mStandby; }
147 audio_devices_t outDevice() const { return mOutDevice; }
148 audio_devices_t inDevice() const { return mInDevice; }
149
150 virtual audio_stream_t* stream() const = 0;
151
152 sp<EffectHandle> createEffect_l(
153 const sp<AudioFlinger::Client>& client,
154 const sp<IEffectClient>& effectClient,
155 int32_t priority,
156 int sessionId,
157 effect_descriptor_t *desc,
158 int *enabled,
159 status_t *status);
160 void disconnectEffect(const sp< EffectModule>& effect,
161 EffectHandle *handle,
162 bool unpinIfLast);
163
164 // return values for hasAudioSession (bit field)
165 enum effect_state {
166 EFFECT_SESSION = 0x1, // the audio session corresponds to at least one
167 // effect
168 TRACK_SESSION = 0x2 // the audio session corresponds to at least one
169 // track
170 };
171
172 // get effect chain corresponding to session Id.
173 sp<EffectChain> getEffectChain(int sessionId);
174 // same as getEffectChain() but must be called with ThreadBase mutex locked
175 sp<EffectChain> getEffectChain_l(int sessionId) const;
176 // add an effect chain to the chain list (mEffectChains)
177 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
178 // remove an effect chain from the chain list (mEffectChains)
179 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
180 // lock all effect chains Mutexes. Must be called before releasing the
181 // ThreadBase mutex before processing the mixer and effects. This guarantees the
182 // integrity of the chains during the process.
183 // Also sets the parameter 'effectChains' to current value of mEffectChains.
184 void lockEffectChains_l(Vector< sp<EffectChain> >& effectChains);
185 // unlock effect chains after process
186 void unlockEffectChains(const Vector< sp<EffectChain> >& effectChains);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800187 // get a copy of mEffectChains vector
188 Vector< sp<EffectChain> > getEffectChains_l() const { return mEffectChains; };
Eric Laurent81784c32012-11-19 14:55:58 -0800189 // set audio mode to all effect chains
190 void setMode(audio_mode_t mode);
191 // get effect module with corresponding ID on specified audio session
192 sp<AudioFlinger::EffectModule> getEffect(int sessionId, int effectId);
193 sp<AudioFlinger::EffectModule> getEffect_l(int sessionId, int effectId);
194 // add and effect module. Also creates the effect chain is none exists for
195 // the effects audio session
196 status_t addEffect_l(const sp< EffectModule>& effect);
197 // remove and effect module. Also removes the effect chain is this was the last
198 // effect
199 void removeEffect_l(const sp< EffectModule>& effect);
200 // detach all tracks connected to an auxiliary effect
201 virtual void detachAuxEffect_l(int effectId) {}
202 // returns either EFFECT_SESSION if effects on this audio session exist in one
203 // chain, or TRACK_SESSION if tracks on this audio session exist, or both
204 virtual uint32_t hasAudioSession(int sessionId) const = 0;
205 // the value returned by default implementation is not important as the
206 // strategy is only meaningful for PlaybackThread which implements this method
207 virtual uint32_t getStrategyForSession_l(int sessionId) { return 0; }
208
209 // suspend or restore effect according to the type of effect passed. a NULL
210 // type pointer means suspend all effects in the session
211 void setEffectSuspended(const effect_uuid_t *type,
212 bool suspend,
213 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
214 // check if some effects must be suspended/restored when an effect is enabled
215 // or disabled
216 void checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
217 bool enabled,
218 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
219 void checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
220 bool enabled,
221 int sessionId = AUDIO_SESSION_OUTPUT_MIX);
222
223 virtual status_t setSyncEvent(const sp<SyncEvent>& event) = 0;
224 virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const = 0;
225
226
227 mutable Mutex mLock;
228
229protected:
230
231 // entry describing an effect being suspended in mSuspendedSessions keyed vector
232 class SuspendedSessionDesc : public RefBase {
233 public:
234 SuspendedSessionDesc() : mRefCount(0) {}
235
236 int mRefCount; // number of active suspend requests
237 effect_uuid_t mType; // effect type UUID
238 };
239
240 void acquireWakeLock();
241 void acquireWakeLock_l();
242 void releaseWakeLock();
243 void releaseWakeLock_l();
244 void setEffectSuspended_l(const effect_uuid_t *type,
245 bool suspend,
246 int sessionId);
247 // updated mSuspendedSessions when an effect suspended or restored
248 void updateSuspendedSessions_l(const effect_uuid_t *type,
249 bool suspend,
250 int sessionId);
251 // check if some effects must be suspended when an effect chain is added
252 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
253
254 virtual void preExit() { }
255
256 friend class AudioFlinger; // for mEffectChains
257
258 const type_t mType;
259
260 // Used by parameters, config events, addTrack_l, exit
261 Condition mWaitWorkCV;
262
263 const sp<AudioFlinger> mAudioFlinger;
Glenn Kasten9b58f632013-07-16 11:37:48 -0700264
265 // updated by PlaybackThread::readOutputParameters() or
266 // RecordThread::readInputParameters()
Eric Laurent81784c32012-11-19 14:55:58 -0800267 uint32_t mSampleRate;
268 size_t mFrameCount; // output HAL, direct output, record
Eric Laurent81784c32012-11-19 14:55:58 -0800269 audio_channel_mask_t mChannelMask;
Glenn Kastenf6ed4232013-07-16 11:16:27 -0700270 uint32_t mChannelCount;
Eric Laurent81784c32012-11-19 14:55:58 -0800271 size_t mFrameSize;
272 audio_format_t mFormat;
273
274 // Parameter sequence by client: binder thread calling setParameters():
275 // 1. Lock mLock
276 // 2. Append to mNewParameters
277 // 3. mWaitWorkCV.signal
278 // 4. mParamCond.waitRelative with timeout
279 // 5. read mParamStatus
280 // 6. mWaitWorkCV.signal
281 // 7. Unlock
282 //
283 // Parameter sequence by server: threadLoop calling checkForNewParameters_l():
284 // 1. Lock mLock
285 // 2. If there is an entry in mNewParameters proceed ...
286 // 2. Read first entry in mNewParameters
287 // 3. Process
288 // 4. Remove first entry from mNewParameters
289 // 5. Set mParamStatus
290 // 6. mParamCond.signal
291 // 7. mWaitWorkCV.wait with timeout (this is to avoid overwriting mParamStatus)
292 // 8. Unlock
293 Condition mParamCond;
294 Vector<String8> mNewParameters;
295 status_t mParamStatus;
296
Glenn Kastenc6ae3c82013-07-17 09:08:51 -0700297 // vector owns each ConfigEvent *, so must delete after removing
Eric Laurent81784c32012-11-19 14:55:58 -0800298 Vector<ConfigEvent *> mConfigEvents;
299
300 // These fields are written and read by thread itself without lock or barrier,
301 // and read by other threads without lock or barrier via standby() , outDevice()
302 // and inDevice().
303 // Because of the absence of a lock or barrier, any other thread that reads
304 // these fields must use the information in isolation, or be prepared to deal
305 // with possibility that it might be inconsistent with other information.
306 bool mStandby; // Whether thread is currently in standby.
307 audio_devices_t mOutDevice; // output device
308 audio_devices_t mInDevice; // input device
309 audio_source_t mAudioSource; // (see audio.h, audio_source_t)
310
311 const audio_io_handle_t mId;
312 Vector< sp<EffectChain> > mEffectChains;
313
314 static const int kNameLength = 16; // prctl(PR_SET_NAME) limit
315 char mName[kNameLength];
316 sp<IPowerManager> mPowerManager;
317 sp<IBinder> mWakeLockToken;
318 const sp<PMDeathRecipient> mDeathRecipient;
319 // list of suspended effects per session and per type. The first vector is
320 // keyed by session ID, the second by type UUID timeLow field
321 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > >
322 mSuspendedSessions;
Glenn Kastenab7d72f2013-02-27 09:05:28 -0800323 static const size_t kLogSize = 4 * 1024;
Glenn Kasten9e58b552013-01-18 15:09:48 -0800324 sp<NBLog::Writer> mNBLogWriter;
Eric Laurent81784c32012-11-19 14:55:58 -0800325};
326
327// --- PlaybackThread ---
328class PlaybackThread : public ThreadBase {
329public:
330
331#include "PlaybackTracks.h"
332
333 enum mixer_state {
334 MIXER_IDLE, // no active tracks
335 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
Eric Laurentbfb1b832013-01-07 09:53:42 -0800336 MIXER_TRACKS_READY, // at least one active track, and at least one track has data
337 MIXER_DRAIN_TRACK, // drain currently playing track
338 MIXER_DRAIN_ALL, // fully drain the hardware
Eric Laurent81784c32012-11-19 14:55:58 -0800339 // standby mode does not have an enum value
340 // suspend by audio policy manager is orthogonal to mixer state
341 };
342
Eric Laurentbfb1b832013-01-07 09:53:42 -0800343 // retry count before removing active track in case of underrun on offloaded thread:
344 // we need to make sure that AudioTrack client has enough time to send large buffers
345//FIXME may be more appropriate if expressed in time units. Need to revise how underrun is handled
346 // for offloaded tracks
347 static const int8_t kMaxTrackRetriesOffload = 20;
348
Eric Laurent81784c32012-11-19 14:55:58 -0800349 PlaybackThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
350 audio_io_handle_t id, audio_devices_t device, type_t type);
351 virtual ~PlaybackThread();
352
353 void dump(int fd, const Vector<String16>& args);
354
355 // Thread virtuals
356 virtual status_t readyToRun();
357 virtual bool threadLoop();
358
359 // RefBase
360 virtual void onFirstRef();
361
362protected:
363 // Code snippets that were lifted up out of threadLoop()
364 virtual void threadLoop_mix() = 0;
365 virtual void threadLoop_sleepTime() = 0;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800366 virtual ssize_t threadLoop_write();
367 virtual void threadLoop_drain();
Eric Laurent81784c32012-11-19 14:55:58 -0800368 virtual void threadLoop_standby();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800369 virtual void threadLoop_exit();
Eric Laurent81784c32012-11-19 14:55:58 -0800370 virtual void threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove);
371
372 // prepareTracks_l reads and writes mActiveTracks, and returns
373 // the pending set of tracks to remove via Vector 'tracksToRemove'. The caller
374 // is responsible for clearing or destroying this Vector later on, when it
375 // is safe to do so. That will drop the final ref count and destroy the tracks.
376 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800377 void removeTracks_l(const Vector< sp<Track> >& tracksToRemove);
378
379 void writeCallback();
Eric Laurent3b4529e2013-09-05 18:09:19 -0700380 void resetWriteBlocked(uint32_t sequence);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800381 void drainCallback();
Eric Laurent3b4529e2013-09-05 18:09:19 -0700382 void resetDraining(uint32_t sequence);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800383
384 static int asyncCallback(stream_callback_event_t event, void *param, void *cookie);
385
386 virtual bool waitingAsyncCallback();
387 virtual bool waitingAsyncCallback_l();
388 virtual bool shouldStandby_l();
389
Eric Laurent81784c32012-11-19 14:55:58 -0800390
391 // ThreadBase virtuals
392 virtual void preExit();
393
394public:
395
396 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
397
398 // return estimated latency in milliseconds, as reported by HAL
399 uint32_t latency() const;
400 // same, but lock must already be held
401 uint32_t latency_l() const;
402
403 void setMasterVolume(float value);
404 void setMasterMute(bool muted);
405
406 void setStreamVolume(audio_stream_type_t stream, float value);
407 void setStreamMute(audio_stream_type_t stream, bool muted);
408
409 float streamVolume(audio_stream_type_t stream) const;
410
411 sp<Track> createTrack_l(
412 const sp<AudioFlinger::Client>& client,
413 audio_stream_type_t streamType,
414 uint32_t sampleRate,
415 audio_format_t format,
416 audio_channel_mask_t channelMask,
417 size_t frameCount,
418 const sp<IMemory>& sharedBuffer,
419 int sessionId,
420 IAudioFlinger::track_flags_t *flags,
421 pid_t tid,
422 status_t *status);
423
424 AudioStreamOut* getOutput() const;
425 AudioStreamOut* clearOutput();
426 virtual audio_stream_t* stream() const;
427
428 // a very large number of suspend() will eventually wraparound, but unlikely
429 void suspend() { (void) android_atomic_inc(&mSuspended); }
430 void restore()
431 {
432 // if restore() is done without suspend(), get back into
433 // range so that the next suspend() will operate correctly
434 if (android_atomic_dec(&mSuspended) <= 0) {
435 android_atomic_release_store(0, &mSuspended);
436 }
437 }
438 bool isSuspended() const
439 { return android_atomic_acquire_load(&mSuspended) > 0; }
440
441 virtual String8 getParameters(const String8& keys);
442 virtual void audioConfigChanged_l(int event, int param = 0);
443 status_t getRenderPosition(size_t *halFrames, size_t *dspFrames);
444 int16_t *mixBuffer() const { return mMixBuffer; };
445
446 virtual void detachAuxEffect_l(int effectId);
447 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
448 int EffectId);
449 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
450 int EffectId);
451
452 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
453 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
454 virtual uint32_t hasAudioSession(int sessionId) const;
455 virtual uint32_t getStrategyForSession_l(int sessionId);
456
457
458 virtual status_t setSyncEvent(const sp<SyncEvent>& event);
459 virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const;
Glenn Kastenfb1fdc92013-07-10 17:03:19 -0700460
461 // called with AudioFlinger lock held
Eric Laurent81784c32012-11-19 14:55:58 -0800462 void invalidateTracks(audio_stream_type_t streamType);
463
Glenn Kasten9b58f632013-07-16 11:37:48 -0700464 virtual size_t frameCount() const { return mNormalFrameCount; }
465
466 // Return's the HAL's frame count i.e. fast mixer buffer size.
467 size_t frameCountHAL() const { return mFrameCount; }
Eric Laurent81784c32012-11-19 14:55:58 -0800468
469protected:
Glenn Kasten9b58f632013-07-16 11:37:48 -0700470 // updated by readOutputParameters()
471 size_t mNormalFrameCount; // normal mixer and effects
472
Eric Laurentbfb1b832013-01-07 09:53:42 -0800473 int16_t* mMixBuffer; // frame size aligned mix buffer
474 int8_t* mAllocMixBuffer; // mixer buffer allocation address
Eric Laurent81784c32012-11-19 14:55:58 -0800475
476 // suspend count, > 0 means suspended. While suspended, the thread continues to pull from
477 // tracks and mix, but doesn't write to HAL. A2DP and SCO HAL implementations can't handle
478 // concurrent use of both of them, so Audio Policy Service suspends one of the threads to
479 // workaround that restriction.
480 // 'volatile' means accessed via atomic operations and no lock.
481 volatile int32_t mSuspended;
482
483 // FIXME overflows every 6+ hours at 44.1 kHz stereo 16-bit samples
484 // mFramesWritten would be better, or 64-bit even better
485 size_t mBytesWritten;
486private:
487 // mMasterMute is in both PlaybackThread and in AudioFlinger. When a
488 // PlaybackThread needs to find out if master-muted, it checks it's local
489 // copy rather than the one in AudioFlinger. This optimization saves a lock.
490 bool mMasterMute;
491 void setMasterMute_l(bool muted) { mMasterMute = muted; }
492protected:
493 SortedVector< wp<Track> > mActiveTracks; // FIXME check if this could be sp<>
494
495 // Allocate a track name for a given channel mask.
496 // Returns name >= 0 if successful, -1 on failure.
497 virtual int getTrackName_l(audio_channel_mask_t channelMask, int sessionId) = 0;
498 virtual void deleteTrackName_l(int name) = 0;
499
500 // Time to sleep between cycles when:
501 virtual uint32_t activeSleepTimeUs() const; // mixer state MIXER_TRACKS_ENABLED
502 virtual uint32_t idleSleepTimeUs() const = 0; // mixer state MIXER_IDLE
503 virtual uint32_t suspendSleepTimeUs() const = 0; // audio policy manager suspended us
504 // No sleep when mixer state == MIXER_TRACKS_READY; relies on audio HAL stream->write()
505 // No sleep in standby mode; waits on a condition
506
507 // Code snippets that are temporarily lifted up out of threadLoop() until the merge
508 void checkSilentMode_l();
509
510 // Non-trivial for DUPLICATING only
511 virtual void saveOutputTracks() { }
512 virtual void clearOutputTracks() { }
513
514 // Cache various calculated values, at threadLoop() entry and after a parameter change
515 virtual void cacheParameters_l();
516
517 virtual uint32_t correctLatency_l(uint32_t latency) const;
518
519private:
520
521 friend class AudioFlinger; // for numerous
522
523 PlaybackThread(const Client&);
524 PlaybackThread& operator = (const PlaybackThread&);
525
526 status_t addTrack_l(const sp<Track>& track);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800527 bool destroyTrack_l(const sp<Track>& track);
Eric Laurent81784c32012-11-19 14:55:58 -0800528 void removeTrack_l(const sp<Track>& track);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800529 void signal_l();
Eric Laurent81784c32012-11-19 14:55:58 -0800530
531 void readOutputParameters();
532
533 virtual void dumpInternals(int fd, const Vector<String16>& args);
534 void dumpTracks(int fd, const Vector<String16>& args);
535
536 SortedVector< sp<Track> > mTracks;
537 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by
538 // DuplicatingThread
539 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
540 AudioStreamOut *mOutput;
541
542 float mMasterVolume;
543 nsecs_t mLastWriteTime;
544 int mNumWrites;
545 int mNumDelayedWrites;
546 bool mInWrite;
547
548 // FIXME rename these former local variables of threadLoop to standard "m" names
549 nsecs_t standbyTime;
550 size_t mixBufferSize;
551
552 // cached copies of activeSleepTimeUs() and idleSleepTimeUs() made by cacheParameters_l()
553 uint32_t activeSleepTime;
554 uint32_t idleSleepTime;
555
556 uint32_t sleepTime;
557
558 // mixer status returned by prepareTracks_l()
559 mixer_state mMixerStatus; // current cycle
560 // previous cycle when in prepareTracks_l()
561 mixer_state mMixerStatusIgnoringFastTracks;
562 // FIXME or a separate ready state per track
563
564 // FIXME move these declarations into the specific sub-class that needs them
565 // MIXER only
566 uint32_t sleepTimeShift;
567
568 // same as AudioFlinger::mStandbyTimeInNsecs except for DIRECT which uses a shorter value
569 nsecs_t standbyDelay;
570
571 // MIXER only
572 nsecs_t maxPeriod;
573
574 // DUPLICATING only
575 uint32_t writeFrames;
576
Eric Laurentbfb1b832013-01-07 09:53:42 -0800577 size_t mBytesRemaining;
578 size_t mCurrentWriteLength;
579 bool mUseAsyncWrite;
Eric Laurent3b4529e2013-09-05 18:09:19 -0700580 // mWriteAckSequence contains current write sequence on bits 31-1. The write sequence is
581 // incremented each time a write(), a flush() or a standby() occurs.
582 // Bit 0 is set when a write blocks and indicates a callback is expected.
583 // Bit 0 is reset by the async callback thread calling resetWriteBlocked(). Out of sequence
584 // callbacks are ignored.
585 uint32_t mWriteAckSequence;
586 // mDrainSequence contains current drain sequence on bits 31-1. The drain sequence is
587 // incremented each time a drain is requested or a flush() or standby() occurs.
588 // Bit 0 is set when the drain() command is called at the HAL and indicates a callback is
589 // expected.
590 // Bit 0 is reset by the async callback thread calling resetDraining(). Out of sequence
591 // callbacks are ignored.
592 uint32_t mDrainSequence;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800593 bool mSignalPending;
594 sp<AsyncCallbackThread> mCallbackThread;
595
Eric Laurent81784c32012-11-19 14:55:58 -0800596private:
597 // The HAL output sink is treated as non-blocking, but current implementation is blocking
598 sp<NBAIO_Sink> mOutputSink;
599 // If a fast mixer is present, the blocking pipe sink, otherwise clear
600 sp<NBAIO_Sink> mPipeSink;
601 // The current sink for the normal mixer to write it's (sub)mix, mOutputSink or mPipeSink
602 sp<NBAIO_Sink> mNormalSink;
Glenn Kasten46909e72013-02-26 09:20:22 -0800603#ifdef TEE_SINK
Eric Laurent81784c32012-11-19 14:55:58 -0800604 // For dumpsys
605 sp<NBAIO_Sink> mTeeSink;
606 sp<NBAIO_Source> mTeeSource;
Glenn Kasten46909e72013-02-26 09:20:22 -0800607#endif
Eric Laurent81784c32012-11-19 14:55:58 -0800608 uint32_t mScreenState; // cached copy of gScreenState
Glenn Kastenab7d72f2013-02-27 09:05:28 -0800609 static const size_t kFastMixerLogSize = 4 * 1024;
Glenn Kasten9e58b552013-01-18 15:09:48 -0800610 sp<NBLog::Writer> mFastMixerNBLogWriter;
Eric Laurent81784c32012-11-19 14:55:58 -0800611public:
612 virtual bool hasFastMixer() const = 0;
613 virtual FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex) const
614 { FastTrackUnderruns dummy; return dummy; }
615
616protected:
617 // accessed by both binder threads and within threadLoop(), lock on mutex needed
618 unsigned mFastTrackAvailMask; // bit i set if fast track [i] is available
Eric Laurentbfb1b832013-01-07 09:53:42 -0800619 virtual void flushOutput_l();
Glenn Kastenbd096fd2013-08-23 13:53:56 -0700620
621private:
622 // timestamp latch:
623 // D input is written by threadLoop_write while mutex is unlocked, and read while locked
624 // Q output is written while locked, and read while locked
625 struct {
626 AudioTimestamp mTimestamp;
627 uint32_t mUnpresentedFrames;
628 } mLatchD, mLatchQ;
629 bool mLatchDValid; // true means mLatchD is valid, and clock it into latch at next opportunity
630 bool mLatchQValid; // true means mLatchQ is valid
Eric Laurent81784c32012-11-19 14:55:58 -0800631};
632
633class MixerThread : public PlaybackThread {
634public:
635 MixerThread(const sp<AudioFlinger>& audioFlinger,
636 AudioStreamOut* output,
637 audio_io_handle_t id,
638 audio_devices_t device,
639 type_t type = MIXER);
640 virtual ~MixerThread();
641
642 // Thread virtuals
643
644 virtual bool checkForNewParameters_l();
645 virtual void dumpInternals(int fd, const Vector<String16>& args);
646
647protected:
648 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
649 virtual int getTrackName_l(audio_channel_mask_t channelMask, int sessionId);
650 virtual void deleteTrackName_l(int name);
651 virtual uint32_t idleSleepTimeUs() const;
652 virtual uint32_t suspendSleepTimeUs() const;
653 virtual void cacheParameters_l();
654
655 // threadLoop snippets
Eric Laurentbfb1b832013-01-07 09:53:42 -0800656 virtual ssize_t threadLoop_write();
Eric Laurent81784c32012-11-19 14:55:58 -0800657 virtual void threadLoop_standby();
658 virtual void threadLoop_mix();
659 virtual void threadLoop_sleepTime();
660 virtual void threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove);
661 virtual uint32_t correctLatency_l(uint32_t latency) const;
662
663 AudioMixer* mAudioMixer; // normal mixer
664private:
665 // one-time initialization, no locks required
666 FastMixer* mFastMixer; // non-NULL if there is also a fast mixer
667 sp<AudioWatchdog> mAudioWatchdog; // non-0 if there is an audio watchdog thread
668
669 // contents are not guaranteed to be consistent, no locks required
670 FastMixerDumpState mFastMixerDumpState;
671#ifdef STATE_QUEUE_DUMP
672 StateQueueObserverDump mStateQueueObserverDump;
673 StateQueueMutatorDump mStateQueueMutatorDump;
674#endif
675 AudioWatchdogDump mAudioWatchdogDump;
676
677 // accessible only within the threadLoop(), no locks required
678 // mFastMixer->sq() // for mutating and pushing state
679 int32_t mFastMixerFutex; // for cold idle
680
681public:
682 virtual bool hasFastMixer() const { return mFastMixer != NULL; }
683 virtual FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex) const {
684 ALOG_ASSERT(fastIndex < FastMixerState::kMaxFastTracks);
685 return mFastMixerDumpState.mTracks[fastIndex].mUnderruns;
686 }
687};
688
689class DirectOutputThread : public PlaybackThread {
690public:
691
692 DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
693 audio_io_handle_t id, audio_devices_t device);
694 virtual ~DirectOutputThread();
695
696 // Thread virtuals
697
698 virtual bool checkForNewParameters_l();
699
700protected:
701 virtual int getTrackName_l(audio_channel_mask_t channelMask, int sessionId);
702 virtual void deleteTrackName_l(int name);
703 virtual uint32_t activeSleepTimeUs() const;
704 virtual uint32_t idleSleepTimeUs() const;
705 virtual uint32_t suspendSleepTimeUs() const;
706 virtual void cacheParameters_l();
707
708 // threadLoop snippets
709 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
710 virtual void threadLoop_mix();
711 virtual void threadLoop_sleepTime();
712
Eric Laurent81784c32012-11-19 14:55:58 -0800713 // volumes last sent to audio HAL with stream->set_volume()
714 float mLeftVolFloat;
715 float mRightVolFloat;
716
Eric Laurentbfb1b832013-01-07 09:53:42 -0800717 DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
718 audio_io_handle_t id, uint32_t device, ThreadBase::type_t type);
719 void processVolume_l(Track *track, bool lastTrack);
720
Eric Laurent81784c32012-11-19 14:55:58 -0800721 // prepareTracks_l() tells threadLoop_mix() the name of the single active track
722 sp<Track> mActiveTrack;
723public:
724 virtual bool hasFastMixer() const { return false; }
725};
726
Eric Laurentbfb1b832013-01-07 09:53:42 -0800727class OffloadThread : public DirectOutputThread {
728public:
729
730 OffloadThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
731 audio_io_handle_t id, uint32_t device);
732 virtual ~OffloadThread();
733
734protected:
735 // threadLoop snippets
736 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
737 virtual void threadLoop_exit();
738 virtual void flushOutput_l();
739
740 virtual bool waitingAsyncCallback();
741 virtual bool waitingAsyncCallback_l();
742 virtual bool shouldStandby_l();
743
744private:
745 void flushHw_l();
746
747private:
748 bool mHwPaused;
749 bool mFlushPending;
750 size_t mPausedWriteLength; // length in bytes of write interrupted by pause
751 size_t mPausedBytesRemaining; // bytes still waiting in mixbuffer after resume
752 sp<Track> mPreviousTrack; // used to detect track switch
753};
754
755class AsyncCallbackThread : public Thread {
756public:
757
758 AsyncCallbackThread(const sp<OffloadThread>& offloadThread);
759
760 virtual ~AsyncCallbackThread();
761
762 // Thread virtuals
763 virtual bool threadLoop();
764
765 // RefBase
766 virtual void onFirstRef();
767
768 void exit();
Eric Laurent3b4529e2013-09-05 18:09:19 -0700769 void setWriteBlocked(uint32_t sequence);
770 void resetWriteBlocked();
771 void setDraining(uint32_t sequence);
772 void resetDraining();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800773
774private:
775 wp<OffloadThread> mOffloadThread;
Eric Laurent3b4529e2013-09-05 18:09:19 -0700776 // mWriteAckSequence corresponds to the last write sequence passed by the offload thread via
777 // setWriteBlocked(). The sequence is shifted one bit to the left and the lsb is used
778 // to indicate that the callback has been received via resetWriteBlocked()
779 uint32_t mWriteAckSequence;
780 // mDrainSequence corresponds to the last drain sequence passed by the offload thread via
781 // setDraining(). The sequence is shifted one bit to the left and the lsb is used
782 // to indicate that the callback has been received via resetDraining()
783 uint32_t mDrainSequence;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800784 Condition mWaitWorkCV;
785 Mutex mLock;
786};
787
Eric Laurent81784c32012-11-19 14:55:58 -0800788class DuplicatingThread : public MixerThread {
789public:
790 DuplicatingThread(const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
791 audio_io_handle_t id);
792 virtual ~DuplicatingThread();
793
794 // Thread virtuals
795 void addOutputTrack(MixerThread* thread);
796 void removeOutputTrack(MixerThread* thread);
797 uint32_t waitTimeMs() const { return mWaitTimeMs; }
798protected:
799 virtual uint32_t activeSleepTimeUs() const;
800
801private:
802 bool outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks);
803protected:
804 // threadLoop snippets
805 virtual void threadLoop_mix();
806 virtual void threadLoop_sleepTime();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800807 virtual ssize_t threadLoop_write();
Eric Laurent81784c32012-11-19 14:55:58 -0800808 virtual void threadLoop_standby();
809 virtual void cacheParameters_l();
810
811private:
812 // called from threadLoop, addOutputTrack, removeOutputTrack
813 virtual void updateWaitTime_l();
814protected:
815 virtual void saveOutputTracks();
816 virtual void clearOutputTracks();
817private:
818
819 uint32_t mWaitTimeMs;
820 SortedVector < sp<OutputTrack> > outputTracks;
821 SortedVector < sp<OutputTrack> > mOutputTracks;
822public:
823 virtual bool hasFastMixer() const { return false; }
824};
825
826
827// record thread
828class RecordThread : public ThreadBase, public AudioBufferProvider
829 // derives from AudioBufferProvider interface for use by resampler
830{
831public:
832
833#include "RecordTracks.h"
834
835 RecordThread(const sp<AudioFlinger>& audioFlinger,
836 AudioStreamIn *input,
837 uint32_t sampleRate,
838 audio_channel_mask_t channelMask,
839 audio_io_handle_t id,
Eric Laurentd3922f72013-02-01 17:57:04 -0800840 audio_devices_t outDevice,
Glenn Kasten46909e72013-02-26 09:20:22 -0800841 audio_devices_t inDevice
842#ifdef TEE_SINK
843 , const sp<NBAIO_Sink>& teeSink
844#endif
845 );
Eric Laurent81784c32012-11-19 14:55:58 -0800846 virtual ~RecordThread();
847
848 // no addTrack_l ?
849 void destroyTrack_l(const sp<RecordTrack>& track);
850 void removeTrack_l(const sp<RecordTrack>& track);
851
852 void dumpInternals(int fd, const Vector<String16>& args);
853 void dumpTracks(int fd, const Vector<String16>& args);
854
855 // Thread virtuals
856 virtual bool threadLoop();
857 virtual status_t readyToRun();
858
859 // RefBase
860 virtual void onFirstRef();
861
862 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
863 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
864 const sp<AudioFlinger::Client>& client,
865 uint32_t sampleRate,
866 audio_format_t format,
867 audio_channel_mask_t channelMask,
868 size_t frameCount,
869 int sessionId,
Glenn Kastenddb0ccf2013-07-31 16:14:50 -0700870 IAudioFlinger::track_flags_t *flags,
Eric Laurent81784c32012-11-19 14:55:58 -0800871 pid_t tid,
872 status_t *status);
873
874 status_t start(RecordTrack* recordTrack,
875 AudioSystem::sync_event_t event,
876 int triggerSession);
877
878 // ask the thread to stop the specified track, and
879 // return true if the caller should then do it's part of the stopping process
Glenn Kastena8356f62013-07-25 14:37:52 -0700880 bool stop(RecordTrack* recordTrack);
Eric Laurent81784c32012-11-19 14:55:58 -0800881
882 void dump(int fd, const Vector<String16>& args);
883 AudioStreamIn* clearInput();
884 virtual audio_stream_t* stream() const;
885
886 // AudioBufferProvider interface
887 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
888 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
889
890 virtual bool checkForNewParameters_l();
891 virtual String8 getParameters(const String8& keys);
892 virtual void audioConfigChanged_l(int event, int param = 0);
893 void readInputParameters();
894 virtual unsigned int getInputFramesLost();
895
896 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
897 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
898 virtual uint32_t hasAudioSession(int sessionId) const;
899
900 // Return the set of unique session IDs across all tracks.
901 // The keys are the session IDs, and the associated values are meaningless.
902 // FIXME replace by Set [and implement Bag/Multiset for other uses].
903 KeyedVector<int, bool> sessionIds() const;
904
905 virtual status_t setSyncEvent(const sp<SyncEvent>& event);
906 virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const;
907
908 static void syncStartEventCallback(const wp<SyncEvent>& event);
909 void handleSyncStartEvent(const sp<SyncEvent>& event);
910
Glenn Kasten9b58f632013-07-16 11:37:48 -0700911 virtual size_t frameCount() const { return mFrameCount; }
Glenn Kasten90e58b12013-07-31 16:16:02 -0700912 bool hasFastRecorder() const { return false; }
Glenn Kasten9b58f632013-07-16 11:37:48 -0700913
Eric Laurent81784c32012-11-19 14:55:58 -0800914private:
915 void clearSyncStartEvent();
916
917 // Enter standby if not already in standby, and set mStandby flag
918 void standby();
919
920 // Call the HAL standby method unconditionally, and don't change mStandby flag
921 void inputStandBy();
922
923 AudioStreamIn *mInput;
924 SortedVector < sp<RecordTrack> > mTracks;
925 // mActiveTrack has dual roles: it indicates the current active track, and
926 // is used together with mStartStopCond to indicate start()/stop() progress
927 sp<RecordTrack> mActiveTrack;
928 Condition mStartStopCond;
Glenn Kasten9b58f632013-07-16 11:37:48 -0700929
930 // updated by RecordThread::readInputParameters()
Eric Laurent81784c32012-11-19 14:55:58 -0800931 AudioResampler *mResampler;
Glenn Kasten34af0262013-07-30 11:52:39 -0700932 // interleaved stereo pairs of fixed-point signed Q19.12
Eric Laurent81784c32012-11-19 14:55:58 -0800933 int32_t *mRsmpOutBuffer;
Glenn Kasten34af0262013-07-30 11:52:39 -0700934 int16_t *mRsmpInBuffer; // [mFrameCount * mChannelCount]
Eric Laurent81784c32012-11-19 14:55:58 -0800935 size_t mRsmpInIndex;
Glenn Kasten548efc92012-11-29 08:48:51 -0800936 size_t mBufferSize; // stream buffer size for read()
Eric Laurent81784c32012-11-19 14:55:58 -0800937 const uint32_t mReqChannelCount;
938 const uint32_t mReqSampleRate;
939 ssize_t mBytesRead;
940 // sync event triggering actual audio capture. Frames read before this event will
941 // be dropped and therefore not read by the application.
942 sp<SyncEvent> mSyncStartEvent;
943 // number of captured frames to drop after the start sync event has been received.
944 // when < 0, maximum frames to drop before starting capture even if sync event is
945 // not received
946 ssize_t mFramestoDrop;
947
948 // For dumpsys
949 const sp<NBAIO_Sink> mTeeSink;
950};