blob: 99c42fc0e46f3d6ef2b55dd18b492fb0871a95dd [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;
Glenn Kasten70949c42013-08-06 07:40:12 -0700273 size_t mBufferSize; // HAL buffer size for read() or write()
Eric Laurent81784c32012-11-19 14:55:58 -0800274
275 // Parameter sequence by client: binder thread calling setParameters():
276 // 1. Lock mLock
277 // 2. Append to mNewParameters
278 // 3. mWaitWorkCV.signal
279 // 4. mParamCond.waitRelative with timeout
280 // 5. read mParamStatus
281 // 6. mWaitWorkCV.signal
282 // 7. Unlock
283 //
284 // Parameter sequence by server: threadLoop calling checkForNewParameters_l():
285 // 1. Lock mLock
286 // 2. If there is an entry in mNewParameters proceed ...
287 // 2. Read first entry in mNewParameters
288 // 3. Process
289 // 4. Remove first entry from mNewParameters
290 // 5. Set mParamStatus
291 // 6. mParamCond.signal
292 // 7. mWaitWorkCV.wait with timeout (this is to avoid overwriting mParamStatus)
293 // 8. Unlock
294 Condition mParamCond;
295 Vector<String8> mNewParameters;
296 status_t mParamStatus;
297
Glenn Kastenc6ae3c82013-07-17 09:08:51 -0700298 // vector owns each ConfigEvent *, so must delete after removing
Eric Laurent81784c32012-11-19 14:55:58 -0800299 Vector<ConfigEvent *> mConfigEvents;
300
301 // These fields are written and read by thread itself without lock or barrier,
302 // and read by other threads without lock or barrier via standby() , outDevice()
303 // and inDevice().
304 // Because of the absence of a lock or barrier, any other thread that reads
305 // these fields must use the information in isolation, or be prepared to deal
306 // with possibility that it might be inconsistent with other information.
307 bool mStandby; // Whether thread is currently in standby.
308 audio_devices_t mOutDevice; // output device
309 audio_devices_t mInDevice; // input device
310 audio_source_t mAudioSource; // (see audio.h, audio_source_t)
311
312 const audio_io_handle_t mId;
313 Vector< sp<EffectChain> > mEffectChains;
314
315 static const int kNameLength = 16; // prctl(PR_SET_NAME) limit
316 char mName[kNameLength];
317 sp<IPowerManager> mPowerManager;
318 sp<IBinder> mWakeLockToken;
319 const sp<PMDeathRecipient> mDeathRecipient;
320 // list of suspended effects per session and per type. The first vector is
321 // keyed by session ID, the second by type UUID timeLow field
322 KeyedVector< int, KeyedVector< int, sp<SuspendedSessionDesc> > >
323 mSuspendedSessions;
Glenn Kastenab7d72f2013-02-27 09:05:28 -0800324 static const size_t kLogSize = 4 * 1024;
Glenn Kasten9e58b552013-01-18 15:09:48 -0800325 sp<NBLog::Writer> mNBLogWriter;
Eric Laurent81784c32012-11-19 14:55:58 -0800326};
327
328// --- PlaybackThread ---
329class PlaybackThread : public ThreadBase {
330public:
331
332#include "PlaybackTracks.h"
333
334 enum mixer_state {
335 MIXER_IDLE, // no active tracks
336 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
Eric Laurentbfb1b832013-01-07 09:53:42 -0800337 MIXER_TRACKS_READY, // at least one active track, and at least one track has data
338 MIXER_DRAIN_TRACK, // drain currently playing track
339 MIXER_DRAIN_ALL, // fully drain the hardware
Eric Laurent81784c32012-11-19 14:55:58 -0800340 // standby mode does not have an enum value
341 // suspend by audio policy manager is orthogonal to mixer state
342 };
343
Eric Laurentbfb1b832013-01-07 09:53:42 -0800344 // retry count before removing active track in case of underrun on offloaded thread:
345 // we need to make sure that AudioTrack client has enough time to send large buffers
346//FIXME may be more appropriate if expressed in time units. Need to revise how underrun is handled
347 // for offloaded tracks
348 static const int8_t kMaxTrackRetriesOffload = 20;
349
Eric Laurent81784c32012-11-19 14:55:58 -0800350 PlaybackThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
351 audio_io_handle_t id, audio_devices_t device, type_t type);
352 virtual ~PlaybackThread();
353
354 void dump(int fd, const Vector<String16>& args);
355
356 // Thread virtuals
357 virtual status_t readyToRun();
358 virtual bool threadLoop();
359
360 // RefBase
361 virtual void onFirstRef();
362
363protected:
364 // Code snippets that were lifted up out of threadLoop()
365 virtual void threadLoop_mix() = 0;
366 virtual void threadLoop_sleepTime() = 0;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800367 virtual ssize_t threadLoop_write();
368 virtual void threadLoop_drain();
Eric Laurent81784c32012-11-19 14:55:58 -0800369 virtual void threadLoop_standby();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800370 virtual void threadLoop_exit();
Eric Laurent81784c32012-11-19 14:55:58 -0800371 virtual void threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove);
372
373 // prepareTracks_l reads and writes mActiveTracks, and returns
374 // the pending set of tracks to remove via Vector 'tracksToRemove'. The caller
375 // is responsible for clearing or destroying this Vector later on, when it
376 // is safe to do so. That will drop the final ref count and destroy the tracks.
377 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove) = 0;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800378 void removeTracks_l(const Vector< sp<Track> >& tracksToRemove);
379
380 void writeCallback();
381 void setWriteBlocked(bool value);
382 void drainCallback();
383 void setDraining(bool value);
384
385 static int asyncCallback(stream_callback_event_t event, void *param, void *cookie);
386
387 virtual bool waitingAsyncCallback();
388 virtual bool waitingAsyncCallback_l();
389 virtual bool shouldStandby_l();
390
Eric Laurent81784c32012-11-19 14:55:58 -0800391
392 // ThreadBase virtuals
393 virtual void preExit();
394
395public:
396
397 virtual status_t initCheck() const { return (mOutput == NULL) ? NO_INIT : NO_ERROR; }
398
399 // return estimated latency in milliseconds, as reported by HAL
400 uint32_t latency() const;
401 // same, but lock must already be held
402 uint32_t latency_l() const;
403
404 void setMasterVolume(float value);
405 void setMasterMute(bool muted);
406
407 void setStreamVolume(audio_stream_type_t stream, float value);
408 void setStreamMute(audio_stream_type_t stream, bool muted);
409
410 float streamVolume(audio_stream_type_t stream) const;
411
412 sp<Track> createTrack_l(
413 const sp<AudioFlinger::Client>& client,
414 audio_stream_type_t streamType,
415 uint32_t sampleRate,
416 audio_format_t format,
417 audio_channel_mask_t channelMask,
418 size_t frameCount,
419 const sp<IMemory>& sharedBuffer,
420 int sessionId,
421 IAudioFlinger::track_flags_t *flags,
422 pid_t tid,
423 status_t *status);
424
425 AudioStreamOut* getOutput() const;
426 AudioStreamOut* clearOutput();
427 virtual audio_stream_t* stream() const;
428
429 // a very large number of suspend() will eventually wraparound, but unlikely
430 void suspend() { (void) android_atomic_inc(&mSuspended); }
431 void restore()
432 {
433 // if restore() is done without suspend(), get back into
434 // range so that the next suspend() will operate correctly
435 if (android_atomic_dec(&mSuspended) <= 0) {
436 android_atomic_release_store(0, &mSuspended);
437 }
438 }
439 bool isSuspended() const
440 { return android_atomic_acquire_load(&mSuspended) > 0; }
441
442 virtual String8 getParameters(const String8& keys);
443 virtual void audioConfigChanged_l(int event, int param = 0);
444 status_t getRenderPosition(size_t *halFrames, size_t *dspFrames);
445 int16_t *mixBuffer() const { return mMixBuffer; };
446
447 virtual void detachAuxEffect_l(int effectId);
448 status_t attachAuxEffect(const sp<AudioFlinger::PlaybackThread::Track> track,
449 int EffectId);
450 status_t attachAuxEffect_l(const sp<AudioFlinger::PlaybackThread::Track> track,
451 int EffectId);
452
453 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
454 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
455 virtual uint32_t hasAudioSession(int sessionId) const;
456 virtual uint32_t getStrategyForSession_l(int sessionId);
457
458
459 virtual status_t setSyncEvent(const sp<SyncEvent>& event);
460 virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const;
Glenn Kastenfb1fdc92013-07-10 17:03:19 -0700461
462 // called with AudioFlinger lock held
Eric Laurent81784c32012-11-19 14:55:58 -0800463 void invalidateTracks(audio_stream_type_t streamType);
464
Glenn Kasten9b58f632013-07-16 11:37:48 -0700465 virtual size_t frameCount() const { return mNormalFrameCount; }
466
467 // Return's the HAL's frame count i.e. fast mixer buffer size.
468 size_t frameCountHAL() const { return mFrameCount; }
Eric Laurent81784c32012-11-19 14:55:58 -0800469
470protected:
Glenn Kasten9b58f632013-07-16 11:37:48 -0700471 // updated by readOutputParameters()
472 size_t mNormalFrameCount; // normal mixer and effects
473
Eric Laurentbfb1b832013-01-07 09:53:42 -0800474 int16_t* mMixBuffer; // frame size aligned mix buffer
475 int8_t* mAllocMixBuffer; // mixer buffer allocation address
Eric Laurent81784c32012-11-19 14:55:58 -0800476
477 // suspend count, > 0 means suspended. While suspended, the thread continues to pull from
478 // tracks and mix, but doesn't write to HAL. A2DP and SCO HAL implementations can't handle
479 // concurrent use of both of them, so Audio Policy Service suspends one of the threads to
480 // workaround that restriction.
481 // 'volatile' means accessed via atomic operations and no lock.
482 volatile int32_t mSuspended;
483
484 // FIXME overflows every 6+ hours at 44.1 kHz stereo 16-bit samples
485 // mFramesWritten would be better, or 64-bit even better
486 size_t mBytesWritten;
487private:
488 // mMasterMute is in both PlaybackThread and in AudioFlinger. When a
489 // PlaybackThread needs to find out if master-muted, it checks it's local
490 // copy rather than the one in AudioFlinger. This optimization saves a lock.
491 bool mMasterMute;
492 void setMasterMute_l(bool muted) { mMasterMute = muted; }
493protected:
494 SortedVector< wp<Track> > mActiveTracks; // FIXME check if this could be sp<>
495
496 // Allocate a track name for a given channel mask.
497 // Returns name >= 0 if successful, -1 on failure.
498 virtual int getTrackName_l(audio_channel_mask_t channelMask, int sessionId) = 0;
499 virtual void deleteTrackName_l(int name) = 0;
500
501 // Time to sleep between cycles when:
502 virtual uint32_t activeSleepTimeUs() const; // mixer state MIXER_TRACKS_ENABLED
503 virtual uint32_t idleSleepTimeUs() const = 0; // mixer state MIXER_IDLE
504 virtual uint32_t suspendSleepTimeUs() const = 0; // audio policy manager suspended us
505 // No sleep when mixer state == MIXER_TRACKS_READY; relies on audio HAL stream->write()
506 // No sleep in standby mode; waits on a condition
507
508 // Code snippets that are temporarily lifted up out of threadLoop() until the merge
509 void checkSilentMode_l();
510
511 // Non-trivial for DUPLICATING only
512 virtual void saveOutputTracks() { }
513 virtual void clearOutputTracks() { }
514
515 // Cache various calculated values, at threadLoop() entry and after a parameter change
516 virtual void cacheParameters_l();
517
518 virtual uint32_t correctLatency_l(uint32_t latency) const;
519
520private:
521
522 friend class AudioFlinger; // for numerous
523
524 PlaybackThread(const Client&);
525 PlaybackThread& operator = (const PlaybackThread&);
526
527 status_t addTrack_l(const sp<Track>& track);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800528 bool destroyTrack_l(const sp<Track>& track);
Eric Laurent81784c32012-11-19 14:55:58 -0800529 void removeTrack_l(const sp<Track>& track);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800530 void signal_l();
Eric Laurent81784c32012-11-19 14:55:58 -0800531
532 void readOutputParameters();
533
534 virtual void dumpInternals(int fd, const Vector<String16>& args);
535 void dumpTracks(int fd, const Vector<String16>& args);
536
537 SortedVector< sp<Track> > mTracks;
538 // mStreamTypes[] uses 1 additional stream type internally for the OutputTrack used by
539 // DuplicatingThread
540 stream_type_t mStreamTypes[AUDIO_STREAM_CNT + 1];
541 AudioStreamOut *mOutput;
542
543 float mMasterVolume;
544 nsecs_t mLastWriteTime;
545 int mNumWrites;
546 int mNumDelayedWrites;
547 bool mInWrite;
548
549 // FIXME rename these former local variables of threadLoop to standard "m" names
550 nsecs_t standbyTime;
551 size_t mixBufferSize;
552
553 // cached copies of activeSleepTimeUs() and idleSleepTimeUs() made by cacheParameters_l()
554 uint32_t activeSleepTime;
555 uint32_t idleSleepTime;
556
557 uint32_t sleepTime;
558
559 // mixer status returned by prepareTracks_l()
560 mixer_state mMixerStatus; // current cycle
561 // previous cycle when in prepareTracks_l()
562 mixer_state mMixerStatusIgnoringFastTracks;
563 // FIXME or a separate ready state per track
564
565 // FIXME move these declarations into the specific sub-class that needs them
566 // MIXER only
567 uint32_t sleepTimeShift;
568
569 // same as AudioFlinger::mStandbyTimeInNsecs except for DIRECT which uses a shorter value
570 nsecs_t standbyDelay;
571
572 // MIXER only
573 nsecs_t maxPeriod;
574
575 // DUPLICATING only
576 uint32_t writeFrames;
577
Eric Laurentbfb1b832013-01-07 09:53:42 -0800578 size_t mBytesRemaining;
579 size_t mCurrentWriteLength;
580 bool mUseAsyncWrite;
581 bool mWriteBlocked;
582 bool mDraining;
583 bool mSignalPending;
584 sp<AsyncCallbackThread> mCallbackThread;
585
Eric Laurent81784c32012-11-19 14:55:58 -0800586private:
587 // The HAL output sink is treated as non-blocking, but current implementation is blocking
588 sp<NBAIO_Sink> mOutputSink;
589 // If a fast mixer is present, the blocking pipe sink, otherwise clear
590 sp<NBAIO_Sink> mPipeSink;
591 // The current sink for the normal mixer to write it's (sub)mix, mOutputSink or mPipeSink
592 sp<NBAIO_Sink> mNormalSink;
Glenn Kasten46909e72013-02-26 09:20:22 -0800593#ifdef TEE_SINK
Eric Laurent81784c32012-11-19 14:55:58 -0800594 // For dumpsys
595 sp<NBAIO_Sink> mTeeSink;
596 sp<NBAIO_Source> mTeeSource;
Glenn Kasten46909e72013-02-26 09:20:22 -0800597#endif
Eric Laurent81784c32012-11-19 14:55:58 -0800598 uint32_t mScreenState; // cached copy of gScreenState
Glenn Kastenab7d72f2013-02-27 09:05:28 -0800599 static const size_t kFastMixerLogSize = 4 * 1024;
Glenn Kasten9e58b552013-01-18 15:09:48 -0800600 sp<NBLog::Writer> mFastMixerNBLogWriter;
Eric Laurent81784c32012-11-19 14:55:58 -0800601public:
602 virtual bool hasFastMixer() const = 0;
603 virtual FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex) const
604 { FastTrackUnderruns dummy; return dummy; }
605
606protected:
607 // accessed by both binder threads and within threadLoop(), lock on mutex needed
608 unsigned mFastTrackAvailMask; // bit i set if fast track [i] is available
Eric Laurentbfb1b832013-01-07 09:53:42 -0800609 virtual void flushOutput_l();
Eric Laurent81784c32012-11-19 14:55:58 -0800610};
611
612class MixerThread : public PlaybackThread {
613public:
614 MixerThread(const sp<AudioFlinger>& audioFlinger,
615 AudioStreamOut* output,
616 audio_io_handle_t id,
617 audio_devices_t device,
618 type_t type = MIXER);
619 virtual ~MixerThread();
620
621 // Thread virtuals
622
623 virtual bool checkForNewParameters_l();
624 virtual void dumpInternals(int fd, const Vector<String16>& args);
625
626protected:
627 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
628 virtual int getTrackName_l(audio_channel_mask_t channelMask, int sessionId);
629 virtual void deleteTrackName_l(int name);
630 virtual uint32_t idleSleepTimeUs() const;
631 virtual uint32_t suspendSleepTimeUs() const;
632 virtual void cacheParameters_l();
633
634 // threadLoop snippets
Eric Laurentbfb1b832013-01-07 09:53:42 -0800635 virtual ssize_t threadLoop_write();
Eric Laurent81784c32012-11-19 14:55:58 -0800636 virtual void threadLoop_standby();
637 virtual void threadLoop_mix();
638 virtual void threadLoop_sleepTime();
639 virtual void threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove);
640 virtual uint32_t correctLatency_l(uint32_t latency) const;
641
642 AudioMixer* mAudioMixer; // normal mixer
643private:
644 // one-time initialization, no locks required
645 FastMixer* mFastMixer; // non-NULL if there is also a fast mixer
646 sp<AudioWatchdog> mAudioWatchdog; // non-0 if there is an audio watchdog thread
647
648 // contents are not guaranteed to be consistent, no locks required
649 FastMixerDumpState mFastMixerDumpState;
650#ifdef STATE_QUEUE_DUMP
651 StateQueueObserverDump mStateQueueObserverDump;
652 StateQueueMutatorDump mStateQueueMutatorDump;
653#endif
654 AudioWatchdogDump mAudioWatchdogDump;
655
656 // accessible only within the threadLoop(), no locks required
657 // mFastMixer->sq() // for mutating and pushing state
658 int32_t mFastMixerFutex; // for cold idle
659
660public:
661 virtual bool hasFastMixer() const { return mFastMixer != NULL; }
662 virtual FastTrackUnderruns getFastTrackUnderruns(size_t fastIndex) const {
663 ALOG_ASSERT(fastIndex < FastMixerState::kMaxFastTracks);
664 return mFastMixerDumpState.mTracks[fastIndex].mUnderruns;
665 }
666};
667
668class DirectOutputThread : public PlaybackThread {
669public:
670
671 DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
672 audio_io_handle_t id, audio_devices_t device);
673 virtual ~DirectOutputThread();
674
675 // Thread virtuals
676
677 virtual bool checkForNewParameters_l();
678
679protected:
680 virtual int getTrackName_l(audio_channel_mask_t channelMask, int sessionId);
681 virtual void deleteTrackName_l(int name);
682 virtual uint32_t activeSleepTimeUs() const;
683 virtual uint32_t idleSleepTimeUs() const;
684 virtual uint32_t suspendSleepTimeUs() const;
685 virtual void cacheParameters_l();
686
687 // threadLoop snippets
688 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
689 virtual void threadLoop_mix();
690 virtual void threadLoop_sleepTime();
691
Eric Laurent81784c32012-11-19 14:55:58 -0800692 // volumes last sent to audio HAL with stream->set_volume()
693 float mLeftVolFloat;
694 float mRightVolFloat;
695
Eric Laurentbfb1b832013-01-07 09:53:42 -0800696 DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
697 audio_io_handle_t id, uint32_t device, ThreadBase::type_t type);
698 void processVolume_l(Track *track, bool lastTrack);
699
Eric Laurent81784c32012-11-19 14:55:58 -0800700 // prepareTracks_l() tells threadLoop_mix() the name of the single active track
701 sp<Track> mActiveTrack;
702public:
703 virtual bool hasFastMixer() const { return false; }
704};
705
Eric Laurentbfb1b832013-01-07 09:53:42 -0800706class OffloadThread : public DirectOutputThread {
707public:
708
709 OffloadThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
710 audio_io_handle_t id, uint32_t device);
711 virtual ~OffloadThread();
712
713protected:
714 // threadLoop snippets
715 virtual mixer_state prepareTracks_l(Vector< sp<Track> > *tracksToRemove);
716 virtual void threadLoop_exit();
717 virtual void flushOutput_l();
718
719 virtual bool waitingAsyncCallback();
720 virtual bool waitingAsyncCallback_l();
721 virtual bool shouldStandby_l();
722
723private:
724 void flushHw_l();
725
726private:
727 bool mHwPaused;
728 bool mFlushPending;
729 size_t mPausedWriteLength; // length in bytes of write interrupted by pause
730 size_t mPausedBytesRemaining; // bytes still waiting in mixbuffer after resume
731 sp<Track> mPreviousTrack; // used to detect track switch
732};
733
734class AsyncCallbackThread : public Thread {
735public:
736
737 AsyncCallbackThread(const sp<OffloadThread>& offloadThread);
738
739 virtual ~AsyncCallbackThread();
740
741 // Thread virtuals
742 virtual bool threadLoop();
743
744 // RefBase
745 virtual void onFirstRef();
746
747 void exit();
748 void setWriteBlocked(bool value);
749 void setDraining(bool value);
750
751private:
752 wp<OffloadThread> mOffloadThread;
753 bool mWriteBlocked;
754 bool mDraining;
755 Condition mWaitWorkCV;
756 Mutex mLock;
757};
758
Eric Laurent81784c32012-11-19 14:55:58 -0800759class DuplicatingThread : public MixerThread {
760public:
761 DuplicatingThread(const sp<AudioFlinger>& audioFlinger, MixerThread* mainThread,
762 audio_io_handle_t id);
763 virtual ~DuplicatingThread();
764
765 // Thread virtuals
766 void addOutputTrack(MixerThread* thread);
767 void removeOutputTrack(MixerThread* thread);
768 uint32_t waitTimeMs() const { return mWaitTimeMs; }
769protected:
770 virtual uint32_t activeSleepTimeUs() const;
771
772private:
773 bool outputsReady(const SortedVector< sp<OutputTrack> > &outputTracks);
774protected:
775 // threadLoop snippets
776 virtual void threadLoop_mix();
777 virtual void threadLoop_sleepTime();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800778 virtual ssize_t threadLoop_write();
Eric Laurent81784c32012-11-19 14:55:58 -0800779 virtual void threadLoop_standby();
780 virtual void cacheParameters_l();
781
782private:
783 // called from threadLoop, addOutputTrack, removeOutputTrack
784 virtual void updateWaitTime_l();
785protected:
786 virtual void saveOutputTracks();
787 virtual void clearOutputTracks();
788private:
789
790 uint32_t mWaitTimeMs;
791 SortedVector < sp<OutputTrack> > outputTracks;
792 SortedVector < sp<OutputTrack> > mOutputTracks;
793public:
794 virtual bool hasFastMixer() const { return false; }
795};
796
797
798// record thread
799class RecordThread : public ThreadBase, public AudioBufferProvider
800 // derives from AudioBufferProvider interface for use by resampler
801{
802public:
803
804#include "RecordTracks.h"
805
806 RecordThread(const sp<AudioFlinger>& audioFlinger,
807 AudioStreamIn *input,
808 uint32_t sampleRate,
809 audio_channel_mask_t channelMask,
810 audio_io_handle_t id,
Eric Laurentd3922f72013-02-01 17:57:04 -0800811 audio_devices_t outDevice,
Glenn Kasten46909e72013-02-26 09:20:22 -0800812 audio_devices_t inDevice
813#ifdef TEE_SINK
814 , const sp<NBAIO_Sink>& teeSink
815#endif
816 );
Eric Laurent81784c32012-11-19 14:55:58 -0800817 virtual ~RecordThread();
818
819 // no addTrack_l ?
820 void destroyTrack_l(const sp<RecordTrack>& track);
821 void removeTrack_l(const sp<RecordTrack>& track);
822
823 void dumpInternals(int fd, const Vector<String16>& args);
824 void dumpTracks(int fd, const Vector<String16>& args);
825
826 // Thread virtuals
827 virtual bool threadLoop();
828 virtual status_t readyToRun();
829
830 // RefBase
831 virtual void onFirstRef();
832
833 virtual status_t initCheck() const { return (mInput == NULL) ? NO_INIT : NO_ERROR; }
834 sp<AudioFlinger::RecordThread::RecordTrack> createRecordTrack_l(
835 const sp<AudioFlinger::Client>& client,
836 uint32_t sampleRate,
837 audio_format_t format,
838 audio_channel_mask_t channelMask,
839 size_t frameCount,
840 int sessionId,
841 IAudioFlinger::track_flags_t flags,
842 pid_t tid,
843 status_t *status);
844
845 status_t start(RecordTrack* recordTrack,
846 AudioSystem::sync_event_t event,
847 int triggerSession);
848
849 // ask the thread to stop the specified track, and
850 // return true if the caller should then do it's part of the stopping process
Glenn Kastena8356f62013-07-25 14:37:52 -0700851 bool stop(RecordTrack* recordTrack);
Eric Laurent81784c32012-11-19 14:55:58 -0800852
853 void dump(int fd, const Vector<String16>& args);
854 AudioStreamIn* clearInput();
855 virtual audio_stream_t* stream() const;
856
857 // AudioBufferProvider interface
858 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
859 virtual void releaseBuffer(AudioBufferProvider::Buffer* buffer);
860
861 virtual bool checkForNewParameters_l();
862 virtual String8 getParameters(const String8& keys);
863 virtual void audioConfigChanged_l(int event, int param = 0);
864 void readInputParameters();
865 virtual unsigned int getInputFramesLost();
866
867 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
868 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain);
869 virtual uint32_t hasAudioSession(int sessionId) const;
870
871 // Return the set of unique session IDs across all tracks.
872 // The keys are the session IDs, and the associated values are meaningless.
873 // FIXME replace by Set [and implement Bag/Multiset for other uses].
874 KeyedVector<int, bool> sessionIds() const;
875
876 virtual status_t setSyncEvent(const sp<SyncEvent>& event);
877 virtual bool isValidSyncEvent(const sp<SyncEvent>& event) const;
878
879 static void syncStartEventCallback(const wp<SyncEvent>& event);
880 void handleSyncStartEvent(const sp<SyncEvent>& event);
881
Glenn Kasten9b58f632013-07-16 11:37:48 -0700882 virtual size_t frameCount() const { return mFrameCount; }
883
Eric Laurent81784c32012-11-19 14:55:58 -0800884private:
885 void clearSyncStartEvent();
886
887 // Enter standby if not already in standby, and set mStandby flag
888 void standby();
889
890 // Call the HAL standby method unconditionally, and don't change mStandby flag
891 void inputStandBy();
892
893 AudioStreamIn *mInput;
894 SortedVector < sp<RecordTrack> > mTracks;
895 // mActiveTrack has dual roles: it indicates the current active track, and
896 // is used together with mStartStopCond to indicate start()/stop() progress
897 sp<RecordTrack> mActiveTrack;
898 Condition mStartStopCond;
Glenn Kasten9b58f632013-07-16 11:37:48 -0700899
900 // updated by RecordThread::readInputParameters()
Eric Laurent81784c32012-11-19 14:55:58 -0800901 AudioResampler *mResampler;
Glenn Kasten34af0262013-07-30 11:52:39 -0700902 // interleaved stereo pairs of fixed-point signed Q19.12
Eric Laurent81784c32012-11-19 14:55:58 -0800903 int32_t *mRsmpOutBuffer;
Glenn Kasten34af0262013-07-30 11:52:39 -0700904 int16_t *mRsmpInBuffer; // [mFrameCount * mChannelCount]
Eric Laurent81784c32012-11-19 14:55:58 -0800905 size_t mRsmpInIndex;
Eric Laurent81784c32012-11-19 14:55:58 -0800906 const uint32_t mReqChannelCount;
907 const uint32_t mReqSampleRate;
908 ssize_t mBytesRead;
909 // sync event triggering actual audio capture. Frames read before this event will
910 // be dropped and therefore not read by the application.
911 sp<SyncEvent> mSyncStartEvent;
912 // number of captured frames to drop after the start sync event has been received.
913 // when < 0, maximum frames to drop before starting capture even if sync event is
914 // not received
915 ssize_t mFramestoDrop;
916
917 // For dumpsys
918 const sp<NBAIO_Sink> mTeeSink;
919};