blob: fa20752d1821dfca25a170a0a948a40cc284fc5f [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
19#define LOG_TAG "AudioFlinger"
20//#define LOG_NDEBUG 0
Alex Ray371eb972012-11-30 11:11:54 -080021#define ATRACE_TAG ATRACE_TAG_AUDIO
Eric Laurent81784c32012-11-19 14:55:58 -080022
Glenn Kasten153b9fe2013-07-15 11:23:36 -070023#include "Configuration.h"
Eric Laurent81784c32012-11-19 14:55:58 -080024#include <math.h>
25#include <fcntl.h>
26#include <sys/stat.h>
27#include <cutils/properties.h>
Glenn Kasten1ab85ec2013-05-31 09:18:43 -070028#include <media/AudioParameter.h>
Andy Hungcd044842014-08-07 11:04:34 -070029#include <media/AudioResamplerPublic.h>
Eric Laurent81784c32012-11-19 14:55:58 -080030#include <utils/Log.h>
Alex Ray371eb972012-11-30 11:11:54 -080031#include <utils/Trace.h>
Eric Laurent81784c32012-11-19 14:55:58 -080032
33#include <private/media/AudioTrackShared.h>
34#include <hardware/audio.h>
35#include <audio_effects/effect_ns.h>
36#include <audio_effects/effect_aec.h>
37#include <audio_utils/primitives.h>
Andy Hung98ef9782014-03-04 14:46:50 -080038#include <audio_utils/format.h>
Glenn Kastenc56f3422014-03-21 17:53:17 -070039#include <audio_utils/minifloat.h>
Eric Laurent81784c32012-11-19 14:55:58 -080040
41// NBAIO implementations
Glenn Kasten6dbb5e32014-05-13 10:38:42 -070042#include <media/nbaio/AudioStreamInSource.h>
Eric Laurent81784c32012-11-19 14:55:58 -080043#include <media/nbaio/AudioStreamOutSink.h>
44#include <media/nbaio/MonoPipe.h>
45#include <media/nbaio/MonoPipeReader.h>
46#include <media/nbaio/Pipe.h>
47#include <media/nbaio/PipeReader.h>
48#include <media/nbaio/SourceAudioBufferProvider.h>
49
50#include <powermanager/PowerManager.h>
51
52#include <common_time/cc_helper.h>
53#include <common_time/local_clock.h>
54
55#include "AudioFlinger.h"
56#include "AudioMixer.h"
57#include "FastMixer.h"
Glenn Kasten6dbb5e32014-05-13 10:38:42 -070058#include "FastCapture.h"
Eric Laurent81784c32012-11-19 14:55:58 -080059#include "ServiceUtilities.h"
60#include "SchedulingPolicyService.h"
61
Eric Laurent81784c32012-11-19 14:55:58 -080062#ifdef ADD_BATTERY_DATA
63#include <media/IMediaPlayerService.h>
64#include <media/IMediaDeathNotifier.h>
65#endif
66
Eric Laurent81784c32012-11-19 14:55:58 -080067#ifdef DEBUG_CPU_USAGE
68#include <cpustats/CentralTendencyStatistics.h>
69#include <cpustats/ThreadCpuUsage.h>
70#endif
71
72// ----------------------------------------------------------------------------
73
74// Note: the following macro is used for extremely verbose logging message. In
75// order to run with ALOG_ASSERT turned on, we need to have LOG_NDEBUG set to
76// 0; but one side effect of this is to turn all LOGV's as well. Some messages
77// are so verbose that we want to suppress them even when we have ALOG_ASSERT
78// turned on. Do not uncomment the #def below unless you really know what you
79// are doing and want to see all of the extremely verbose messages.
80//#define VERY_VERY_VERBOSE_LOGGING
81#ifdef VERY_VERY_VERBOSE_LOGGING
82#define ALOGVV ALOGV
83#else
84#define ALOGVV(a...) do { } while(0)
85#endif
86
Glenn Kasten49d00ad2014-07-21 11:22:03 -070087#define max(a, b) ((a) > (b) ? (a) : (b))
88
Eric Laurent81784c32012-11-19 14:55:58 -080089namespace android {
90
91// retry counts for buffer fill timeout
92// 50 * ~20msecs = 1 second
93static const int8_t kMaxTrackRetries = 50;
94static const int8_t kMaxTrackStartupRetries = 50;
95// allow less retry attempts on direct output thread.
96// direct outputs can be a scarce resource in audio hardware and should
97// be released as quickly as possible.
98static const int8_t kMaxTrackRetriesDirect = 2;
99
100// don't warn about blocked writes or record buffer overflows more often than this
101static const nsecs_t kWarningThrottleNs = seconds(5);
102
103// RecordThread loop sleep time upon application overrun or audio HAL read error
104static const int kRecordThreadSleepUs = 5000;
105
Eric Laurent10351942014-05-08 18:49:52 -0700106// maximum time to wait in sendConfigEvent_l() for a status to be received
107static const nsecs_t kConfigEventTimeoutNs = seconds(2);
Eric Laurent81784c32012-11-19 14:55:58 -0800108
109// minimum sleep time for the mixer thread loop when tracks are active but in underrun
110static const uint32_t kMinThreadSleepTimeUs = 5000;
111// maximum divider applied to the active sleep time in the mixer thread loop
112static const uint32_t kMaxThreadSleepTimeShift = 2;
113
Andy Hung09a50072014-02-27 14:30:47 -0800114// minimum normal sink buffer size, expressed in milliseconds rather than frames
115static const uint32_t kMinNormalSinkBufferSizeMs = 20;
116// maximum normal sink buffer size
117static const uint32_t kMaxNormalSinkBufferSizeMs = 24;
Eric Laurent81784c32012-11-19 14:55:58 -0800118
Eric Laurent972a1732013-09-04 09:42:59 -0700119// Offloaded output thread standby delay: allows track transition without going to standby
120static const nsecs_t kOffloadStandbyDelayNs = seconds(1);
121
Eric Laurent81784c32012-11-19 14:55:58 -0800122// Whether to use fast mixer
123static const enum {
124 FastMixer_Never, // never initialize or use: for debugging only
125 FastMixer_Always, // always initialize and use, even if not needed: for debugging only
126 // normal mixer multiplier is 1
127 FastMixer_Static, // initialize if needed, then use all the time if initialized,
128 // multiplier is calculated based on min & max normal mixer buffer size
129 FastMixer_Dynamic, // initialize if needed, then use dynamically depending on track load,
130 // multiplier is calculated based on min & max normal mixer buffer size
131 // FIXME for FastMixer_Dynamic:
132 // Supporting this option will require fixing HALs that can't handle large writes.
133 // For example, one HAL implementation returns an error from a large write,
134 // and another HAL implementation corrupts memory, possibly in the sample rate converter.
135 // We could either fix the HAL implementations, or provide a wrapper that breaks
136 // up large writes into smaller ones, and the wrapper would need to deal with scheduler.
137} kUseFastMixer = FastMixer_Static;
138
Glenn Kasten6dbb5e32014-05-13 10:38:42 -0700139// Whether to use fast capture
140static const enum {
141 FastCapture_Never, // never initialize or use: for debugging only
142 FastCapture_Always, // always initialize and use, even if not needed: for debugging only
143 FastCapture_Static, // initialize if needed, then use all the time if initialized
144} kUseFastCapture = FastCapture_Static;
145
Eric Laurent81784c32012-11-19 14:55:58 -0800146// Priorities for requestPriority
147static const int kPriorityAudioApp = 2;
148static const int kPriorityFastMixer = 3;
Glenn Kasten6dbb5e32014-05-13 10:38:42 -0700149static const int kPriorityFastCapture = 3;
Eric Laurent81784c32012-11-19 14:55:58 -0800150
151// IAudioFlinger::createTrack() reports back to client the total size of shared memory area
152// for the track. The client then sub-divides this into smaller buffers for its use.
Glenn Kastenb5fed682013-12-03 09:06:43 -0800153// Currently the client uses N-buffering by default, but doesn't tell us about the value of N.
154// So for now we just assume that client is double-buffered for fast tracks.
155// FIXME It would be better for client to tell AudioFlinger the value of N,
156// so AudioFlinger could allocate the right amount of memory.
Eric Laurent81784c32012-11-19 14:55:58 -0800157// See the client's minBufCount and mNotificationFramesAct calculations for details.
Glenn Kasten03490092014-05-27 12:30:54 -0700158
159// This is the default value, if not specified by property.
Glenn Kastenb5fed682013-12-03 09:06:43 -0800160static const int kFastTrackMultiplier = 2;
Eric Laurent81784c32012-11-19 14:55:58 -0800161
Glenn Kasten03490092014-05-27 12:30:54 -0700162// The minimum and maximum allowed values
163static const int kFastTrackMultiplierMin = 1;
164static const int kFastTrackMultiplierMax = 2;
165
166// The actual value to use, which can be specified per-device via property af.fast_track_multiplier.
167static int sFastTrackMultiplier = kFastTrackMultiplier;
168
Glenn Kastenb880f5e2014-05-07 08:43:45 -0700169// See Thread::readOnlyHeap().
170// Initially this heap is used to allocate client buffers for "fast" AudioRecord.
171// Eventually it will be the single buffer that FastCapture writes into via HAL read(),
172// and that all "fast" AudioRecord clients read from. In either case, the size can be small.
Glenn Kasten9f81de32014-07-27 15:02:23 -0700173static const size_t kRecordThreadReadOnlyHeapSize = 0x2000;
Glenn Kastenb880f5e2014-05-07 08:43:45 -0700174
Eric Laurent81784c32012-11-19 14:55:58 -0800175// ----------------------------------------------------------------------------
176
Glenn Kasten03490092014-05-27 12:30:54 -0700177static pthread_once_t sFastTrackMultiplierOnce = PTHREAD_ONCE_INIT;
178
179static void sFastTrackMultiplierInit()
180{
181 char value[PROPERTY_VALUE_MAX];
182 if (property_get("af.fast_track_multiplier", value, NULL) > 0) {
183 char *endptr;
184 unsigned long ul = strtoul(value, &endptr, 0);
185 if (*endptr == '\0' && kFastTrackMultiplierMin <= ul && ul <= kFastTrackMultiplierMax) {
186 sFastTrackMultiplier = (int) ul;
187 }
188 }
189}
190
191// ----------------------------------------------------------------------------
192
Eric Laurent81784c32012-11-19 14:55:58 -0800193#ifdef ADD_BATTERY_DATA
194// To collect the amplifier usage
195static void addBatteryData(uint32_t params) {
196 sp<IMediaPlayerService> service = IMediaDeathNotifier::getMediaPlayerService();
197 if (service == NULL) {
198 // it already logged
199 return;
200 }
201
202 service->addBatteryData(params);
203}
204#endif
205
206
207// ----------------------------------------------------------------------------
208// CPU Stats
209// ----------------------------------------------------------------------------
210
211class CpuStats {
212public:
213 CpuStats();
214 void sample(const String8 &title);
215#ifdef DEBUG_CPU_USAGE
216private:
217 ThreadCpuUsage mCpuUsage; // instantaneous thread CPU usage in wall clock ns
218 CentralTendencyStatistics mWcStats; // statistics on thread CPU usage in wall clock ns
219
220 CentralTendencyStatistics mHzStats; // statistics on thread CPU usage in cycles
221
222 int mCpuNum; // thread's current CPU number
223 int mCpukHz; // frequency of thread's current CPU in kHz
224#endif
225};
226
227CpuStats::CpuStats()
228#ifdef DEBUG_CPU_USAGE
229 : mCpuNum(-1), mCpukHz(-1)
230#endif
231{
232}
233
Glenn Kasten0f11b512014-01-31 16:18:54 -0800234void CpuStats::sample(const String8 &title
235#ifndef DEBUG_CPU_USAGE
236 __unused
237#endif
238 ) {
Eric Laurent81784c32012-11-19 14:55:58 -0800239#ifdef DEBUG_CPU_USAGE
240 // get current thread's delta CPU time in wall clock ns
241 double wcNs;
242 bool valid = mCpuUsage.sampleAndEnable(wcNs);
243
244 // record sample for wall clock statistics
245 if (valid) {
246 mWcStats.sample(wcNs);
247 }
248
249 // get the current CPU number
250 int cpuNum = sched_getcpu();
251
252 // get the current CPU frequency in kHz
253 int cpukHz = mCpuUsage.getCpukHz(cpuNum);
254
255 // check if either CPU number or frequency changed
256 if (cpuNum != mCpuNum || cpukHz != mCpukHz) {
257 mCpuNum = cpuNum;
258 mCpukHz = cpukHz;
259 // ignore sample for purposes of cycles
260 valid = false;
261 }
262
263 // if no change in CPU number or frequency, then record sample for cycle statistics
264 if (valid && mCpukHz > 0) {
265 double cycles = wcNs * cpukHz * 0.000001;
266 mHzStats.sample(cycles);
267 }
268
269 unsigned n = mWcStats.n();
270 // mCpuUsage.elapsed() is expensive, so don't call it every loop
271 if ((n & 127) == 1) {
272 long long elapsed = mCpuUsage.elapsed();
273 if (elapsed >= DEBUG_CPU_USAGE * 1000000000LL) {
274 double perLoop = elapsed / (double) n;
275 double perLoop100 = perLoop * 0.01;
276 double perLoop1k = perLoop * 0.001;
277 double mean = mWcStats.mean();
278 double stddev = mWcStats.stddev();
279 double minimum = mWcStats.minimum();
280 double maximum = mWcStats.maximum();
281 double meanCycles = mHzStats.mean();
282 double stddevCycles = mHzStats.stddev();
283 double minCycles = mHzStats.minimum();
284 double maxCycles = mHzStats.maximum();
285 mCpuUsage.resetElapsed();
286 mWcStats.reset();
287 mHzStats.reset();
288 ALOGD("CPU usage for %s over past %.1f secs\n"
289 " (%u mixer loops at %.1f mean ms per loop):\n"
290 " us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n"
291 " %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f\n"
292 " MHz: mean=%.1f, stddev=%.1f, min=%.1f max=%.1f",
293 title.string(),
294 elapsed * .000000001, n, perLoop * .000001,
295 mean * .001,
296 stddev * .001,
297 minimum * .001,
298 maximum * .001,
299 mean / perLoop100,
300 stddev / perLoop100,
301 minimum / perLoop100,
302 maximum / perLoop100,
303 meanCycles / perLoop1k,
304 stddevCycles / perLoop1k,
305 minCycles / perLoop1k,
306 maxCycles / perLoop1k);
307
308 }
309 }
310#endif
311};
312
313// ----------------------------------------------------------------------------
314// ThreadBase
315// ----------------------------------------------------------------------------
316
317AudioFlinger::ThreadBase::ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id,
318 audio_devices_t outDevice, audio_devices_t inDevice, type_t type)
319 : Thread(false /*canCallJava*/),
320 mType(type),
Glenn Kasten9b58f632013-07-16 11:37:48 -0700321 mAudioFlinger(audioFlinger),
Glenn Kasten70949c42013-08-06 07:40:12 -0700322 // mSampleRate, mFrameCount, mChannelMask, mChannelCount, mFrameSize, mFormat, mBufferSize
Glenn Kastendeca2ae2014-02-07 10:25:56 -0800323 // are set by PlaybackThread::readOutputParameters_l() or
324 // RecordThread::readInputParameters_l()
Eric Laurentfd477972013-10-25 18:10:40 -0700325 //FIXME: mStandby should be true here. Is this some kind of hack?
Eric Laurent81784c32012-11-19 14:55:58 -0800326 mStandby(false), mOutDevice(outDevice), mInDevice(inDevice),
327 mAudioSource(AUDIO_SOURCE_DEFAULT), mId(id),
328 // mName will be set by concrete (non-virtual) subclass
329 mDeathRecipient(new PMDeathRecipient(this))
330{
331}
332
333AudioFlinger::ThreadBase::~ThreadBase()
334{
Glenn Kastenc6ae3c82013-07-17 09:08:51 -0700335 // mConfigEvents should be empty, but just in case it isn't, free the memory it owns
Glenn Kastenc6ae3c82013-07-17 09:08:51 -0700336 mConfigEvents.clear();
337
Eric Laurent81784c32012-11-19 14:55:58 -0800338 // do not lock the mutex in destructor
339 releaseWakeLock_l();
340 if (mPowerManager != 0) {
341 sp<IBinder> binder = mPowerManager->asBinder();
342 binder->unlinkToDeath(mDeathRecipient);
343 }
344}
345
Glenn Kastencf04c2c2013-08-06 07:41:16 -0700346status_t AudioFlinger::ThreadBase::readyToRun()
347{
348 status_t status = initCheck();
349 if (status == NO_ERROR) {
350 ALOGI("AudioFlinger's thread %p ready to run", this);
351 } else {
352 ALOGE("No working audio driver found.");
353 }
354 return status;
355}
356
Eric Laurent81784c32012-11-19 14:55:58 -0800357void AudioFlinger::ThreadBase::exit()
358{
359 ALOGV("ThreadBase::exit");
360 // do any cleanup required for exit to succeed
361 preExit();
362 {
363 // This lock prevents the following race in thread (uniprocessor for illustration):
364 // if (!exitPending()) {
365 // // context switch from here to exit()
366 // // exit() calls requestExit(), what exitPending() observes
367 // // exit() calls signal(), which is dropped since no waiters
368 // // context switch back from exit() to here
369 // mWaitWorkCV.wait(...);
370 // // now thread is hung
371 // }
372 AutoMutex lock(mLock);
373 requestExit();
374 mWaitWorkCV.broadcast();
375 }
376 // When Thread::requestExitAndWait is made virtual and this method is renamed to
377 // "virtual status_t requestExitAndWait()", replace by "return Thread::requestExitAndWait();"
378 requestExitAndWait();
379}
380
381status_t AudioFlinger::ThreadBase::setParameters(const String8& keyValuePairs)
382{
383 status_t status;
384
385 ALOGV("ThreadBase::setParameters() %s", keyValuePairs.string());
386 Mutex::Autolock _l(mLock);
387
Eric Laurent10351942014-05-08 18:49:52 -0700388 return sendSetParameterConfigEvent_l(keyValuePairs);
389}
390
391// sendConfigEvent_l() must be called with ThreadBase::mLock held
392// Can temporarily release the lock if waiting for a reply from processConfigEvents_l().
393status_t AudioFlinger::ThreadBase::sendConfigEvent_l(sp<ConfigEvent>& event)
394{
395 status_t status = NO_ERROR;
396
397 mConfigEvents.add(event);
398 ALOGV("sendConfigEvent_l() num events %d event %d", mConfigEvents.size(), event->mType);
Eric Laurent81784c32012-11-19 14:55:58 -0800399 mWaitWorkCV.signal();
Eric Laurent10351942014-05-08 18:49:52 -0700400 mLock.unlock();
401 {
402 Mutex::Autolock _l(event->mLock);
403 while (event->mWaitStatus) {
404 if (event->mCond.waitRelative(event->mLock, kConfigEventTimeoutNs) != NO_ERROR) {
405 event->mStatus = TIMED_OUT;
406 event->mWaitStatus = false;
407 }
408 }
409 status = event->mStatus;
Eric Laurent81784c32012-11-19 14:55:58 -0800410 }
Eric Laurent10351942014-05-08 18:49:52 -0700411 mLock.lock();
Eric Laurent81784c32012-11-19 14:55:58 -0800412 return status;
413}
414
415void AudioFlinger::ThreadBase::sendIoConfigEvent(int event, int param)
416{
417 Mutex::Autolock _l(mLock);
418 sendIoConfigEvent_l(event, param);
419}
420
421// sendIoConfigEvent_l() must be called with ThreadBase::mLock held
422void AudioFlinger::ThreadBase::sendIoConfigEvent_l(int event, int param)
423{
Eric Laurent10351942014-05-08 18:49:52 -0700424 sp<ConfigEvent> configEvent = (ConfigEvent *)new IoConfigEvent(event, param);
425 sendConfigEvent_l(configEvent);
Eric Laurent81784c32012-11-19 14:55:58 -0800426}
427
428// sendPrioConfigEvent_l() must be called with ThreadBase::mLock held
429void AudioFlinger::ThreadBase::sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio)
430{
Eric Laurent10351942014-05-08 18:49:52 -0700431 sp<ConfigEvent> configEvent = (ConfigEvent *)new PrioConfigEvent(pid, tid, prio);
432 sendConfigEvent_l(configEvent);
Eric Laurent81784c32012-11-19 14:55:58 -0800433}
434
Eric Laurent10351942014-05-08 18:49:52 -0700435// sendSetParameterConfigEvent_l() must be called with ThreadBase::mLock held
436status_t AudioFlinger::ThreadBase::sendSetParameterConfigEvent_l(const String8& keyValuePair)
Eric Laurent81784c32012-11-19 14:55:58 -0800437{
Eric Laurent10351942014-05-08 18:49:52 -0700438 sp<ConfigEvent> configEvent = (ConfigEvent *)new SetParameterConfigEvent(keyValuePair);
439 return sendConfigEvent_l(configEvent);
Glenn Kastenf7773312013-08-13 16:00:42 -0700440}
441
Eric Laurent1c333e22014-05-20 10:48:17 -0700442status_t AudioFlinger::ThreadBase::sendCreateAudioPatchConfigEvent(
443 const struct audio_patch *patch,
444 audio_patch_handle_t *handle)
445{
446 Mutex::Autolock _l(mLock);
447 sp<ConfigEvent> configEvent = (ConfigEvent *)new CreateAudioPatchConfigEvent(*patch, *handle);
448 status_t status = sendConfigEvent_l(configEvent);
449 if (status == NO_ERROR) {
450 CreateAudioPatchConfigEventData *data =
451 (CreateAudioPatchConfigEventData *)configEvent->mData.get();
452 *handle = data->mHandle;
453 }
454 return status;
455}
456
457status_t AudioFlinger::ThreadBase::sendReleaseAudioPatchConfigEvent(
458 const audio_patch_handle_t handle)
459{
460 Mutex::Autolock _l(mLock);
461 sp<ConfigEvent> configEvent = (ConfigEvent *)new ReleaseAudioPatchConfigEvent(handle);
462 return sendConfigEvent_l(configEvent);
463}
464
465
Glenn Kasten2cfbf882013-08-14 13:12:11 -0700466// post condition: mConfigEvents.isEmpty()
Eric Laurent021cf962014-05-13 10:18:14 -0700467void AudioFlinger::ThreadBase::processConfigEvents_l()
Glenn Kastenf7773312013-08-13 16:00:42 -0700468{
Eric Laurent10351942014-05-08 18:49:52 -0700469 bool configChanged = false;
470
Eric Laurent81784c32012-11-19 14:55:58 -0800471 while (!mConfigEvents.isEmpty()) {
Eric Laurent10351942014-05-08 18:49:52 -0700472 ALOGV("processConfigEvents_l() remaining events %d", mConfigEvents.size());
473 sp<ConfigEvent> event = mConfigEvents[0];
Eric Laurent81784c32012-11-19 14:55:58 -0800474 mConfigEvents.removeAt(0);
Eric Laurent10351942014-05-08 18:49:52 -0700475 switch (event->mType) {
Glenn Kasten3468e8a2013-08-13 16:01:22 -0700476 case CFG_EVENT_PRIO: {
Eric Laurent10351942014-05-08 18:49:52 -0700477 PrioConfigEventData *data = (PrioConfigEventData *)event->mData.get();
478 // FIXME Need to understand why this has to be done asynchronously
479 int err = requestPriority(data->mPid, data->mTid, data->mPrio,
Glenn Kasten3468e8a2013-08-13 16:01:22 -0700480 true /*asynchronous*/);
481 if (err != 0) {
482 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
Eric Laurent10351942014-05-08 18:49:52 -0700483 data->mPrio, data->mPid, data->mTid, err);
Glenn Kasten3468e8a2013-08-13 16:01:22 -0700484 }
485 } break;
486 case CFG_EVENT_IO: {
Eric Laurent10351942014-05-08 18:49:52 -0700487 IoConfigEventData *data = (IoConfigEventData *)event->mData.get();
Eric Laurent021cf962014-05-13 10:18:14 -0700488 audioConfigChanged(data->mEvent, data->mParam);
Eric Laurent10351942014-05-08 18:49:52 -0700489 } break;
490 case CFG_EVENT_SET_PARAMETER: {
491 SetParameterConfigEventData *data = (SetParameterConfigEventData *)event->mData.get();
492 if (checkForNewParameter_l(data->mKeyValuePairs, event->mStatus)) {
493 configChanged = true;
Glenn Kastend5418eb2013-08-14 13:11:06 -0700494 }
Glenn Kasten3468e8a2013-08-13 16:01:22 -0700495 } break;
Eric Laurent1c333e22014-05-20 10:48:17 -0700496 case CFG_EVENT_CREATE_AUDIO_PATCH: {
497 CreateAudioPatchConfigEventData *data =
498 (CreateAudioPatchConfigEventData *)event->mData.get();
499 event->mStatus = createAudioPatch_l(&data->mPatch, &data->mHandle);
500 } break;
501 case CFG_EVENT_RELEASE_AUDIO_PATCH: {
502 ReleaseAudioPatchConfigEventData *data =
503 (ReleaseAudioPatchConfigEventData *)event->mData.get();
504 event->mStatus = releaseAudioPatch_l(data->mHandle);
505 } break;
Glenn Kasten3468e8a2013-08-13 16:01:22 -0700506 default:
Eric Laurent10351942014-05-08 18:49:52 -0700507 ALOG_ASSERT(false, "processConfigEvents_l() unknown event type %d", event->mType);
Glenn Kasten3468e8a2013-08-13 16:01:22 -0700508 break;
Eric Laurent81784c32012-11-19 14:55:58 -0800509 }
Eric Laurent10351942014-05-08 18:49:52 -0700510 {
511 Mutex::Autolock _l(event->mLock);
512 if (event->mWaitStatus) {
513 event->mWaitStatus = false;
514 event->mCond.signal();
515 }
516 }
517 ALOGV_IF(mConfigEvents.isEmpty(), "processConfigEvents_l() DONE thread %p", this);
518 }
519
520 if (configChanged) {
521 cacheParameters_l();
Eric Laurent81784c32012-11-19 14:55:58 -0800522 }
Eric Laurent81784c32012-11-19 14:55:58 -0800523}
524
Marco Nelissenb2208842014-02-07 14:00:50 -0800525String8 channelMaskToString(audio_channel_mask_t mask, bool output) {
526 String8 s;
527 if (output) {
528 if (mask & AUDIO_CHANNEL_OUT_FRONT_LEFT) s.append("front-left, ");
529 if (mask & AUDIO_CHANNEL_OUT_FRONT_RIGHT) s.append("front-right, ");
530 if (mask & AUDIO_CHANNEL_OUT_FRONT_CENTER) s.append("front-center, ");
531 if (mask & AUDIO_CHANNEL_OUT_LOW_FREQUENCY) s.append("low freq, ");
532 if (mask & AUDIO_CHANNEL_OUT_BACK_LEFT) s.append("back-left, ");
533 if (mask & AUDIO_CHANNEL_OUT_BACK_RIGHT) s.append("back-right, ");
534 if (mask & AUDIO_CHANNEL_OUT_FRONT_LEFT_OF_CENTER) s.append("front-left-of-center, ");
535 if (mask & AUDIO_CHANNEL_OUT_FRONT_RIGHT_OF_CENTER) s.append("front-right-of-center, ");
536 if (mask & AUDIO_CHANNEL_OUT_BACK_CENTER) s.append("back-center, ");
537 if (mask & AUDIO_CHANNEL_OUT_SIDE_LEFT) s.append("side-left, ");
538 if (mask & AUDIO_CHANNEL_OUT_SIDE_RIGHT) s.append("side-right, ");
539 if (mask & AUDIO_CHANNEL_OUT_TOP_CENTER) s.append("top-center ,");
540 if (mask & AUDIO_CHANNEL_OUT_TOP_FRONT_LEFT) s.append("top-front-left, ");
541 if (mask & AUDIO_CHANNEL_OUT_TOP_FRONT_CENTER) s.append("top-front-center, ");
542 if (mask & AUDIO_CHANNEL_OUT_TOP_FRONT_RIGHT) s.append("top-front-right, ");
543 if (mask & AUDIO_CHANNEL_OUT_TOP_BACK_LEFT) s.append("top-back-left, ");
544 if (mask & AUDIO_CHANNEL_OUT_TOP_BACK_CENTER) s.append("top-back-center, " );
545 if (mask & AUDIO_CHANNEL_OUT_TOP_BACK_RIGHT) s.append("top-back-right, " );
546 if (mask & ~AUDIO_CHANNEL_OUT_ALL) s.append("unknown, ");
547 } else {
548 if (mask & AUDIO_CHANNEL_IN_LEFT) s.append("left, ");
549 if (mask & AUDIO_CHANNEL_IN_RIGHT) s.append("right, ");
550 if (mask & AUDIO_CHANNEL_IN_FRONT) s.append("front, ");
551 if (mask & AUDIO_CHANNEL_IN_BACK) s.append("back, ");
552 if (mask & AUDIO_CHANNEL_IN_LEFT_PROCESSED) s.append("left-processed, ");
553 if (mask & AUDIO_CHANNEL_IN_RIGHT_PROCESSED) s.append("right-processed, ");
554 if (mask & AUDIO_CHANNEL_IN_FRONT_PROCESSED) s.append("front-processed, ");
555 if (mask & AUDIO_CHANNEL_IN_BACK_PROCESSED) s.append("back-processed, ");
556 if (mask & AUDIO_CHANNEL_IN_PRESSURE) s.append("pressure, ");
557 if (mask & AUDIO_CHANNEL_IN_X_AXIS) s.append("X, ");
558 if (mask & AUDIO_CHANNEL_IN_Y_AXIS) s.append("Y, ");
559 if (mask & AUDIO_CHANNEL_IN_Z_AXIS) s.append("Z, ");
560 if (mask & AUDIO_CHANNEL_IN_VOICE_UPLINK) s.append("voice-uplink, ");
561 if (mask & AUDIO_CHANNEL_IN_VOICE_DNLINK) s.append("voice-dnlink, ");
562 if (mask & ~AUDIO_CHANNEL_IN_ALL) s.append("unknown, ");
563 }
564 int len = s.length();
565 if (s.length() > 2) {
566 char *str = s.lockBuffer(len);
567 s.unlockBuffer(len - 2);
568 }
569 return s;
570}
571
Glenn Kasten0f11b512014-01-31 16:18:54 -0800572void AudioFlinger::ThreadBase::dumpBase(int fd, const Vector<String16>& args __unused)
Eric Laurent81784c32012-11-19 14:55:58 -0800573{
574 const size_t SIZE = 256;
575 char buffer[SIZE];
576 String8 result;
577
578 bool locked = AudioFlinger::dumpTryLock(mLock);
579 if (!locked) {
Elliott Hughes87cebad2014-05-22 10:14:43 -0700580 dprintf(fd, "thread %p maybe dead locked\n", this);
Eric Laurent81784c32012-11-19 14:55:58 -0800581 }
582
Elliott Hughes87cebad2014-05-22 10:14:43 -0700583 dprintf(fd, " I/O handle: %d\n", mId);
584 dprintf(fd, " TID: %d\n", getTid());
585 dprintf(fd, " Standby: %s\n", mStandby ? "yes" : "no");
586 dprintf(fd, " Sample rate: %u\n", mSampleRate);
587 dprintf(fd, " HAL frame count: %zu\n", mFrameCount);
588 dprintf(fd, " HAL buffer size: %u bytes\n", mBufferSize);
589 dprintf(fd, " Channel Count: %u\n", mChannelCount);
590 dprintf(fd, " Channel Mask: 0x%08x (%s)\n", mChannelMask,
Marco Nelissenb2208842014-02-07 14:00:50 -0800591 channelMaskToString(mChannelMask, mType != RECORD).string());
Andy Hung463be252014-07-10 16:56:07 -0700592 dprintf(fd, " Format: 0x%x (%s)\n", mHALFormat, formatToString(mHALFormat));
Elliott Hughes87cebad2014-05-22 10:14:43 -0700593 dprintf(fd, " Frame size: %zu\n", mFrameSize);
594 dprintf(fd, " Pending config events:");
Marco Nelissenb2208842014-02-07 14:00:50 -0800595 size_t numConfig = mConfigEvents.size();
596 if (numConfig) {
597 for (size_t i = 0; i < numConfig; i++) {
598 mConfigEvents[i]->dump(buffer, SIZE);
Elliott Hughes87cebad2014-05-22 10:14:43 -0700599 dprintf(fd, "\n %s", buffer);
Marco Nelissenb2208842014-02-07 14:00:50 -0800600 }
Elliott Hughes87cebad2014-05-22 10:14:43 -0700601 dprintf(fd, "\n");
Marco Nelissenb2208842014-02-07 14:00:50 -0800602 } else {
Elliott Hughes87cebad2014-05-22 10:14:43 -0700603 dprintf(fd, " none\n");
Eric Laurent81784c32012-11-19 14:55:58 -0800604 }
Eric Laurent81784c32012-11-19 14:55:58 -0800605
606 if (locked) {
607 mLock.unlock();
608 }
609}
610
611void AudioFlinger::ThreadBase::dumpEffectChains(int fd, const Vector<String16>& args)
612{
613 const size_t SIZE = 256;
614 char buffer[SIZE];
615 String8 result;
616
Marco Nelissenb2208842014-02-07 14:00:50 -0800617 size_t numEffectChains = mEffectChains.size();
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +0000618 snprintf(buffer, SIZE, " %zu Effect Chains\n", numEffectChains);
Eric Laurent81784c32012-11-19 14:55:58 -0800619 write(fd, buffer, strlen(buffer));
620
Marco Nelissenb2208842014-02-07 14:00:50 -0800621 for (size_t i = 0; i < numEffectChains; ++i) {
Eric Laurent81784c32012-11-19 14:55:58 -0800622 sp<EffectChain> chain = mEffectChains[i];
623 if (chain != 0) {
624 chain->dump(fd, args);
625 }
626 }
627}
628
Marco Nelissene14a5d62013-10-03 08:51:24 -0700629void AudioFlinger::ThreadBase::acquireWakeLock(int uid)
Eric Laurent81784c32012-11-19 14:55:58 -0800630{
631 Mutex::Autolock _l(mLock);
Marco Nelissene14a5d62013-10-03 08:51:24 -0700632 acquireWakeLock_l(uid);
Eric Laurent81784c32012-11-19 14:55:58 -0800633}
634
Narayan Kamath014e7fa2013-10-14 15:03:38 +0100635String16 AudioFlinger::ThreadBase::getWakeLockTag()
636{
637 switch (mType) {
638 case MIXER:
639 return String16("AudioMix");
640 case DIRECT:
641 return String16("AudioDirectOut");
642 case DUPLICATING:
643 return String16("AudioDup");
644 case RECORD:
645 return String16("AudioIn");
646 case OFFLOAD:
647 return String16("AudioOffload");
648 default:
649 ALOG_ASSERT(false);
650 return String16("AudioUnknown");
651 }
652}
653
Marco Nelissene14a5d62013-10-03 08:51:24 -0700654void AudioFlinger::ThreadBase::acquireWakeLock_l(int uid)
Eric Laurent81784c32012-11-19 14:55:58 -0800655{
Marco Nelissen462fd2f2013-01-14 14:12:05 -0800656 getPowerManager_l();
Eric Laurent81784c32012-11-19 14:55:58 -0800657 if (mPowerManager != 0) {
658 sp<IBinder> binder = new BBinder();
Marco Nelissene14a5d62013-10-03 08:51:24 -0700659 status_t status;
660 if (uid >= 0) {
Eric Laurent547789d2013-10-04 11:46:55 -0700661 status = mPowerManager->acquireWakeLockWithUid(POWERMANAGER_PARTIAL_WAKE_LOCK,
Marco Nelissene14a5d62013-10-03 08:51:24 -0700662 binder,
Narayan Kamath014e7fa2013-10-14 15:03:38 +0100663 getWakeLockTag(),
Marco Nelissene14a5d62013-10-03 08:51:24 -0700664 String16("media"),
Glenn Kasten3abc2de2014-09-05 16:45:52 -0700665 uid,
666 true /* FIXME force oneway contrary to .aidl */);
Marco Nelissene14a5d62013-10-03 08:51:24 -0700667 } else {
Eric Laurent547789d2013-10-04 11:46:55 -0700668 status = mPowerManager->acquireWakeLock(POWERMANAGER_PARTIAL_WAKE_LOCK,
Marco Nelissene14a5d62013-10-03 08:51:24 -0700669 binder,
Narayan Kamath014e7fa2013-10-14 15:03:38 +0100670 getWakeLockTag(),
Glenn Kasten3abc2de2014-09-05 16:45:52 -0700671 String16("media"),
672 true /* FIXME force oneway contrary to .aidl */);
Marco Nelissene14a5d62013-10-03 08:51:24 -0700673 }
Eric Laurent81784c32012-11-19 14:55:58 -0800674 if (status == NO_ERROR) {
675 mWakeLockToken = binder;
676 }
677 ALOGV("acquireWakeLock_l() %s status %d", mName, status);
678 }
679}
680
681void AudioFlinger::ThreadBase::releaseWakeLock()
682{
683 Mutex::Autolock _l(mLock);
684 releaseWakeLock_l();
685}
686
687void AudioFlinger::ThreadBase::releaseWakeLock_l()
688{
689 if (mWakeLockToken != 0) {
690 ALOGV("releaseWakeLock_l() %s", mName);
691 if (mPowerManager != 0) {
Glenn Kasten3abc2de2014-09-05 16:45:52 -0700692 mPowerManager->releaseWakeLock(mWakeLockToken, 0,
693 true /* FIXME force oneway contrary to .aidl */);
Eric Laurent81784c32012-11-19 14:55:58 -0800694 }
695 mWakeLockToken.clear();
696 }
697}
698
Marco Nelissen462fd2f2013-01-14 14:12:05 -0800699void AudioFlinger::ThreadBase::updateWakeLockUids(const SortedVector<int> &uids) {
700 Mutex::Autolock _l(mLock);
701 updateWakeLockUids_l(uids);
702}
703
704void AudioFlinger::ThreadBase::getPowerManager_l() {
705
706 if (mPowerManager == 0) {
707 // use checkService() to avoid blocking if power service is not up yet
708 sp<IBinder> binder =
709 defaultServiceManager()->checkService(String16("power"));
710 if (binder == 0) {
711 ALOGW("Thread %s cannot connect to the power manager service", mName);
712 } else {
713 mPowerManager = interface_cast<IPowerManager>(binder);
714 binder->linkToDeath(mDeathRecipient);
715 }
716 }
717}
718
719void AudioFlinger::ThreadBase::updateWakeLockUids_l(const SortedVector<int> &uids) {
720
721 getPowerManager_l();
722 if (mWakeLockToken == NULL) {
723 ALOGE("no wake lock to update!");
724 return;
725 }
726 if (mPowerManager != 0) {
727 sp<IBinder> binder = new BBinder();
728 status_t status;
Glenn Kasten3abc2de2014-09-05 16:45:52 -0700729 status = mPowerManager->updateWakeLockUids(mWakeLockToken, uids.size(), uids.array(),
730 true /* FIXME force oneway contrary to .aidl */);
Marco Nelissen462fd2f2013-01-14 14:12:05 -0800731 ALOGV("acquireWakeLock_l() %s status %d", mName, status);
732 }
733}
734
Eric Laurent81784c32012-11-19 14:55:58 -0800735void AudioFlinger::ThreadBase::clearPowerManager()
736{
737 Mutex::Autolock _l(mLock);
738 releaseWakeLock_l();
739 mPowerManager.clear();
740}
741
Glenn Kasten0f11b512014-01-31 16:18:54 -0800742void AudioFlinger::ThreadBase::PMDeathRecipient::binderDied(const wp<IBinder>& who __unused)
Eric Laurent81784c32012-11-19 14:55:58 -0800743{
744 sp<ThreadBase> thread = mThread.promote();
745 if (thread != 0) {
746 thread->clearPowerManager();
747 }
748 ALOGW("power manager service died !!!");
749}
750
751void AudioFlinger::ThreadBase::setEffectSuspended(
752 const effect_uuid_t *type, bool suspend, int sessionId)
753{
754 Mutex::Autolock _l(mLock);
755 setEffectSuspended_l(type, suspend, sessionId);
756}
757
758void AudioFlinger::ThreadBase::setEffectSuspended_l(
759 const effect_uuid_t *type, bool suspend, int sessionId)
760{
761 sp<EffectChain> chain = getEffectChain_l(sessionId);
762 if (chain != 0) {
763 if (type != NULL) {
764 chain->setEffectSuspended_l(type, suspend);
765 } else {
766 chain->setEffectSuspendedAll_l(suspend);
767 }
768 }
769
770 updateSuspendedSessions_l(type, suspend, sessionId);
771}
772
773void AudioFlinger::ThreadBase::checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain)
774{
775 ssize_t index = mSuspendedSessions.indexOfKey(chain->sessionId());
776 if (index < 0) {
777 return;
778 }
779
780 const KeyedVector <int, sp<SuspendedSessionDesc> >& sessionEffects =
781 mSuspendedSessions.valueAt(index);
782
783 for (size_t i = 0; i < sessionEffects.size(); i++) {
784 sp<SuspendedSessionDesc> desc = sessionEffects.valueAt(i);
785 for (int j = 0; j < desc->mRefCount; j++) {
786 if (sessionEffects.keyAt(i) == EffectChain::kKeyForSuspendAll) {
787 chain->setEffectSuspendedAll_l(true);
788 } else {
789 ALOGV("checkSuspendOnAddEffectChain_l() suspending effects %08x",
790 desc->mType.timeLow);
791 chain->setEffectSuspended_l(&desc->mType, true);
792 }
793 }
794 }
795}
796
797void AudioFlinger::ThreadBase::updateSuspendedSessions_l(const effect_uuid_t *type,
798 bool suspend,
799 int sessionId)
800{
801 ssize_t index = mSuspendedSessions.indexOfKey(sessionId);
802
803 KeyedVector <int, sp<SuspendedSessionDesc> > sessionEffects;
804
805 if (suspend) {
806 if (index >= 0) {
807 sessionEffects = mSuspendedSessions.valueAt(index);
808 } else {
809 mSuspendedSessions.add(sessionId, sessionEffects);
810 }
811 } else {
812 if (index < 0) {
813 return;
814 }
815 sessionEffects = mSuspendedSessions.valueAt(index);
816 }
817
818
819 int key = EffectChain::kKeyForSuspendAll;
820 if (type != NULL) {
821 key = type->timeLow;
822 }
823 index = sessionEffects.indexOfKey(key);
824
825 sp<SuspendedSessionDesc> desc;
826 if (suspend) {
827 if (index >= 0) {
828 desc = sessionEffects.valueAt(index);
829 } else {
830 desc = new SuspendedSessionDesc();
831 if (type != NULL) {
832 desc->mType = *type;
833 }
834 sessionEffects.add(key, desc);
835 ALOGV("updateSuspendedSessions_l() suspend adding effect %08x", key);
836 }
837 desc->mRefCount++;
838 } else {
839 if (index < 0) {
840 return;
841 }
842 desc = sessionEffects.valueAt(index);
843 if (--desc->mRefCount == 0) {
844 ALOGV("updateSuspendedSessions_l() restore removing effect %08x", key);
845 sessionEffects.removeItemsAt(index);
846 if (sessionEffects.isEmpty()) {
847 ALOGV("updateSuspendedSessions_l() restore removing session %d",
848 sessionId);
849 mSuspendedSessions.removeItem(sessionId);
850 }
851 }
852 }
853 if (!sessionEffects.isEmpty()) {
854 mSuspendedSessions.replaceValueFor(sessionId, sessionEffects);
855 }
856}
857
858void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
859 bool enabled,
860 int sessionId)
861{
862 Mutex::Autolock _l(mLock);
863 checkSuspendOnEffectEnabled_l(effect, enabled, sessionId);
864}
865
866void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
867 bool enabled,
868 int sessionId)
869{
870 if (mType != RECORD) {
871 // suspend all effects in AUDIO_SESSION_OUTPUT_MIX when enabling any effect on
872 // another session. This gives the priority to well behaved effect control panels
873 // and applications not using global effects.
874 // Enabling post processing in AUDIO_SESSION_OUTPUT_STAGE session does not affect
875 // global effects
876 if ((sessionId != AUDIO_SESSION_OUTPUT_MIX) && (sessionId != AUDIO_SESSION_OUTPUT_STAGE)) {
877 setEffectSuspended_l(NULL, enabled, AUDIO_SESSION_OUTPUT_MIX);
878 }
879 }
880
881 sp<EffectChain> chain = getEffectChain_l(sessionId);
882 if (chain != 0) {
883 chain->checkSuspendOnEffectEnabled(effect, enabled);
884 }
885}
886
887// ThreadBase::createEffect_l() must be called with AudioFlinger::mLock held
888sp<AudioFlinger::EffectHandle> AudioFlinger::ThreadBase::createEffect_l(
889 const sp<AudioFlinger::Client>& client,
890 const sp<IEffectClient>& effectClient,
891 int32_t priority,
892 int sessionId,
893 effect_descriptor_t *desc,
894 int *enabled,
Glenn Kasten9156ef32013-08-06 15:39:08 -0700895 status_t *status)
Eric Laurent81784c32012-11-19 14:55:58 -0800896{
897 sp<EffectModule> effect;
898 sp<EffectHandle> handle;
899 status_t lStatus;
900 sp<EffectChain> chain;
901 bool chainCreated = false;
902 bool effectCreated = false;
903 bool effectRegistered = false;
904
905 lStatus = initCheck();
906 if (lStatus != NO_ERROR) {
907 ALOGW("createEffect_l() Audio driver not initialized.");
908 goto Exit;
909 }
910
Andy Hung98ef9782014-03-04 14:46:50 -0800911 // Reject any effect on Direct output threads for now, since the format of
912 // mSinkBuffer is not guaranteed to be compatible with effect processing (PCM 16 stereo).
913 if (mType == DIRECT) {
914 ALOGW("createEffect_l() Cannot add effect %s on Direct output type thread %s",
915 desc->name, mName);
916 lStatus = BAD_VALUE;
917 goto Exit;
918 }
919
Andy Hung389cfdb2014-08-07 17:49:53 -0700920 // Reject any effect on mixer or duplicating multichannel sinks.
Andy Hung9a592762014-07-21 21:56:01 -0700921 // TODO: fix both format and multichannel issues with effects.
Andy Hung389cfdb2014-08-07 17:49:53 -0700922 if ((mType == MIXER || mType == DUPLICATING) && mChannelCount != FCC_2) {
923 ALOGW("createEffect_l() Cannot add effect %s for multichannel(%d) %s threads",
924 desc->name, mChannelCount, mType == MIXER ? "MIXER" : "DUPLICATING");
Andy Hung9a592762014-07-21 21:56:01 -0700925 lStatus = BAD_VALUE;
926 goto Exit;
927 }
928
Eric Laurent5baf2af2013-09-12 17:37:00 -0700929 // Allow global effects only on offloaded and mixer threads
930 if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
931 switch (mType) {
932 case MIXER:
933 case OFFLOAD:
934 break;
935 case DIRECT:
936 case DUPLICATING:
937 case RECORD:
938 default:
939 ALOGW("createEffect_l() Cannot add global effect %s on thread %s", desc->name, mName);
940 lStatus = BAD_VALUE;
941 goto Exit;
942 }
Eric Laurent81784c32012-11-19 14:55:58 -0800943 }
Eric Laurent5baf2af2013-09-12 17:37:00 -0700944
Eric Laurent81784c32012-11-19 14:55:58 -0800945 // Only Pre processor effects are allowed on input threads and only on input threads
946 if ((mType == RECORD) != ((desc->flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_PRE_PROC)) {
947 ALOGW("createEffect_l() effect %s (flags %08x) created on wrong thread type %d",
948 desc->name, desc->flags, mType);
949 lStatus = BAD_VALUE;
950 goto Exit;
951 }
952
953 ALOGV("createEffect_l() thread %p effect %s on session %d", this, desc->name, sessionId);
954
955 { // scope for mLock
956 Mutex::Autolock _l(mLock);
957
958 // check for existing effect chain with the requested audio session
959 chain = getEffectChain_l(sessionId);
960 if (chain == 0) {
961 // create a new chain for this session
962 ALOGV("createEffect_l() new effect chain for session %d", sessionId);
963 chain = new EffectChain(this, sessionId);
964 addEffectChain_l(chain);
965 chain->setStrategy(getStrategyForSession_l(sessionId));
966 chainCreated = true;
967 } else {
968 effect = chain->getEffectFromDesc_l(desc);
969 }
970
971 ALOGV("createEffect_l() got effect %p on chain %p", effect.get(), chain.get());
972
973 if (effect == 0) {
974 int id = mAudioFlinger->nextUniqueId();
975 // Check CPU and memory usage
976 lStatus = AudioSystem::registerEffect(desc, mId, chain->strategy(), sessionId, id);
977 if (lStatus != NO_ERROR) {
978 goto Exit;
979 }
980 effectRegistered = true;
981 // create a new effect module if none present in the chain
982 effect = new EffectModule(this, chain, desc, id, sessionId);
983 lStatus = effect->status();
984 if (lStatus != NO_ERROR) {
985 goto Exit;
986 }
Eric Laurent5baf2af2013-09-12 17:37:00 -0700987 effect->setOffloaded(mType == OFFLOAD, mId);
988
Eric Laurent81784c32012-11-19 14:55:58 -0800989 lStatus = chain->addEffect_l(effect);
990 if (lStatus != NO_ERROR) {
991 goto Exit;
992 }
993 effectCreated = true;
994
995 effect->setDevice(mOutDevice);
996 effect->setDevice(mInDevice);
997 effect->setMode(mAudioFlinger->getMode());
998 effect->setAudioSource(mAudioSource);
999 }
1000 // create effect handle and connect it to effect module
1001 handle = new EffectHandle(effect, client, effectClient, priority);
Glenn Kastene75da402013-11-20 13:54:52 -08001002 lStatus = handle->initCheck();
1003 if (lStatus == OK) {
1004 lStatus = effect->addHandle(handle.get());
1005 }
Eric Laurent81784c32012-11-19 14:55:58 -08001006 if (enabled != NULL) {
1007 *enabled = (int)effect->isEnabled();
1008 }
1009 }
1010
1011Exit:
1012 if (lStatus != NO_ERROR && lStatus != ALREADY_EXISTS) {
1013 Mutex::Autolock _l(mLock);
1014 if (effectCreated) {
1015 chain->removeEffect_l(effect);
1016 }
1017 if (effectRegistered) {
1018 AudioSystem::unregisterEffect(effect->id());
1019 }
1020 if (chainCreated) {
1021 removeEffectChain_l(chain);
1022 }
1023 handle.clear();
1024 }
1025
Glenn Kasten9156ef32013-08-06 15:39:08 -07001026 *status = lStatus;
Eric Laurent81784c32012-11-19 14:55:58 -08001027 return handle;
1028}
1029
1030sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect(int sessionId, int effectId)
1031{
1032 Mutex::Autolock _l(mLock);
1033 return getEffect_l(sessionId, effectId);
1034}
1035
1036sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId)
1037{
1038 sp<EffectChain> chain = getEffectChain_l(sessionId);
1039 return chain != 0 ? chain->getEffectFromId_l(effectId) : 0;
1040}
1041
1042// PlaybackThread::addEffect_l() must be called with AudioFlinger::mLock and
1043// PlaybackThread::mLock held
1044status_t AudioFlinger::ThreadBase::addEffect_l(const sp<EffectModule>& effect)
1045{
1046 // check for existing effect chain with the requested audio session
1047 int sessionId = effect->sessionId();
1048 sp<EffectChain> chain = getEffectChain_l(sessionId);
1049 bool chainCreated = false;
1050
Eric Laurent5baf2af2013-09-12 17:37:00 -07001051 ALOGD_IF((mType == OFFLOAD) && !effect->isOffloadable(),
1052 "addEffect_l() on offloaded thread %p: effect %s does not support offload flags %x",
1053 this, effect->desc().name, effect->desc().flags);
1054
Eric Laurent81784c32012-11-19 14:55:58 -08001055 if (chain == 0) {
1056 // create a new chain for this session
1057 ALOGV("addEffect_l() new effect chain for session %d", sessionId);
1058 chain = new EffectChain(this, sessionId);
1059 addEffectChain_l(chain);
1060 chain->setStrategy(getStrategyForSession_l(sessionId));
1061 chainCreated = true;
1062 }
1063 ALOGV("addEffect_l() %p chain %p effect %p", this, chain.get(), effect.get());
1064
1065 if (chain->getEffectFromId_l(effect->id()) != 0) {
1066 ALOGW("addEffect_l() %p effect %s already present in chain %p",
1067 this, effect->desc().name, chain.get());
1068 return BAD_VALUE;
1069 }
1070
Eric Laurent5baf2af2013-09-12 17:37:00 -07001071 effect->setOffloaded(mType == OFFLOAD, mId);
1072
Eric Laurent81784c32012-11-19 14:55:58 -08001073 status_t status = chain->addEffect_l(effect);
1074 if (status != NO_ERROR) {
1075 if (chainCreated) {
1076 removeEffectChain_l(chain);
1077 }
1078 return status;
1079 }
1080
1081 effect->setDevice(mOutDevice);
1082 effect->setDevice(mInDevice);
1083 effect->setMode(mAudioFlinger->getMode());
1084 effect->setAudioSource(mAudioSource);
1085 return NO_ERROR;
1086}
1087
1088void AudioFlinger::ThreadBase::removeEffect_l(const sp<EffectModule>& effect) {
1089
1090 ALOGV("removeEffect_l() %p effect %p", this, effect.get());
1091 effect_descriptor_t desc = effect->desc();
1092 if ((desc.flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
1093 detachAuxEffect_l(effect->id());
1094 }
1095
1096 sp<EffectChain> chain = effect->chain().promote();
1097 if (chain != 0) {
1098 // remove effect chain if removing last effect
1099 if (chain->removeEffect_l(effect) == 0) {
1100 removeEffectChain_l(chain);
1101 }
1102 } else {
1103 ALOGW("removeEffect_l() %p cannot promote chain for effect %p", this, effect.get());
1104 }
1105}
1106
1107void AudioFlinger::ThreadBase::lockEffectChains_l(
1108 Vector< sp<AudioFlinger::EffectChain> >& effectChains)
1109{
1110 effectChains = mEffectChains;
1111 for (size_t i = 0; i < mEffectChains.size(); i++) {
1112 mEffectChains[i]->lock();
1113 }
1114}
1115
1116void AudioFlinger::ThreadBase::unlockEffectChains(
1117 const Vector< sp<AudioFlinger::EffectChain> >& effectChains)
1118{
1119 for (size_t i = 0; i < effectChains.size(); i++) {
1120 effectChains[i]->unlock();
1121 }
1122}
1123
1124sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain(int sessionId)
1125{
1126 Mutex::Autolock _l(mLock);
1127 return getEffectChain_l(sessionId);
1128}
1129
1130sp<AudioFlinger::EffectChain> AudioFlinger::ThreadBase::getEffectChain_l(int sessionId) const
1131{
1132 size_t size = mEffectChains.size();
1133 for (size_t i = 0; i < size; i++) {
1134 if (mEffectChains[i]->sessionId() == sessionId) {
1135 return mEffectChains[i];
1136 }
1137 }
1138 return 0;
1139}
1140
1141void AudioFlinger::ThreadBase::setMode(audio_mode_t mode)
1142{
1143 Mutex::Autolock _l(mLock);
1144 size_t size = mEffectChains.size();
1145 for (size_t i = 0; i < size; i++) {
1146 mEffectChains[i]->setMode_l(mode);
1147 }
1148}
1149
Eric Laurent83b88082014-06-20 18:31:16 -07001150void AudioFlinger::ThreadBase::getAudioPortConfig(struct audio_port_config *config)
1151{
1152 config->type = AUDIO_PORT_TYPE_MIX;
1153 config->ext.mix.handle = mId;
1154 config->sample_rate = mSampleRate;
1155 config->format = mFormat;
1156 config->channel_mask = mChannelMask;
1157 config->config_mask = AUDIO_PORT_CONFIG_SAMPLE_RATE|AUDIO_PORT_CONFIG_CHANNEL_MASK|
1158 AUDIO_PORT_CONFIG_FORMAT;
1159}
1160
1161
Eric Laurent81784c32012-11-19 14:55:58 -08001162// ----------------------------------------------------------------------------
1163// Playback
1164// ----------------------------------------------------------------------------
1165
1166AudioFlinger::PlaybackThread::PlaybackThread(const sp<AudioFlinger>& audioFlinger,
1167 AudioStreamOut* output,
1168 audio_io_handle_t id,
1169 audio_devices_t device,
1170 type_t type)
1171 : ThreadBase(audioFlinger, id, device, AUDIO_DEVICE_NONE, type),
Andy Hung2098f272014-02-27 14:00:06 -08001172 mNormalFrameCount(0), mSinkBuffer(NULL),
Andy Hung6146c082014-03-18 11:56:15 -07001173 mMixerBufferEnabled(AudioFlinger::kEnableExtendedPrecision),
Andy Hung69aed5f2014-02-25 17:24:40 -08001174 mMixerBuffer(NULL),
1175 mMixerBufferSize(0),
1176 mMixerBufferFormat(AUDIO_FORMAT_INVALID),
1177 mMixerBufferValid(false),
Andy Hung6146c082014-03-18 11:56:15 -07001178 mEffectBufferEnabled(AudioFlinger::kEnableExtendedPrecision),
Andy Hung98ef9782014-03-04 14:46:50 -08001179 mEffectBuffer(NULL),
1180 mEffectBufferSize(0),
1181 mEffectBufferFormat(AUDIO_FORMAT_INVALID),
1182 mEffectBufferValid(false),
Glenn Kastenc1fac192013-08-06 07:41:36 -07001183 mSuspended(0), mBytesWritten(0),
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001184 mActiveTracksGeneration(0),
Eric Laurent81784c32012-11-19 14:55:58 -08001185 // mStreamTypes[] initialized in constructor body
1186 mOutput(output),
1187 mLastWriteTime(0), mNumWrites(0), mNumDelayedWrites(0), mInWrite(false),
1188 mMixerStatus(MIXER_IDLE),
1189 mMixerStatusIgnoringFastTracks(MIXER_IDLE),
1190 standbyDelay(AudioFlinger::mStandbyTimeInNsecs),
Eric Laurentbfb1b832013-01-07 09:53:42 -08001191 mBytesRemaining(0),
1192 mCurrentWriteLength(0),
1193 mUseAsyncWrite(false),
Eric Laurent3b4529e2013-09-05 18:09:19 -07001194 mWriteAckSequence(0),
1195 mDrainSequence(0),
Eric Laurentede6c3b2013-09-19 14:37:46 -07001196 mSignalPending(false),
Eric Laurent81784c32012-11-19 14:55:58 -08001197 mScreenState(AudioFlinger::mScreenState),
1198 // index 0 is reserved for normal mixer's submix
Glenn Kastenbd096fd2013-08-23 13:53:56 -07001199 mFastTrackAvailMask(((1 << FastMixerState::kMaxFastTracks) - 1) & ~1),
1200 // mLatchD, mLatchQ,
1201 mLatchDValid(false), mLatchQValid(false)
Eric Laurent81784c32012-11-19 14:55:58 -08001202{
1203 snprintf(mName, kNameLength, "AudioOut_%X", id);
Glenn Kasten9e58b552013-01-18 15:09:48 -08001204 mNBLogWriter = audioFlinger->newWriter_l(kLogSize, mName);
Eric Laurent81784c32012-11-19 14:55:58 -08001205
1206 // Assumes constructor is called by AudioFlinger with it's mLock held, but
1207 // it would be safer to explicitly pass initial masterVolume/masterMute as
1208 // parameter.
1209 //
1210 // If the HAL we are using has support for master volume or master mute,
1211 // then do not attenuate or mute during mixing (just leave the volume at 1.0
1212 // and the mute set to false).
1213 mMasterVolume = audioFlinger->masterVolume_l();
1214 mMasterMute = audioFlinger->masterMute_l();
1215 if (mOutput && mOutput->audioHwDev) {
1216 if (mOutput->audioHwDev->canSetMasterVolume()) {
1217 mMasterVolume = 1.0;
1218 }
1219
1220 if (mOutput->audioHwDev->canSetMasterMute()) {
1221 mMasterMute = false;
1222 }
1223 }
1224
Glenn Kastendeca2ae2014-02-07 10:25:56 -08001225 readOutputParameters_l();
Eric Laurent81784c32012-11-19 14:55:58 -08001226
1227 // mStreamTypes[AUDIO_STREAM_CNT] is initialized by stream_type_t default constructor
1228 // There is no AUDIO_STREAM_MIN, and ++ operator does not compile
Glenn Kasten66e46352014-01-16 17:44:23 -08001229 for (audio_stream_type_t stream = AUDIO_STREAM_MIN; stream < AUDIO_STREAM_CNT;
Eric Laurent81784c32012-11-19 14:55:58 -08001230 stream = (audio_stream_type_t) (stream + 1)) {
1231 mStreamTypes[stream].volume = mAudioFlinger->streamVolume_l(stream);
1232 mStreamTypes[stream].mute = mAudioFlinger->streamMute_l(stream);
1233 }
1234 // mStreamTypes[AUDIO_STREAM_CNT] exists but isn't explicitly initialized here,
1235 // because mAudioFlinger doesn't have one to copy from
1236}
1237
1238AudioFlinger::PlaybackThread::~PlaybackThread()
1239{
Glenn Kasten9e58b552013-01-18 15:09:48 -08001240 mAudioFlinger->unregisterWriter(mNBLogWriter);
Andy Hung010a1a12014-03-13 13:57:33 -07001241 free(mSinkBuffer);
Andy Hung69aed5f2014-02-25 17:24:40 -08001242 free(mMixerBuffer);
Andy Hung98ef9782014-03-04 14:46:50 -08001243 free(mEffectBuffer);
Eric Laurent81784c32012-11-19 14:55:58 -08001244}
1245
1246void AudioFlinger::PlaybackThread::dump(int fd, const Vector<String16>& args)
1247{
1248 dumpInternals(fd, args);
1249 dumpTracks(fd, args);
1250 dumpEffectChains(fd, args);
1251}
1252
Glenn Kasten0f11b512014-01-31 16:18:54 -08001253void AudioFlinger::PlaybackThread::dumpTracks(int fd, const Vector<String16>& args __unused)
Eric Laurent81784c32012-11-19 14:55:58 -08001254{
1255 const size_t SIZE = 256;
1256 char buffer[SIZE];
1257 String8 result;
1258
Marco Nelissenb2208842014-02-07 14:00:50 -08001259 result.appendFormat(" Stream volumes in dB: ");
Eric Laurent81784c32012-11-19 14:55:58 -08001260 for (int i = 0; i < AUDIO_STREAM_CNT; ++i) {
1261 const stream_type_t *st = &mStreamTypes[i];
1262 if (i > 0) {
1263 result.appendFormat(", ");
1264 }
1265 result.appendFormat("%d:%.2g", i, 20.0 * log10(st->volume));
1266 if (st->mute) {
1267 result.append("M");
1268 }
1269 }
1270 result.append("\n");
1271 write(fd, result.string(), result.length());
1272 result.clear();
1273
Eric Laurent81784c32012-11-19 14:55:58 -08001274 // These values are "raw"; they will wrap around. See prepareTracks_l() for a better way.
1275 FastTrackUnderruns underruns = getFastTrackUnderruns(0);
Elliott Hughes87cebad2014-05-22 10:14:43 -07001276 dprintf(fd, " Normal mixer raw underrun counters: partial=%u empty=%u\n",
Eric Laurent81784c32012-11-19 14:55:58 -08001277 underruns.mBitFields.mPartial, underruns.mBitFields.mEmpty);
Marco Nelissenb2208842014-02-07 14:00:50 -08001278
1279 size_t numtracks = mTracks.size();
1280 size_t numactive = mActiveTracks.size();
Elliott Hughes87cebad2014-05-22 10:14:43 -07001281 dprintf(fd, " %d Tracks", numtracks);
Marco Nelissenb2208842014-02-07 14:00:50 -08001282 size_t numactiveseen = 0;
1283 if (numtracks) {
Elliott Hughes87cebad2014-05-22 10:14:43 -07001284 dprintf(fd, " of which %d are active\n", numactive);
Marco Nelissenb2208842014-02-07 14:00:50 -08001285 Track::appendDumpHeader(result);
1286 for (size_t i = 0; i < numtracks; ++i) {
1287 sp<Track> track = mTracks[i];
1288 if (track != 0) {
1289 bool active = mActiveTracks.indexOf(track) >= 0;
1290 if (active) {
1291 numactiveseen++;
1292 }
1293 track->dump(buffer, SIZE, active);
1294 result.append(buffer);
1295 }
1296 }
1297 } else {
1298 result.append("\n");
1299 }
1300 if (numactiveseen != numactive) {
1301 // some tracks in the active list were not in the tracks list
1302 snprintf(buffer, SIZE, " The following tracks are in the active list but"
1303 " not in the track list\n");
1304 result.append(buffer);
1305 Track::appendDumpHeader(result);
1306 for (size_t i = 0; i < numactive; ++i) {
1307 sp<Track> track = mActiveTracks[i].promote();
1308 if (track != 0 && mTracks.indexOf(track) < 0) {
1309 track->dump(buffer, SIZE, true);
1310 result.append(buffer);
1311 }
1312 }
1313 }
1314
1315 write(fd, result.string(), result.size());
Eric Laurent81784c32012-11-19 14:55:58 -08001316}
1317
1318void AudioFlinger::PlaybackThread::dumpInternals(int fd, const Vector<String16>& args)
1319{
Elliott Hughes87cebad2014-05-22 10:14:43 -07001320 dprintf(fd, "\nOutput thread %p:\n", this);
1321 dprintf(fd, " Normal frame count: %zu\n", mNormalFrameCount);
1322 dprintf(fd, " Last write occurred (msecs): %llu\n", ns2ms(systemTime() - mLastWriteTime));
1323 dprintf(fd, " Total writes: %d\n", mNumWrites);
1324 dprintf(fd, " Delayed writes: %d\n", mNumDelayedWrites);
1325 dprintf(fd, " Blocked in write: %s\n", mInWrite ? "yes" : "no");
1326 dprintf(fd, " Suspend count: %d\n", mSuspended);
1327 dprintf(fd, " Sink buffer : %p\n", mSinkBuffer);
1328 dprintf(fd, " Mixer buffer: %p\n", mMixerBuffer);
1329 dprintf(fd, " Effect buffer: %p\n", mEffectBuffer);
1330 dprintf(fd, " Fast track availMask=%#x\n", mFastTrackAvailMask);
Eric Laurent81784c32012-11-19 14:55:58 -08001331
1332 dumpBase(fd, args);
1333}
1334
1335// Thread virtuals
Eric Laurent81784c32012-11-19 14:55:58 -08001336
1337void AudioFlinger::PlaybackThread::onFirstRef()
1338{
1339 run(mName, ANDROID_PRIORITY_URGENT_AUDIO);
1340}
1341
1342// ThreadBase virtuals
1343void AudioFlinger::PlaybackThread::preExit()
1344{
1345 ALOGV(" preExit()");
1346 // FIXME this is using hard-coded strings but in the future, this functionality will be
1347 // converted to use audio HAL extensions required to support tunneling
1348 mOutput->stream->common.set_parameters(&mOutput->stream->common, "exiting=1");
1349}
1350
1351// PlaybackThread::createTrack_l() must be called with AudioFlinger::mLock held
1352sp<AudioFlinger::PlaybackThread::Track> AudioFlinger::PlaybackThread::createTrack_l(
1353 const sp<AudioFlinger::Client>& client,
1354 audio_stream_type_t streamType,
1355 uint32_t sampleRate,
1356 audio_format_t format,
1357 audio_channel_mask_t channelMask,
Glenn Kasten74935e42013-12-19 08:56:45 -08001358 size_t *pFrameCount,
Eric Laurent81784c32012-11-19 14:55:58 -08001359 const sp<IMemory>& sharedBuffer,
1360 int sessionId,
1361 IAudioFlinger::track_flags_t *flags,
1362 pid_t tid,
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001363 int uid,
Eric Laurent81784c32012-11-19 14:55:58 -08001364 status_t *status)
1365{
Glenn Kasten74935e42013-12-19 08:56:45 -08001366 size_t frameCount = *pFrameCount;
Eric Laurent81784c32012-11-19 14:55:58 -08001367 sp<Track> track;
1368 status_t lStatus;
1369
1370 bool isTimed = (*flags & IAudioFlinger::TRACK_TIMED) != 0;
1371
1372 // client expresses a preference for FAST, but we get the final say
1373 if (*flags & IAudioFlinger::TRACK_FAST) {
1374 if (
1375 // not timed
1376 (!isTimed) &&
1377 // either of these use cases:
1378 (
1379 // use case 1: shared buffer with any frame count
1380 (
1381 (sharedBuffer != 0)
1382 ) ||
1383 // use case 2: callback handler and frame count is default or at least as large as HAL
1384 (
1385 (tid != -1) &&
1386 ((frameCount == 0) ||
Glenn Kastenb5fed682013-12-03 09:06:43 -08001387 (frameCount >= mFrameCount))
Eric Laurent81784c32012-11-19 14:55:58 -08001388 )
1389 ) &&
1390 // PCM data
1391 audio_is_linear_pcm(format) &&
Andy Hung9a592762014-07-21 21:56:01 -07001392 // identical channel mask to sink, or mono in and stereo sink
1393 (channelMask == mChannelMask ||
1394 (channelMask == AUDIO_CHANNEL_OUT_MONO &&
1395 mChannelMask == AUDIO_CHANNEL_OUT_STEREO)) &&
Eric Laurent81784c32012-11-19 14:55:58 -08001396 // hardware sample rate
1397 (sampleRate == mSampleRate) &&
Eric Laurent81784c32012-11-19 14:55:58 -08001398 // normal mixer has an associated fast mixer
1399 hasFastMixer() &&
1400 // there are sufficient fast track slots available
1401 (mFastTrackAvailMask != 0)
1402 // FIXME test that MixerThread for this fast track has a capable output HAL
1403 // FIXME add a permission test also?
1404 ) {
1405 // if frameCount not specified, then it defaults to fast mixer (HAL) frame count
1406 if (frameCount == 0) {
Glenn Kasten03490092014-05-27 12:30:54 -07001407 // read the fast track multiplier property the first time it is needed
1408 int ok = pthread_once(&sFastTrackMultiplierOnce, sFastTrackMultiplierInit);
1409 if (ok != 0) {
1410 ALOGE("%s pthread_once failed: %d", __func__, ok);
1411 }
1412 frameCount = mFrameCount * sFastTrackMultiplier;
Eric Laurent81784c32012-11-19 14:55:58 -08001413 }
1414 ALOGV("AUDIO_OUTPUT_FLAG_FAST accepted: frameCount=%d mFrameCount=%d",
1415 frameCount, mFrameCount);
1416 } else {
1417 ALOGV("AUDIO_OUTPUT_FLAG_FAST denied: isTimed=%d sharedBuffer=%p frameCount=%d "
Andy Hung6146c082014-03-18 11:56:15 -07001418 "mFrameCount=%d format=%#x mFormat=%#x isLinear=%d channelMask=%#x "
1419 "sampleRate=%u mSampleRate=%u "
Eric Laurent81784c32012-11-19 14:55:58 -08001420 "hasFastMixer=%d tid=%d fastTrackAvailMask=%#x",
Andy Hung6146c082014-03-18 11:56:15 -07001421 isTimed, sharedBuffer.get(), frameCount, mFrameCount, format, mFormat,
Eric Laurent81784c32012-11-19 14:55:58 -08001422 audio_is_linear_pcm(format),
1423 channelMask, sampleRate, mSampleRate, hasFastMixer(), tid, mFastTrackAvailMask);
1424 *flags &= ~IAudioFlinger::TRACK_FAST;
1425 // For compatibility with AudioTrack calculation, buffer depth is forced
1426 // to be at least 2 x the normal mixer frame count and cover audio hardware latency.
1427 // This is probably too conservative, but legacy application code may depend on it.
1428 // If you change this calculation, also review the start threshold which is related.
1429 uint32_t latencyMs = mOutput->stream->get_latency(mOutput->stream);
1430 uint32_t minBufCount = latencyMs / ((1000 * mNormalFrameCount) / mSampleRate);
1431 if (minBufCount < 2) {
1432 minBufCount = 2;
1433 }
1434 size_t minFrameCount = mNormalFrameCount * minBufCount;
1435 if (frameCount < minFrameCount) {
1436 frameCount = minFrameCount;
1437 }
1438 }
1439 }
Glenn Kasten74935e42013-12-19 08:56:45 -08001440 *pFrameCount = frameCount;
Eric Laurent81784c32012-11-19 14:55:58 -08001441
Glenn Kastenc3df8382014-03-13 15:05:25 -07001442 switch (mType) {
1443
1444 case DIRECT:
Glenn Kasten993fa062014-05-02 11:14:34 -07001445 if (audio_is_linear_pcm(format)) {
Eric Laurent81784c32012-11-19 14:55:58 -08001446 if (sampleRate != mSampleRate || format != mFormat || channelMask != mChannelMask) {
Glenn Kastencac3daa2014-02-07 09:47:14 -08001447 ALOGE("createTrack_l() Bad parameter: sampleRate %u format %#x, channelMask 0x%08x "
1448 "for output %p with format %#x",
Eric Laurent81784c32012-11-19 14:55:58 -08001449 sampleRate, format, channelMask, mOutput, mFormat);
1450 lStatus = BAD_VALUE;
1451 goto Exit;
1452 }
1453 }
Glenn Kastenc3df8382014-03-13 15:05:25 -07001454 break;
1455
1456 case OFFLOAD:
Eric Laurentbfb1b832013-01-07 09:53:42 -08001457 if (sampleRate != mSampleRate || format != mFormat || channelMask != mChannelMask) {
Glenn Kastencac3daa2014-02-07 09:47:14 -08001458 ALOGE("createTrack_l() Bad parameter: sampleRate %d format %#x, channelMask 0x%08x \""
1459 "for output %p with format %#x",
Eric Laurentbfb1b832013-01-07 09:53:42 -08001460 sampleRate, format, channelMask, mOutput, mFormat);
1461 lStatus = BAD_VALUE;
1462 goto Exit;
1463 }
Glenn Kastenc3df8382014-03-13 15:05:25 -07001464 break;
1465
1466 default:
Glenn Kasten993fa062014-05-02 11:14:34 -07001467 if (!audio_is_linear_pcm(format)) {
Glenn Kastencac3daa2014-02-07 09:47:14 -08001468 ALOGE("createTrack_l() Bad parameter: format %#x \""
1469 "for output %p with format %#x",
Eric Laurentbfb1b832013-01-07 09:53:42 -08001470 format, mOutput, mFormat);
1471 lStatus = BAD_VALUE;
1472 goto Exit;
1473 }
Andy Hungcd044842014-08-07 11:04:34 -07001474 if (sampleRate > mSampleRate * AUDIO_RESAMPLER_DOWN_RATIO_MAX) {
Eric Laurent81784c32012-11-19 14:55:58 -08001475 ALOGE("Sample rate out of range: %u mSampleRate %u", sampleRate, mSampleRate);
1476 lStatus = BAD_VALUE;
1477 goto Exit;
1478 }
Glenn Kastenc3df8382014-03-13 15:05:25 -07001479 break;
1480
Eric Laurent81784c32012-11-19 14:55:58 -08001481 }
1482
1483 lStatus = initCheck();
1484 if (lStatus != NO_ERROR) {
Glenn Kasten15e57982013-09-24 11:52:37 -07001485 ALOGE("createTrack_l() audio driver not initialized");
Eric Laurent81784c32012-11-19 14:55:58 -08001486 goto Exit;
1487 }
1488
1489 { // scope for mLock
1490 Mutex::Autolock _l(mLock);
1491
1492 // all tracks in same audio session must share the same routing strategy otherwise
1493 // conflicts will happen when tracks are moved from one output to another by audio policy
1494 // manager
1495 uint32_t strategy = AudioSystem::getStrategyForStream(streamType);
1496 for (size_t i = 0; i < mTracks.size(); ++i) {
1497 sp<Track> t = mTracks[i];
Eric Laurent83b88082014-06-20 18:31:16 -07001498 if (t != 0 && t->isExternalTrack()) {
Eric Laurent81784c32012-11-19 14:55:58 -08001499 uint32_t actual = AudioSystem::getStrategyForStream(t->streamType());
1500 if (sessionId == t->sessionId() && strategy != actual) {
1501 ALOGE("createTrack_l() mismatched strategy; expected %u but found %u",
1502 strategy, actual);
1503 lStatus = BAD_VALUE;
1504 goto Exit;
1505 }
1506 }
1507 }
1508
1509 if (!isTimed) {
1510 track = new Track(this, client, streamType, sampleRate, format,
Eric Laurent83b88082014-06-20 18:31:16 -07001511 channelMask, frameCount, NULL, sharedBuffer,
1512 sessionId, uid, *flags, TrackBase::TYPE_DEFAULT);
Eric Laurent81784c32012-11-19 14:55:58 -08001513 } else {
1514 track = TimedTrack::create(this, client, streamType, sampleRate, format,
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001515 channelMask, frameCount, sharedBuffer, sessionId, uid);
Eric Laurent81784c32012-11-19 14:55:58 -08001516 }
Glenn Kasten03003332013-08-06 15:40:54 -07001517
1518 // new Track always returns non-NULL,
1519 // but TimedTrack::create() is a factory that could fail by returning NULL
1520 lStatus = track != 0 ? track->initCheck() : (status_t) NO_MEMORY;
1521 if (lStatus != NO_ERROR) {
Glenn Kasten0cde0762014-01-16 15:06:36 -08001522 ALOGE("createTrack_l() initCheck failed %d; no control block?", lStatus);
Haynes Mathew George03e9e832013-12-13 15:40:13 -08001523 // track must be cleared from the caller as the caller has the AF lock
Eric Laurent81784c32012-11-19 14:55:58 -08001524 goto Exit;
1525 }
1526 mTracks.add(track);
1527
1528 sp<EffectChain> chain = getEffectChain_l(sessionId);
1529 if (chain != 0) {
1530 ALOGV("createTrack_l() setting main buffer %p", chain->inBuffer());
1531 track->setMainBuffer(chain->inBuffer());
1532 chain->setStrategy(AudioSystem::getStrategyForStream(track->streamType()));
1533 chain->incTrackCnt();
1534 }
1535
1536 if ((*flags & IAudioFlinger::TRACK_FAST) && (tid != -1)) {
1537 pid_t callingPid = IPCThreadState::self()->getCallingPid();
1538 // we don't have CAP_SYS_NICE, nor do we want to have it as it's too powerful,
1539 // so ask activity manager to do this on our behalf
1540 sendPrioConfigEvent_l(callingPid, tid, kPriorityAudioApp);
1541 }
1542 }
1543
1544 lStatus = NO_ERROR;
1545
1546Exit:
Glenn Kasten9156ef32013-08-06 15:39:08 -07001547 *status = lStatus;
Eric Laurent81784c32012-11-19 14:55:58 -08001548 return track;
1549}
1550
1551uint32_t AudioFlinger::PlaybackThread::correctLatency_l(uint32_t latency) const
1552{
1553 return latency;
1554}
1555
1556uint32_t AudioFlinger::PlaybackThread::latency() const
1557{
1558 Mutex::Autolock _l(mLock);
1559 return latency_l();
1560}
1561uint32_t AudioFlinger::PlaybackThread::latency_l() const
1562{
1563 if (initCheck() == NO_ERROR) {
1564 return correctLatency_l(mOutput->stream->get_latency(mOutput->stream));
1565 } else {
1566 return 0;
1567 }
1568}
1569
1570void AudioFlinger::PlaybackThread::setMasterVolume(float value)
1571{
1572 Mutex::Autolock _l(mLock);
1573 // Don't apply master volume in SW if our HAL can do it for us.
1574 if (mOutput && mOutput->audioHwDev &&
1575 mOutput->audioHwDev->canSetMasterVolume()) {
1576 mMasterVolume = 1.0;
1577 } else {
1578 mMasterVolume = value;
1579 }
1580}
1581
1582void AudioFlinger::PlaybackThread::setMasterMute(bool muted)
1583{
1584 Mutex::Autolock _l(mLock);
1585 // Don't apply master mute in SW if our HAL can do it for us.
1586 if (mOutput && mOutput->audioHwDev &&
1587 mOutput->audioHwDev->canSetMasterMute()) {
1588 mMasterMute = false;
1589 } else {
1590 mMasterMute = muted;
1591 }
1592}
1593
1594void AudioFlinger::PlaybackThread::setStreamVolume(audio_stream_type_t stream, float value)
1595{
1596 Mutex::Autolock _l(mLock);
1597 mStreamTypes[stream].volume = value;
Eric Laurentede6c3b2013-09-19 14:37:46 -07001598 broadcast_l();
Eric Laurent81784c32012-11-19 14:55:58 -08001599}
1600
1601void AudioFlinger::PlaybackThread::setStreamMute(audio_stream_type_t stream, bool muted)
1602{
1603 Mutex::Autolock _l(mLock);
1604 mStreamTypes[stream].mute = muted;
Eric Laurentede6c3b2013-09-19 14:37:46 -07001605 broadcast_l();
Eric Laurent81784c32012-11-19 14:55:58 -08001606}
1607
1608float AudioFlinger::PlaybackThread::streamVolume(audio_stream_type_t stream) const
1609{
1610 Mutex::Autolock _l(mLock);
1611 return mStreamTypes[stream].volume;
1612}
1613
1614// addTrack_l() must be called with ThreadBase::mLock held
1615status_t AudioFlinger::PlaybackThread::addTrack_l(const sp<Track>& track)
1616{
1617 status_t status = ALREADY_EXISTS;
1618
1619 // set retry count for buffer fill
1620 track->mRetryCount = kMaxTrackStartupRetries;
1621 if (mActiveTracks.indexOf(track) < 0) {
1622 // the track is newly added, make sure it fills up all its
1623 // buffers before playing. This is to ensure the client will
1624 // effectively get the latency it requested.
Eric Laurent83b88082014-06-20 18:31:16 -07001625 if (track->isExternalTrack()) {
Eric Laurentbfb1b832013-01-07 09:53:42 -08001626 TrackBase::track_state state = track->mState;
1627 mLock.unlock();
1628 status = AudioSystem::startOutput(mId, track->streamType(), track->sessionId());
1629 mLock.lock();
1630 // abort track was stopped/paused while we released the lock
1631 if (state != track->mState) {
1632 if (status == NO_ERROR) {
1633 mLock.unlock();
1634 AudioSystem::stopOutput(mId, track->streamType(), track->sessionId());
1635 mLock.lock();
1636 }
1637 return INVALID_OPERATION;
1638 }
1639 // abort if start is rejected by audio policy manager
1640 if (status != NO_ERROR) {
1641 return PERMISSION_DENIED;
1642 }
1643#ifdef ADD_BATTERY_DATA
1644 // to track the speaker usage
1645 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStart);
1646#endif
1647 }
1648
Glenn Kasten9f80dd22012-12-18 15:57:32 -08001649 track->mFillingUpStatus = track->sharedBuffer() != 0 ? Track::FS_FILLED : Track::FS_FILLING;
Eric Laurent81784c32012-11-19 14:55:58 -08001650 track->mResetDone = false;
1651 track->mPresentationCompleteFrames = 0;
1652 mActiveTracks.add(track);
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001653 mWakeLockUids.add(track->uid());
1654 mActiveTracksGeneration++;
Eric Laurentfd477972013-10-25 18:10:40 -07001655 mLatestActiveTrack = track;
Eric Laurentd0107bc2013-06-11 14:38:48 -07001656 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1657 if (chain != 0) {
1658 ALOGV("addTrack_l() starting track on chain %p for session %d", chain.get(),
1659 track->sessionId());
1660 chain->incActiveTrackCnt();
Eric Laurent81784c32012-11-19 14:55:58 -08001661 }
1662
1663 status = NO_ERROR;
1664 }
1665
Haynes Mathew George4c6a4332014-01-15 12:31:39 -08001666 onAddNewTrack_l();
Eric Laurent81784c32012-11-19 14:55:58 -08001667 return status;
1668}
1669
Eric Laurentbfb1b832013-01-07 09:53:42 -08001670bool AudioFlinger::PlaybackThread::destroyTrack_l(const sp<Track>& track)
Eric Laurent81784c32012-11-19 14:55:58 -08001671{
Eric Laurentbfb1b832013-01-07 09:53:42 -08001672 track->terminate();
Eric Laurent81784c32012-11-19 14:55:58 -08001673 // active tracks are removed by threadLoop()
Eric Laurentbfb1b832013-01-07 09:53:42 -08001674 bool trackActive = (mActiveTracks.indexOf(track) >= 0);
1675 track->mState = TrackBase::STOPPED;
1676 if (!trackActive) {
Eric Laurent81784c32012-11-19 14:55:58 -08001677 removeTrack_l(track);
Eric Laurentab5cdba2014-06-09 17:22:27 -07001678 } else if (track->isFastTrack() || track->isOffloaded() || track->isDirect()) {
Eric Laurentbfb1b832013-01-07 09:53:42 -08001679 track->mState = TrackBase::STOPPING_1;
Eric Laurent81784c32012-11-19 14:55:58 -08001680 }
Eric Laurentbfb1b832013-01-07 09:53:42 -08001681
1682 return trackActive;
Eric Laurent81784c32012-11-19 14:55:58 -08001683}
1684
1685void AudioFlinger::PlaybackThread::removeTrack_l(const sp<Track>& track)
1686{
1687 track->triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
1688 mTracks.remove(track);
1689 deleteTrackName_l(track->name());
1690 // redundant as track is about to be destroyed, for dumpsys only
1691 track->mName = -1;
1692 if (track->isFastTrack()) {
1693 int index = track->mFastIndex;
1694 ALOG_ASSERT(0 < index && index < (int)FastMixerState::kMaxFastTracks);
1695 ALOG_ASSERT(!(mFastTrackAvailMask & (1 << index)));
1696 mFastTrackAvailMask |= 1 << index;
1697 // redundant as track is about to be destroyed, for dumpsys only
1698 track->mFastIndex = -1;
1699 }
1700 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
1701 if (chain != 0) {
1702 chain->decTrackCnt();
1703 }
1704}
1705
Eric Laurentede6c3b2013-09-19 14:37:46 -07001706void AudioFlinger::PlaybackThread::broadcast_l()
Eric Laurentbfb1b832013-01-07 09:53:42 -08001707{
1708 // Thread could be blocked waiting for async
1709 // so signal it to handle state changes immediately
1710 // If threadLoop is currently unlocked a signal of mWaitWorkCV will
1711 // be lost so we also flag to prevent it blocking on mWaitWorkCV
1712 mSignalPending = true;
Eric Laurentede6c3b2013-09-19 14:37:46 -07001713 mWaitWorkCV.broadcast();
Eric Laurentbfb1b832013-01-07 09:53:42 -08001714}
1715
Eric Laurent81784c32012-11-19 14:55:58 -08001716String8 AudioFlinger::PlaybackThread::getParameters(const String8& keys)
1717{
Eric Laurent81784c32012-11-19 14:55:58 -08001718 Mutex::Autolock _l(mLock);
1719 if (initCheck() != NO_ERROR) {
Glenn Kastend8ea6992013-07-16 14:17:15 -07001720 return String8();
Eric Laurent81784c32012-11-19 14:55:58 -08001721 }
1722
Glenn Kastend8ea6992013-07-16 14:17:15 -07001723 char *s = mOutput->stream->common.get_parameters(&mOutput->stream->common, keys.string());
1724 const String8 out_s8(s);
Eric Laurent81784c32012-11-19 14:55:58 -08001725 free(s);
1726 return out_s8;
1727}
1728
Eric Laurent021cf962014-05-13 10:18:14 -07001729void AudioFlinger::PlaybackThread::audioConfigChanged(int event, int param) {
Eric Laurent81784c32012-11-19 14:55:58 -08001730 AudioSystem::OutputDescriptor desc;
1731 void *param2 = NULL;
1732
Eric Laurent021cf962014-05-13 10:18:14 -07001733 ALOGV("PlaybackThread::audioConfigChanged, thread %p, event %d, param %d", this, event,
Eric Laurent81784c32012-11-19 14:55:58 -08001734 param);
1735
1736 switch (event) {
1737 case AudioSystem::OUTPUT_OPENED:
1738 case AudioSystem::OUTPUT_CONFIG_CHANGED:
Glenn Kastenfad226a2013-07-16 17:19:58 -07001739 desc.channelMask = mChannelMask;
Eric Laurent81784c32012-11-19 14:55:58 -08001740 desc.samplingRate = mSampleRate;
1741 desc.format = mFormat;
1742 desc.frameCount = mNormalFrameCount; // FIXME see
1743 // AudioFlinger::frameCount(audio_io_handle_t)
Eric Laurent10351942014-05-08 18:49:52 -07001744 desc.latency = latency_l();
Eric Laurent81784c32012-11-19 14:55:58 -08001745 param2 = &desc;
1746 break;
1747
1748 case AudioSystem::STREAM_CONFIG_CHANGED:
1749 param2 = &param;
1750 case AudioSystem::OUTPUT_CLOSED:
1751 default:
1752 break;
1753 }
Eric Laurent021cf962014-05-13 10:18:14 -07001754 mAudioFlinger->audioConfigChanged(event, mId, param2);
Eric Laurent81784c32012-11-19 14:55:58 -08001755}
1756
Eric Laurentbfb1b832013-01-07 09:53:42 -08001757void AudioFlinger::PlaybackThread::writeCallback()
1758{
1759 ALOG_ASSERT(mCallbackThread != 0);
Eric Laurent3b4529e2013-09-05 18:09:19 -07001760 mCallbackThread->resetWriteBlocked();
Eric Laurentbfb1b832013-01-07 09:53:42 -08001761}
1762
1763void AudioFlinger::PlaybackThread::drainCallback()
1764{
1765 ALOG_ASSERT(mCallbackThread != 0);
Eric Laurent3b4529e2013-09-05 18:09:19 -07001766 mCallbackThread->resetDraining();
Eric Laurentbfb1b832013-01-07 09:53:42 -08001767}
1768
Eric Laurent3b4529e2013-09-05 18:09:19 -07001769void AudioFlinger::PlaybackThread::resetWriteBlocked(uint32_t sequence)
Eric Laurentbfb1b832013-01-07 09:53:42 -08001770{
1771 Mutex::Autolock _l(mLock);
Eric Laurent3b4529e2013-09-05 18:09:19 -07001772 // reject out of sequence requests
1773 if ((mWriteAckSequence & 1) && (sequence == mWriteAckSequence)) {
1774 mWriteAckSequence &= ~1;
Eric Laurentbfb1b832013-01-07 09:53:42 -08001775 mWaitWorkCV.signal();
1776 }
1777}
1778
Eric Laurent3b4529e2013-09-05 18:09:19 -07001779void AudioFlinger::PlaybackThread::resetDraining(uint32_t sequence)
Eric Laurentbfb1b832013-01-07 09:53:42 -08001780{
1781 Mutex::Autolock _l(mLock);
Eric Laurent3b4529e2013-09-05 18:09:19 -07001782 // reject out of sequence requests
1783 if ((mDrainSequence & 1) && (sequence == mDrainSequence)) {
1784 mDrainSequence &= ~1;
Eric Laurentbfb1b832013-01-07 09:53:42 -08001785 mWaitWorkCV.signal();
1786 }
1787}
1788
1789// static
1790int AudioFlinger::PlaybackThread::asyncCallback(stream_callback_event_t event,
Glenn Kasten0f11b512014-01-31 16:18:54 -08001791 void *param __unused,
Eric Laurentbfb1b832013-01-07 09:53:42 -08001792 void *cookie)
1793{
1794 AudioFlinger::PlaybackThread *me = (AudioFlinger::PlaybackThread *)cookie;
1795 ALOGV("asyncCallback() event %d", event);
1796 switch (event) {
1797 case STREAM_CBK_EVENT_WRITE_READY:
1798 me->writeCallback();
1799 break;
1800 case STREAM_CBK_EVENT_DRAIN_READY:
1801 me->drainCallback();
1802 break;
1803 default:
1804 ALOGW("asyncCallback() unknown event %d", event);
1805 break;
1806 }
1807 return 0;
1808}
1809
Glenn Kastendeca2ae2014-02-07 10:25:56 -08001810void AudioFlinger::PlaybackThread::readOutputParameters_l()
Eric Laurent81784c32012-11-19 14:55:58 -08001811{
Glenn Kastenadad3d72014-02-21 14:51:43 -08001812 // unfortunately we have no way of recovering from errors here, hence the LOG_ALWAYS_FATAL
Eric Laurent81784c32012-11-19 14:55:58 -08001813 mSampleRate = mOutput->stream->common.get_sample_rate(&mOutput->stream->common);
1814 mChannelMask = mOutput->stream->common.get_channels(&mOutput->stream->common);
Glenn Kasten7fc97ba2013-07-16 17:18:58 -07001815 if (!audio_is_output_channel(mChannelMask)) {
Glenn Kastenadad3d72014-02-21 14:51:43 -08001816 LOG_ALWAYS_FATAL("HAL channel mask %#x not valid for output", mChannelMask);
Glenn Kasten7fc97ba2013-07-16 17:18:58 -07001817 }
Andy Hung9a592762014-07-21 21:56:01 -07001818 if ((mType == MIXER || mType == DUPLICATING)
1819 && !isValidPcmSinkChannelMask(mChannelMask)) {
1820 LOG_ALWAYS_FATAL("HAL channel mask %#x not supported for mixed output",
1821 mChannelMask);
Glenn Kasten7fc97ba2013-07-16 17:18:58 -07001822 }
Andy Hunge5412692014-05-16 11:25:07 -07001823 mChannelCount = audio_channel_count_from_out_mask(mChannelMask);
Andy Hung463be252014-07-10 16:56:07 -07001824 mHALFormat = mOutput->stream->common.get_format(&mOutput->stream->common);
1825 mFormat = mHALFormat;
Glenn Kasten7fc97ba2013-07-16 17:18:58 -07001826 if (!audio_is_valid_format(mFormat)) {
Glenn Kastenadad3d72014-02-21 14:51:43 -08001827 LOG_ALWAYS_FATAL("HAL format %#x not valid for output", mFormat);
Glenn Kasten7fc97ba2013-07-16 17:18:58 -07001828 }
Andy Hung6146c082014-03-18 11:56:15 -07001829 if ((mType == MIXER || mType == DUPLICATING)
1830 && !isValidPcmSinkFormat(mFormat)) {
1831 LOG_FATAL("HAL format %#x not supported for mixed output",
1832 mFormat);
Glenn Kasten7fc97ba2013-07-16 17:18:58 -07001833 }
Eric Laurent665470b2014-07-03 16:37:08 -07001834 mFrameSize = audio_stream_out_frame_size(mOutput->stream);
Glenn Kasten70949c42013-08-06 07:40:12 -07001835 mBufferSize = mOutput->stream->common.get_buffer_size(&mOutput->stream->common);
1836 mFrameCount = mBufferSize / mFrameSize;
Eric Laurent81784c32012-11-19 14:55:58 -08001837 if (mFrameCount & 15) {
1838 ALOGW("HAL output buffer size is %u frames but AudioMixer requires multiples of 16 frames",
1839 mFrameCount);
1840 }
1841
Eric Laurentbfb1b832013-01-07 09:53:42 -08001842 if ((mOutput->flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING) &&
1843 (mOutput->stream->set_callback != NULL)) {
1844 if (mOutput->stream->set_callback(mOutput->stream,
1845 AudioFlinger::PlaybackThread::asyncCallback, this) == 0) {
1846 mUseAsyncWrite = true;
Eric Laurent4de95592013-09-26 15:28:21 -07001847 mCallbackThread = new AudioFlinger::AsyncCallbackThread(this);
Eric Laurentbfb1b832013-01-07 09:53:42 -08001848 }
1849 }
1850
Andy Hung09a50072014-02-27 14:30:47 -08001851 // Calculate size of normal sink buffer relative to the HAL output buffer size
Eric Laurent81784c32012-11-19 14:55:58 -08001852 double multiplier = 1.0;
1853 if (mType == MIXER && (kUseFastMixer == FastMixer_Static ||
1854 kUseFastMixer == FastMixer_Dynamic)) {
Andy Hung09a50072014-02-27 14:30:47 -08001855 size_t minNormalFrameCount = (kMinNormalSinkBufferSizeMs * mSampleRate) / 1000;
1856 size_t maxNormalFrameCount = (kMaxNormalSinkBufferSizeMs * mSampleRate) / 1000;
Eric Laurent81784c32012-11-19 14:55:58 -08001857 // round up minimum and round down maximum to nearest 16 frames to satisfy AudioMixer
1858 minNormalFrameCount = (minNormalFrameCount + 15) & ~15;
1859 maxNormalFrameCount = maxNormalFrameCount & ~15;
1860 if (maxNormalFrameCount < minNormalFrameCount) {
1861 maxNormalFrameCount = minNormalFrameCount;
1862 }
1863 multiplier = (double) minNormalFrameCount / (double) mFrameCount;
1864 if (multiplier <= 1.0) {
1865 multiplier = 1.0;
1866 } else if (multiplier <= 2.0) {
1867 if (2 * mFrameCount <= maxNormalFrameCount) {
1868 multiplier = 2.0;
1869 } else {
1870 multiplier = (double) maxNormalFrameCount / (double) mFrameCount;
1871 }
1872 } else {
1873 // prefer an even multiplier, for compatibility with doubling of fast tracks due to HAL
Andy Hung09a50072014-02-27 14:30:47 -08001874 // SRC (it would be unusual for the normal sink buffer size to not be a multiple of fast
Eric Laurent81784c32012-11-19 14:55:58 -08001875 // track, but we sometimes have to do this to satisfy the maximum frame count
1876 // constraint)
1877 // FIXME this rounding up should not be done if no HAL SRC
1878 uint32_t truncMult = (uint32_t) multiplier;
1879 if ((truncMult & 1)) {
1880 if ((truncMult + 1) * mFrameCount <= maxNormalFrameCount) {
1881 ++truncMult;
1882 }
1883 }
1884 multiplier = (double) truncMult;
1885 }
1886 }
1887 mNormalFrameCount = multiplier * mFrameCount;
1888 // round up to nearest 16 frames to satisfy AudioMixer
Eric Laurentab5cdba2014-06-09 17:22:27 -07001889 if (mType == MIXER || mType == DUPLICATING) {
1890 mNormalFrameCount = (mNormalFrameCount + 15) & ~15;
1891 }
Andy Hung09a50072014-02-27 14:30:47 -08001892 ALOGI("HAL output buffer size %u frames, normal sink buffer size %u frames", mFrameCount,
Eric Laurent81784c32012-11-19 14:55:58 -08001893 mNormalFrameCount);
1894
Andy Hung010a1a12014-03-13 13:57:33 -07001895 // mSinkBuffer is the sink buffer. Size is always multiple-of-16 frames.
1896 // Originally this was int16_t[] array, need to remove legacy implications.
1897 free(mSinkBuffer);
1898 mSinkBuffer = NULL;
Andy Hung5b10a202014-03-13 13:59:29 -07001899 // For sink buffer size, we use the frame size from the downstream sink to avoid problems
1900 // with non PCM formats for compressed music, e.g. AAC, and Offload threads.
1901 const size_t sinkBufferSize = mNormalFrameCount * mFrameSize;
Andy Hung010a1a12014-03-13 13:57:33 -07001902 (void)posix_memalign(&mSinkBuffer, 32, sinkBufferSize);
Eric Laurent81784c32012-11-19 14:55:58 -08001903
Andy Hung69aed5f2014-02-25 17:24:40 -08001904 // We resize the mMixerBuffer according to the requirements of the sink buffer which
1905 // drives the output.
1906 free(mMixerBuffer);
1907 mMixerBuffer = NULL;
1908 if (mMixerBufferEnabled) {
1909 mMixerBufferFormat = AUDIO_FORMAT_PCM_FLOAT; // also valid: AUDIO_FORMAT_PCM_16_BIT.
1910 mMixerBufferSize = mNormalFrameCount * mChannelCount
1911 * audio_bytes_per_sample(mMixerBufferFormat);
1912 (void)posix_memalign(&mMixerBuffer, 32, mMixerBufferSize);
1913 }
Andy Hung98ef9782014-03-04 14:46:50 -08001914 free(mEffectBuffer);
1915 mEffectBuffer = NULL;
1916 if (mEffectBufferEnabled) {
1917 mEffectBufferFormat = AUDIO_FORMAT_PCM_16_BIT; // Note: Effects support 16b only
1918 mEffectBufferSize = mNormalFrameCount * mChannelCount
1919 * audio_bytes_per_sample(mEffectBufferFormat);
1920 (void)posix_memalign(&mEffectBuffer, 32, mEffectBufferSize);
1921 }
Andy Hung69aed5f2014-02-25 17:24:40 -08001922
Eric Laurent81784c32012-11-19 14:55:58 -08001923 // force reconfiguration of effect chains and engines to take new buffer size and audio
1924 // parameters into account
Glenn Kastendeca2ae2014-02-07 10:25:56 -08001925 // Note that mLock is not held when readOutputParameters_l() is called from the constructor
Eric Laurent81784c32012-11-19 14:55:58 -08001926 // but in this case nothing is done below as no audio sessions have effect yet so it doesn't
1927 // matter.
1928 // create a copy of mEffectChains as calling moveEffectChain_l() can reorder some effect chains
1929 Vector< sp<EffectChain> > effectChains = mEffectChains;
1930 for (size_t i = 0; i < effectChains.size(); i ++) {
1931 mAudioFlinger->moveEffectChain_l(effectChains[i]->sessionId(), this, this, false);
1932 }
1933}
1934
1935
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001936status_t AudioFlinger::PlaybackThread::getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames)
Eric Laurent81784c32012-11-19 14:55:58 -08001937{
1938 if (halFrames == NULL || dspFrames == NULL) {
1939 return BAD_VALUE;
1940 }
1941 Mutex::Autolock _l(mLock);
1942 if (initCheck() != NO_ERROR) {
1943 return INVALID_OPERATION;
1944 }
1945 size_t framesWritten = mBytesWritten / mFrameSize;
1946 *halFrames = framesWritten;
1947
1948 if (isSuspended()) {
1949 // return an estimation of rendered frames when the output is suspended
1950 size_t latencyFrames = (latency_l() * mSampleRate) / 1000;
1951 *dspFrames = framesWritten >= latencyFrames ? framesWritten - latencyFrames : 0;
1952 return NO_ERROR;
1953 } else {
Kévin PETIT377b2ec2014-02-03 12:35:36 +00001954 status_t status;
1955 uint32_t frames;
1956 status = mOutput->stream->get_render_position(mOutput->stream, &frames);
1957 *dspFrames = (size_t)frames;
1958 return status;
Eric Laurent81784c32012-11-19 14:55:58 -08001959 }
1960}
1961
1962uint32_t AudioFlinger::PlaybackThread::hasAudioSession(int sessionId) const
1963{
1964 Mutex::Autolock _l(mLock);
1965 uint32_t result = 0;
1966 if (getEffectChain_l(sessionId) != 0) {
1967 result = EFFECT_SESSION;
1968 }
1969
1970 for (size_t i = 0; i < mTracks.size(); ++i) {
1971 sp<Track> track = mTracks[i];
Glenn Kasten5736c352012-12-04 12:12:34 -08001972 if (sessionId == track->sessionId() && !track->isInvalid()) {
Eric Laurent81784c32012-11-19 14:55:58 -08001973 result |= TRACK_SESSION;
1974 break;
1975 }
1976 }
1977
1978 return result;
1979}
1980
1981uint32_t AudioFlinger::PlaybackThread::getStrategyForSession_l(int sessionId)
1982{
1983 // session AUDIO_SESSION_OUTPUT_MIX is placed in same strategy as MUSIC stream so that
1984 // it is moved to correct output by audio policy manager when A2DP is connected or disconnected
1985 if (sessionId == AUDIO_SESSION_OUTPUT_MIX) {
1986 return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1987 }
1988 for (size_t i = 0; i < mTracks.size(); i++) {
1989 sp<Track> track = mTracks[i];
Glenn Kasten5736c352012-12-04 12:12:34 -08001990 if (sessionId == track->sessionId() && !track->isInvalid()) {
Eric Laurent81784c32012-11-19 14:55:58 -08001991 return AudioSystem::getStrategyForStream(track->streamType());
1992 }
1993 }
1994 return AudioSystem::getStrategyForStream(AUDIO_STREAM_MUSIC);
1995}
1996
1997
1998AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::getOutput() const
1999{
2000 Mutex::Autolock _l(mLock);
2001 return mOutput;
2002}
2003
2004AudioFlinger::AudioStreamOut* AudioFlinger::PlaybackThread::clearOutput()
2005{
2006 Mutex::Autolock _l(mLock);
2007 AudioStreamOut *output = mOutput;
2008 mOutput = NULL;
2009 // FIXME FastMixer might also have a raw ptr to mOutputSink;
2010 // must push a NULL and wait for ack
2011 mOutputSink.clear();
2012 mPipeSink.clear();
2013 mNormalSink.clear();
2014 return output;
2015}
2016
2017// this method must always be called either with ThreadBase mLock held or inside the thread loop
2018audio_stream_t* AudioFlinger::PlaybackThread::stream() const
2019{
2020 if (mOutput == NULL) {
2021 return NULL;
2022 }
2023 return &mOutput->stream->common;
2024}
2025
2026uint32_t AudioFlinger::PlaybackThread::activeSleepTimeUs() const
2027{
2028 return (uint32_t)((uint32_t)((mNormalFrameCount * 1000) / mSampleRate) * 1000);
2029}
2030
2031status_t AudioFlinger::PlaybackThread::setSyncEvent(const sp<SyncEvent>& event)
2032{
2033 if (!isValidSyncEvent(event)) {
2034 return BAD_VALUE;
2035 }
2036
2037 Mutex::Autolock _l(mLock);
2038
2039 for (size_t i = 0; i < mTracks.size(); ++i) {
2040 sp<Track> track = mTracks[i];
2041 if (event->triggerSession() == track->sessionId()) {
2042 (void) track->setSyncEvent(event);
2043 return NO_ERROR;
2044 }
2045 }
2046
2047 return NAME_NOT_FOUND;
2048}
2049
2050bool AudioFlinger::PlaybackThread::isValidSyncEvent(const sp<SyncEvent>& event) const
2051{
2052 return event->type() == AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE;
2053}
2054
2055void AudioFlinger::PlaybackThread::threadLoop_removeTracks(
2056 const Vector< sp<Track> >& tracksToRemove)
2057{
2058 size_t count = tracksToRemove.size();
Glenn Kasten34fca342013-08-13 09:48:14 -07002059 if (count > 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08002060 for (size_t i = 0 ; i < count ; i++) {
2061 const sp<Track>& track = tracksToRemove.itemAt(i);
Eric Laurent83b88082014-06-20 18:31:16 -07002062 if (track->isExternalTrack()) {
Eric Laurent81784c32012-11-19 14:55:58 -08002063 AudioSystem::stopOutput(mId, track->streamType(), track->sessionId());
Eric Laurentbfb1b832013-01-07 09:53:42 -08002064#ifdef ADD_BATTERY_DATA
2065 // to track the speaker usage
2066 addBatteryData(IMediaPlayerService::kBatteryDataAudioFlingerStop);
2067#endif
2068 if (track->isTerminated()) {
2069 AudioSystem::releaseOutput(mId);
2070 }
Eric Laurent81784c32012-11-19 14:55:58 -08002071 }
2072 }
2073 }
Eric Laurent81784c32012-11-19 14:55:58 -08002074}
2075
2076void AudioFlinger::PlaybackThread::checkSilentMode_l()
2077{
2078 if (!mMasterMute) {
2079 char value[PROPERTY_VALUE_MAX];
2080 if (property_get("ro.audio.silent", value, "0") > 0) {
2081 char *endptr;
2082 unsigned long ul = strtoul(value, &endptr, 0);
2083 if (*endptr == '\0' && ul != 0) {
2084 ALOGD("Silence is golden");
2085 // The setprop command will not allow a property to be changed after
2086 // the first time it is set, so we don't have to worry about un-muting.
2087 setMasterMute_l(true);
2088 }
2089 }
2090 }
2091}
2092
2093// shared by MIXER and DIRECT, overridden by DUPLICATING
Eric Laurentbfb1b832013-01-07 09:53:42 -08002094ssize_t AudioFlinger::PlaybackThread::threadLoop_write()
Eric Laurent81784c32012-11-19 14:55:58 -08002095{
2096 // FIXME rewrite to reduce number of system calls
2097 mLastWriteTime = systemTime();
2098 mInWrite = true;
Eric Laurentbfb1b832013-01-07 09:53:42 -08002099 ssize_t bytesWritten;
Andy Hung010a1a12014-03-13 13:57:33 -07002100 const size_t offset = mCurrentWriteLength - mBytesRemaining;
Eric Laurent81784c32012-11-19 14:55:58 -08002101
2102 // If an NBAIO sink is present, use it to write the normal mixer's submix
2103 if (mNormalSink != 0) {
Glenn Kasten4c053ea2014-09-28 14:41:07 -07002104
Andy Hung010a1a12014-03-13 13:57:33 -07002105 const size_t count = mBytesRemaining / mFrameSize;
2106
Simon Wilson2d590962012-11-29 15:18:50 -08002107 ATRACE_BEGIN("write");
Eric Laurent81784c32012-11-19 14:55:58 -08002108 // update the setpoint when AudioFlinger::mScreenState changes
2109 uint32_t screenState = AudioFlinger::mScreenState;
2110 if (screenState != mScreenState) {
2111 mScreenState = screenState;
2112 MonoPipe *pipe = (MonoPipe *)mPipeSink.get();
2113 if (pipe != NULL) {
2114 pipe->setAvgFrames((mScreenState & 1) ?
2115 (pipe->maxFrames() * 7) / 8 : mNormalFrameCount * 2);
2116 }
2117 }
Andy Hung010a1a12014-03-13 13:57:33 -07002118 ssize_t framesWritten = mNormalSink->write((char *)mSinkBuffer + offset, count);
Simon Wilson2d590962012-11-29 15:18:50 -08002119 ATRACE_END();
Eric Laurent81784c32012-11-19 14:55:58 -08002120 if (framesWritten > 0) {
Andy Hung010a1a12014-03-13 13:57:33 -07002121 bytesWritten = framesWritten * mFrameSize;
Eric Laurent81784c32012-11-19 14:55:58 -08002122 } else {
2123 bytesWritten = framesWritten;
2124 }
Glenn Kasten767094d2013-08-23 13:51:43 -07002125 status_t status = mNormalSink->getTimestamp(mLatchD.mTimestamp);
Glenn Kastenbd096fd2013-08-23 13:53:56 -07002126 if (status == NO_ERROR) {
2127 size_t totalFramesWritten = mNormalSink->framesWritten();
2128 if (totalFramesWritten >= mLatchD.mTimestamp.mPosition) {
2129 mLatchD.mUnpresentedFrames = totalFramesWritten - mLatchD.mTimestamp.mPosition;
Glenn Kasten4c053ea2014-09-28 14:41:07 -07002130 // mLatchD.mFramesReleased is set immediately before D is clocked into Q
Glenn Kastenbd096fd2013-08-23 13:53:56 -07002131 mLatchDValid = true;
2132 }
2133 }
Eric Laurent81784c32012-11-19 14:55:58 -08002134 // otherwise use the HAL / AudioStreamOut directly
2135 } else {
Eric Laurentbfb1b832013-01-07 09:53:42 -08002136 // Direct output and offload threads
Andy Hung010a1a12014-03-13 13:57:33 -07002137
Eric Laurentbfb1b832013-01-07 09:53:42 -08002138 if (mUseAsyncWrite) {
Eric Laurent3b4529e2013-09-05 18:09:19 -07002139 ALOGW_IF(mWriteAckSequence & 1, "threadLoop_write(): out of sequence write request");
2140 mWriteAckSequence += 2;
2141 mWriteAckSequence |= 1;
Eric Laurentbfb1b832013-01-07 09:53:42 -08002142 ALOG_ASSERT(mCallbackThread != 0);
Eric Laurent3b4529e2013-09-05 18:09:19 -07002143 mCallbackThread->setWriteBlocked(mWriteAckSequence);
Eric Laurentbfb1b832013-01-07 09:53:42 -08002144 }
Glenn Kasten767094d2013-08-23 13:51:43 -07002145 // FIXME We should have an implementation of timestamps for direct output threads.
2146 // They are used e.g for multichannel PCM playback over HDMI.
Eric Laurentbfb1b832013-01-07 09:53:42 -08002147 bytesWritten = mOutput->stream->write(mOutput->stream,
Andy Hung2098f272014-02-27 14:00:06 -08002148 (char *)mSinkBuffer + offset, mBytesRemaining);
Eric Laurentbfb1b832013-01-07 09:53:42 -08002149 if (mUseAsyncWrite &&
2150 ((bytesWritten < 0) || (bytesWritten == (ssize_t)mBytesRemaining))) {
2151 // do not wait for async callback in case of error of full write
Eric Laurent3b4529e2013-09-05 18:09:19 -07002152 mWriteAckSequence &= ~1;
Eric Laurentbfb1b832013-01-07 09:53:42 -08002153 ALOG_ASSERT(mCallbackThread != 0);
Eric Laurent3b4529e2013-09-05 18:09:19 -07002154 mCallbackThread->setWriteBlocked(mWriteAckSequence);
Eric Laurentbfb1b832013-01-07 09:53:42 -08002155 }
Eric Laurent81784c32012-11-19 14:55:58 -08002156 }
2157
Eric Laurent81784c32012-11-19 14:55:58 -08002158 mNumWrites++;
2159 mInWrite = false;
Eric Laurentfd477972013-10-25 18:10:40 -07002160 mStandby = false;
Eric Laurentbfb1b832013-01-07 09:53:42 -08002161 return bytesWritten;
2162}
2163
2164void AudioFlinger::PlaybackThread::threadLoop_drain()
2165{
2166 if (mOutput->stream->drain) {
2167 ALOGV("draining %s", (mMixerStatus == MIXER_DRAIN_TRACK) ? "early" : "full");
2168 if (mUseAsyncWrite) {
Eric Laurent3b4529e2013-09-05 18:09:19 -07002169 ALOGW_IF(mDrainSequence & 1, "threadLoop_drain(): out of sequence drain request");
2170 mDrainSequence |= 1;
Eric Laurentbfb1b832013-01-07 09:53:42 -08002171 ALOG_ASSERT(mCallbackThread != 0);
Eric Laurent3b4529e2013-09-05 18:09:19 -07002172 mCallbackThread->setDraining(mDrainSequence);
Eric Laurentbfb1b832013-01-07 09:53:42 -08002173 }
2174 mOutput->stream->drain(mOutput->stream,
2175 (mMixerStatus == MIXER_DRAIN_TRACK) ? AUDIO_DRAIN_EARLY_NOTIFY
2176 : AUDIO_DRAIN_ALL);
2177 }
2178}
2179
2180void AudioFlinger::PlaybackThread::threadLoop_exit()
2181{
2182 // Default implementation has nothing to do
Eric Laurent81784c32012-11-19 14:55:58 -08002183}
2184
2185/*
2186The derived values that are cached:
Andy Hung25c2dac2014-02-27 14:56:00 -08002187 - mSinkBufferSize from frame count * frame size
Eric Laurent81784c32012-11-19 14:55:58 -08002188 - activeSleepTime from activeSleepTimeUs()
2189 - idleSleepTime from idleSleepTimeUs()
2190 - standbyDelay from mActiveSleepTimeUs (DIRECT only)
2191 - maxPeriod from frame count and sample rate (MIXER only)
2192
2193The parameters that affect these derived values are:
2194 - frame count
2195 - frame size
2196 - sample rate
2197 - device type: A2DP or not
2198 - device latency
2199 - format: PCM or not
2200 - active sleep time
2201 - idle sleep time
2202*/
2203
2204void AudioFlinger::PlaybackThread::cacheParameters_l()
2205{
Andy Hung25c2dac2014-02-27 14:56:00 -08002206 mSinkBufferSize = mNormalFrameCount * mFrameSize;
Eric Laurent81784c32012-11-19 14:55:58 -08002207 activeSleepTime = activeSleepTimeUs();
2208 idleSleepTime = idleSleepTimeUs();
2209}
2210
2211void AudioFlinger::PlaybackThread::invalidateTracks(audio_stream_type_t streamType)
2212{
Glenn Kasten7c027242012-12-26 14:43:16 -08002213 ALOGV("MixerThread::invalidateTracks() mixer %p, streamType %d, mTracks.size %d",
Eric Laurent81784c32012-11-19 14:55:58 -08002214 this, streamType, mTracks.size());
2215 Mutex::Autolock _l(mLock);
2216
2217 size_t size = mTracks.size();
2218 for (size_t i = 0; i < size; i++) {
2219 sp<Track> t = mTracks[i];
2220 if (t->streamType() == streamType) {
Glenn Kasten5736c352012-12-04 12:12:34 -08002221 t->invalidate();
Eric Laurent81784c32012-11-19 14:55:58 -08002222 }
2223 }
2224}
2225
2226status_t AudioFlinger::PlaybackThread::addEffectChain_l(const sp<EffectChain>& chain)
2227{
2228 int session = chain->sessionId();
Andy Hung010a1a12014-03-13 13:57:33 -07002229 int16_t* buffer = reinterpret_cast<int16_t*>(mEffectBufferEnabled
2230 ? mEffectBuffer : mSinkBuffer);
Eric Laurent81784c32012-11-19 14:55:58 -08002231 bool ownsBuffer = false;
2232
2233 ALOGV("addEffectChain_l() %p on thread %p for session %d", chain.get(), this, session);
2234 if (session > 0) {
2235 // Only one effect chain can be present in direct output thread and it uses
Andy Hung2098f272014-02-27 14:00:06 -08002236 // the sink buffer as input
Eric Laurent81784c32012-11-19 14:55:58 -08002237 if (mType != DIRECT) {
2238 size_t numSamples = mNormalFrameCount * mChannelCount;
2239 buffer = new int16_t[numSamples];
2240 memset(buffer, 0, numSamples * sizeof(int16_t));
2241 ALOGV("addEffectChain_l() creating new input buffer %p session %d", buffer, session);
2242 ownsBuffer = true;
2243 }
2244
2245 // Attach all tracks with same session ID to this chain.
2246 for (size_t i = 0; i < mTracks.size(); ++i) {
2247 sp<Track> track = mTracks[i];
2248 if (session == track->sessionId()) {
2249 ALOGV("addEffectChain_l() track->setMainBuffer track %p buffer %p", track.get(),
2250 buffer);
2251 track->setMainBuffer(buffer);
2252 chain->incTrackCnt();
2253 }
2254 }
2255
2256 // indicate all active tracks in the chain
2257 for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
2258 sp<Track> track = mActiveTracks[i].promote();
2259 if (track == 0) {
2260 continue;
2261 }
2262 if (session == track->sessionId()) {
2263 ALOGV("addEffectChain_l() activating track %p on session %d", track.get(), session);
2264 chain->incActiveTrackCnt();
2265 }
2266 }
2267 }
Eric Laurentaaa44472014-09-12 17:41:50 -07002268 chain->setThread(this);
Eric Laurent81784c32012-11-19 14:55:58 -08002269 chain->setInBuffer(buffer, ownsBuffer);
Andy Hung010a1a12014-03-13 13:57:33 -07002270 chain->setOutBuffer(reinterpret_cast<int16_t*>(mEffectBufferEnabled
2271 ? mEffectBuffer : mSinkBuffer));
Eric Laurent81784c32012-11-19 14:55:58 -08002272 // Effect chain for session AUDIO_SESSION_OUTPUT_STAGE is inserted at end of effect
2273 // chains list in order to be processed last as it contains output stage effects
2274 // Effect chain for session AUDIO_SESSION_OUTPUT_MIX is inserted before
2275 // session AUDIO_SESSION_OUTPUT_STAGE to be processed
2276 // after track specific effects and before output stage
2277 // It is therefore mandatory that AUDIO_SESSION_OUTPUT_MIX == 0 and
2278 // that AUDIO_SESSION_OUTPUT_STAGE < AUDIO_SESSION_OUTPUT_MIX
2279 // Effect chain for other sessions are inserted at beginning of effect
2280 // chains list to be processed before output mix effects. Relative order between other
2281 // sessions is not important
2282 size_t size = mEffectChains.size();
2283 size_t i = 0;
2284 for (i = 0; i < size; i++) {
2285 if (mEffectChains[i]->sessionId() < session) {
2286 break;
2287 }
2288 }
2289 mEffectChains.insertAt(chain, i);
2290 checkSuspendOnAddEffectChain_l(chain);
2291
2292 return NO_ERROR;
2293}
2294
2295size_t AudioFlinger::PlaybackThread::removeEffectChain_l(const sp<EffectChain>& chain)
2296{
2297 int session = chain->sessionId();
2298
2299 ALOGV("removeEffectChain_l() %p from thread %p for session %d", chain.get(), this, session);
2300
2301 for (size_t i = 0; i < mEffectChains.size(); i++) {
2302 if (chain == mEffectChains[i]) {
2303 mEffectChains.removeAt(i);
2304 // detach all active tracks from the chain
2305 for (size_t i = 0 ; i < mActiveTracks.size() ; ++i) {
2306 sp<Track> track = mActiveTracks[i].promote();
2307 if (track == 0) {
2308 continue;
2309 }
2310 if (session == track->sessionId()) {
2311 ALOGV("removeEffectChain_l(): stopping track on chain %p for session Id: %d",
2312 chain.get(), session);
2313 chain->decActiveTrackCnt();
2314 }
2315 }
2316
2317 // detach all tracks with same session ID from this chain
2318 for (size_t i = 0; i < mTracks.size(); ++i) {
2319 sp<Track> track = mTracks[i];
2320 if (session == track->sessionId()) {
Andy Hung010a1a12014-03-13 13:57:33 -07002321 track->setMainBuffer(reinterpret_cast<int16_t*>(mSinkBuffer));
Eric Laurent81784c32012-11-19 14:55:58 -08002322 chain->decTrackCnt();
2323 }
2324 }
2325 break;
2326 }
2327 }
2328 return mEffectChains.size();
2329}
2330
2331status_t AudioFlinger::PlaybackThread::attachAuxEffect(
2332 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
2333{
2334 Mutex::Autolock _l(mLock);
2335 return attachAuxEffect_l(track, EffectId);
2336}
2337
2338status_t AudioFlinger::PlaybackThread::attachAuxEffect_l(
2339 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
2340{
2341 status_t status = NO_ERROR;
2342
2343 if (EffectId == 0) {
2344 track->setAuxBuffer(0, NULL);
2345 } else {
2346 // Auxiliary effects are always in audio session AUDIO_SESSION_OUTPUT_MIX
2347 sp<EffectModule> effect = getEffect_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
2348 if (effect != 0) {
2349 if ((effect->desc().flags & EFFECT_FLAG_TYPE_MASK) == EFFECT_FLAG_TYPE_AUXILIARY) {
2350 track->setAuxBuffer(EffectId, (int32_t *)effect->inBuffer());
2351 } else {
2352 status = INVALID_OPERATION;
2353 }
2354 } else {
2355 status = BAD_VALUE;
2356 }
2357 }
2358 return status;
2359}
2360
2361void AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId)
2362{
2363 for (size_t i = 0; i < mTracks.size(); ++i) {
2364 sp<Track> track = mTracks[i];
2365 if (track->auxEffectId() == effectId) {
2366 attachAuxEffect_l(track, 0);
2367 }
2368 }
2369}
2370
2371bool AudioFlinger::PlaybackThread::threadLoop()
2372{
2373 Vector< sp<Track> > tracksToRemove;
2374
2375 standbyTime = systemTime();
2376
2377 // MIXER
2378 nsecs_t lastWarning = 0;
2379
2380 // DUPLICATING
2381 // FIXME could this be made local to while loop?
2382 writeFrames = 0;
2383
Marco Nelissen462fd2f2013-01-14 14:12:05 -08002384 int lastGeneration = 0;
2385
Eric Laurent81784c32012-11-19 14:55:58 -08002386 cacheParameters_l();
2387 sleepTime = idleSleepTime;
2388
2389 if (mType == MIXER) {
2390 sleepTimeShift = 0;
2391 }
2392
2393 CpuStats cpuStats;
2394 const String8 myName(String8::format("thread %p type %d TID %d", this, mType, gettid()));
2395
2396 acquireWakeLock();
2397
Glenn Kasten9e58b552013-01-18 15:09:48 -08002398 // mNBLogWriter->log can only be called while thread mutex mLock is held.
2399 // So if you need to log when mutex is unlocked, set logString to a non-NULL string,
2400 // and then that string will be logged at the next convenient opportunity.
2401 const char *logString = NULL;
2402
Eric Laurent664539d2013-09-23 18:24:31 -07002403 checkSilentMode_l();
2404
Eric Laurent81784c32012-11-19 14:55:58 -08002405 while (!exitPending())
2406 {
2407 cpuStats.sample(myName);
2408
2409 Vector< sp<EffectChain> > effectChains;
2410
Eric Laurent81784c32012-11-19 14:55:58 -08002411 { // scope for mLock
2412
2413 Mutex::Autolock _l(mLock);
2414
Eric Laurent021cf962014-05-13 10:18:14 -07002415 processConfigEvents_l();
Eric Laurent10351942014-05-08 18:49:52 -07002416
Glenn Kasten9e58b552013-01-18 15:09:48 -08002417 if (logString != NULL) {
2418 mNBLogWriter->logTimestamp();
2419 mNBLogWriter->log(logString);
2420 logString = NULL;
2421 }
2422
Glenn Kasten4c053ea2014-09-28 14:41:07 -07002423 // Gather the framesReleased counters for all active tracks,
2424 // and latch them atomically with the timestamp.
2425 // FIXME We're using raw pointers as indices. A unique track ID would be a better index.
2426 mLatchD.mFramesReleased.clear();
2427 size_t size = mActiveTracks.size();
2428 for (size_t i = 0; i < size; i++) {
2429 sp<Track> t = mActiveTracks[i].promote();
2430 if (t != 0) {
2431 mLatchD.mFramesReleased.add(t.get(),
2432 t->mAudioTrackServerProxy->framesReleased());
2433 }
2434 }
Glenn Kastenbd096fd2013-08-23 13:53:56 -07002435 if (mLatchDValid) {
2436 mLatchQ = mLatchD;
2437 mLatchDValid = false;
2438 mLatchQValid = true;
2439 }
2440
Eric Laurent81784c32012-11-19 14:55:58 -08002441 saveOutputTracks();
Eric Laurentbfb1b832013-01-07 09:53:42 -08002442 if (mSignalPending) {
2443 // A signal was raised while we were unlocked
2444 mSignalPending = false;
2445 } else if (waitingAsyncCallback_l()) {
2446 if (exitPending()) {
2447 break;
2448 }
2449 releaseWakeLock_l();
Marco Nelissen462fd2f2013-01-14 14:12:05 -08002450 mWakeLockUids.clear();
2451 mActiveTracksGeneration++;
Eric Laurentbfb1b832013-01-07 09:53:42 -08002452 ALOGV("wait async completion");
2453 mWaitWorkCV.wait(mLock);
2454 ALOGV("async completion/wake");
2455 acquireWakeLock_l();
Eric Laurent972a1732013-09-04 09:42:59 -07002456 standbyTime = systemTime() + standbyDelay;
2457 sleepTime = 0;
Eric Laurentede6c3b2013-09-19 14:37:46 -07002458
2459 continue;
2460 }
2461 if ((!mActiveTracks.size() && systemTime() > standbyTime) ||
Eric Laurentbfb1b832013-01-07 09:53:42 -08002462 isSuspended()) {
2463 // put audio hardware into standby after short delay
2464 if (shouldStandby_l()) {
Eric Laurent81784c32012-11-19 14:55:58 -08002465
2466 threadLoop_standby();
2467
2468 mStandby = true;
2469 }
2470
2471 if (!mActiveTracks.size() && mConfigEvents.isEmpty()) {
2472 // we're about to wait, flush the binder command buffer
2473 IPCThreadState::self()->flushCommands();
2474
2475 clearOutputTracks();
2476
2477 if (exitPending()) {
2478 break;
2479 }
2480
2481 releaseWakeLock_l();
Marco Nelissen462fd2f2013-01-14 14:12:05 -08002482 mWakeLockUids.clear();
2483 mActiveTracksGeneration++;
Eric Laurent81784c32012-11-19 14:55:58 -08002484 // wait until we have something to do...
2485 ALOGV("%s going to sleep", myName.string());
2486 mWaitWorkCV.wait(mLock);
2487 ALOGV("%s waking up", myName.string());
2488 acquireWakeLock_l();
2489
2490 mMixerStatus = MIXER_IDLE;
2491 mMixerStatusIgnoringFastTracks = MIXER_IDLE;
2492 mBytesWritten = 0;
Eric Laurentbfb1b832013-01-07 09:53:42 -08002493 mBytesRemaining = 0;
Eric Laurent81784c32012-11-19 14:55:58 -08002494 checkSilentMode_l();
2495
2496 standbyTime = systemTime() + standbyDelay;
2497 sleepTime = idleSleepTime;
2498 if (mType == MIXER) {
2499 sleepTimeShift = 0;
2500 }
2501
2502 continue;
2503 }
2504 }
Eric Laurent81784c32012-11-19 14:55:58 -08002505 // mMixerStatusIgnoringFastTracks is also updated internally
2506 mMixerStatus = prepareTracks_l(&tracksToRemove);
2507
Marco Nelissen462fd2f2013-01-14 14:12:05 -08002508 // compare with previously applied list
2509 if (lastGeneration != mActiveTracksGeneration) {
2510 // update wakelock
2511 updateWakeLockUids_l(mWakeLockUids);
2512 lastGeneration = mActiveTracksGeneration;
2513 }
2514
Eric Laurent81784c32012-11-19 14:55:58 -08002515 // prevent any changes in effect chain list and in each effect chain
2516 // during mixing and effect process as the audio buffers could be deleted
2517 // or modified if an effect is created or deleted
2518 lockEffectChains_l(effectChains);
Marco Nelissen462fd2f2013-01-14 14:12:05 -08002519 } // mLock scope ends
Eric Laurent81784c32012-11-19 14:55:58 -08002520
Eric Laurentbfb1b832013-01-07 09:53:42 -08002521 if (mBytesRemaining == 0) {
2522 mCurrentWriteLength = 0;
2523 if (mMixerStatus == MIXER_TRACKS_READY) {
2524 // threadLoop_mix() sets mCurrentWriteLength
2525 threadLoop_mix();
2526 } else if ((mMixerStatus != MIXER_DRAIN_TRACK)
2527 && (mMixerStatus != MIXER_DRAIN_ALL)) {
2528 // threadLoop_sleepTime sets sleepTime to 0 if data
2529 // must be written to HAL
2530 threadLoop_sleepTime();
2531 if (sleepTime == 0) {
Andy Hung25c2dac2014-02-27 14:56:00 -08002532 mCurrentWriteLength = mSinkBufferSize;
Eric Laurentbfb1b832013-01-07 09:53:42 -08002533 }
2534 }
Andy Hung98ef9782014-03-04 14:46:50 -08002535 // Either threadLoop_mix() or threadLoop_sleepTime() should have set
2536 // mMixerBuffer with data if mMixerBufferValid is true and sleepTime == 0.
2537 // Merge mMixerBuffer data into mEffectBuffer (if any effects are valid)
2538 // or mSinkBuffer (if there are no effects).
2539 //
2540 // This is done pre-effects computation; if effects change to
2541 // support higher precision, this needs to move.
2542 //
2543 // mMixerBufferValid is only set true by MixerThread::prepareTracks_l().
2544 // TODO use sleepTime == 0 as an additional condition.
2545 if (mMixerBufferValid) {
2546 void *buffer = mEffectBufferValid ? mEffectBuffer : mSinkBuffer;
2547 audio_format_t format = mEffectBufferValid ? mEffectBufferFormat : mFormat;
2548
2549 memcpy_by_audio_format(buffer, format, mMixerBuffer, mMixerBufferFormat,
2550 mNormalFrameCount * mChannelCount);
2551 }
2552
Eric Laurentbfb1b832013-01-07 09:53:42 -08002553 mBytesRemaining = mCurrentWriteLength;
2554 if (isSuspended()) {
2555 sleepTime = suspendSleepTimeUs();
2556 // simulate write to HAL when suspended
Andy Hung25c2dac2014-02-27 14:56:00 -08002557 mBytesWritten += mSinkBufferSize;
Eric Laurentbfb1b832013-01-07 09:53:42 -08002558 mBytesRemaining = 0;
2559 }
Eric Laurent81784c32012-11-19 14:55:58 -08002560
Eric Laurentbfb1b832013-01-07 09:53:42 -08002561 // only process effects if we're going to write
Eric Laurent59fe0102013-09-27 18:48:26 -07002562 if (sleepTime == 0 && mType != OFFLOAD) {
Eric Laurentbfb1b832013-01-07 09:53:42 -08002563 for (size_t i = 0; i < effectChains.size(); i ++) {
2564 effectChains[i]->process_l();
2565 }
Eric Laurent81784c32012-11-19 14:55:58 -08002566 }
2567 }
Eric Laurent59fe0102013-09-27 18:48:26 -07002568 // Process effect chains for offloaded thread even if no audio
2569 // was read from audio track: process only updates effect state
2570 // and thus does have to be synchronized with audio writes but may have
2571 // to be called while waiting for async write callback
2572 if (mType == OFFLOAD) {
2573 for (size_t i = 0; i < effectChains.size(); i ++) {
2574 effectChains[i]->process_l();
2575 }
2576 }
Eric Laurent81784c32012-11-19 14:55:58 -08002577
Andy Hung98ef9782014-03-04 14:46:50 -08002578 // Only if the Effects buffer is enabled and there is data in the
2579 // Effects buffer (buffer valid), we need to
2580 // copy into the sink buffer.
2581 // TODO use sleepTime == 0 as an additional condition.
2582 if (mEffectBufferValid) {
2583 //ALOGV("writing effect buffer to sink buffer format %#x", mFormat);
2584 memcpy_by_audio_format(mSinkBuffer, mFormat, mEffectBuffer, mEffectBufferFormat,
2585 mNormalFrameCount * mChannelCount);
2586 }
2587
Eric Laurent81784c32012-11-19 14:55:58 -08002588 // enable changes in effect chain
2589 unlockEffectChains(effectChains);
2590
Eric Laurentbfb1b832013-01-07 09:53:42 -08002591 if (!waitingAsyncCallback()) {
2592 // sleepTime == 0 means we must write to audio hardware
2593 if (sleepTime == 0) {
2594 if (mBytesRemaining) {
2595 ssize_t ret = threadLoop_write();
2596 if (ret < 0) {
2597 mBytesRemaining = 0;
2598 } else {
2599 mBytesWritten += ret;
2600 mBytesRemaining -= ret;
2601 }
2602 } else if ((mMixerStatus == MIXER_DRAIN_TRACK) ||
2603 (mMixerStatus == MIXER_DRAIN_ALL)) {
2604 threadLoop_drain();
Eric Laurent81784c32012-11-19 14:55:58 -08002605 }
Glenn Kasten4944acb2013-08-19 08:39:20 -07002606 if (mType == MIXER) {
2607 // write blocked detection
2608 nsecs_t now = systemTime();
2609 nsecs_t delta = now - mLastWriteTime;
2610 if (!mStandby && delta > maxPeriod) {
2611 mNumDelayedWrites++;
2612 if ((now - lastWarning) > kWarningThrottleNs) {
2613 ATRACE_NAME("underrun");
2614 ALOGW("write blocked for %llu msecs, %d delayed writes, thread %p",
2615 ns2ms(delta), mNumDelayedWrites, this);
2616 lastWarning = now;
2617 }
Eric Laurentbfb1b832013-01-07 09:53:42 -08002618 }
2619 }
Eric Laurent81784c32012-11-19 14:55:58 -08002620
Eric Laurentbfb1b832013-01-07 09:53:42 -08002621 } else {
2622 usleep(sleepTime);
2623 }
Eric Laurent81784c32012-11-19 14:55:58 -08002624 }
2625
2626 // Finally let go of removed track(s), without the lock held
2627 // since we can't guarantee the destructors won't acquire that
2628 // same lock. This will also mutate and push a new fast mixer state.
2629 threadLoop_removeTracks(tracksToRemove);
2630 tracksToRemove.clear();
2631
2632 // FIXME I don't understand the need for this here;
2633 // it was in the original code but maybe the
2634 // assignment in saveOutputTracks() makes this unnecessary?
2635 clearOutputTracks();
2636
2637 // Effect chains will be actually deleted here if they were removed from
2638 // mEffectChains list during mixing or effects processing
2639 effectChains.clear();
2640
2641 // FIXME Note that the above .clear() is no longer necessary since effectChains
2642 // is now local to this block, but will keep it for now (at least until merge done).
2643 }
2644
Eric Laurentbfb1b832013-01-07 09:53:42 -08002645 threadLoop_exit();
2646
Eric Laurentcf817a22014-08-04 20:36:31 -07002647 if (!mStandby) {
2648 threadLoop_standby();
2649 mStandby = true;
Eric Laurent81784c32012-11-19 14:55:58 -08002650 }
2651
2652 releaseWakeLock();
Marco Nelissen462fd2f2013-01-14 14:12:05 -08002653 mWakeLockUids.clear();
2654 mActiveTracksGeneration++;
Eric Laurent81784c32012-11-19 14:55:58 -08002655
2656 ALOGV("Thread %p type %d exiting", this, mType);
2657 return false;
2658}
2659
Eric Laurentbfb1b832013-01-07 09:53:42 -08002660// removeTracks_l() must be called with ThreadBase::mLock held
2661void AudioFlinger::PlaybackThread::removeTracks_l(const Vector< sp<Track> >& tracksToRemove)
2662{
2663 size_t count = tracksToRemove.size();
Glenn Kasten34fca342013-08-13 09:48:14 -07002664 if (count > 0) {
Eric Laurentbfb1b832013-01-07 09:53:42 -08002665 for (size_t i=0 ; i<count ; i++) {
2666 const sp<Track>& track = tracksToRemove.itemAt(i);
2667 mActiveTracks.remove(track);
Marco Nelissen462fd2f2013-01-14 14:12:05 -08002668 mWakeLockUids.remove(track->uid());
2669 mActiveTracksGeneration++;
Eric Laurentbfb1b832013-01-07 09:53:42 -08002670 ALOGV("removeTracks_l removing track on session %d", track->sessionId());
2671 sp<EffectChain> chain = getEffectChain_l(track->sessionId());
2672 if (chain != 0) {
2673 ALOGV("stopping track on chain %p for session Id: %d", chain.get(),
2674 track->sessionId());
2675 chain->decActiveTrackCnt();
2676 }
2677 if (track->isTerminated()) {
2678 removeTrack_l(track);
2679 }
2680 }
2681 }
2682
2683}
Eric Laurent81784c32012-11-19 14:55:58 -08002684
Eric Laurentaccc1472013-09-20 09:36:34 -07002685status_t AudioFlinger::PlaybackThread::getTimestamp_l(AudioTimestamp& timestamp)
2686{
2687 if (mNormalSink != 0) {
2688 return mNormalSink->getTimestamp(timestamp);
2689 }
Eric Laurentab5cdba2014-06-09 17:22:27 -07002690 if ((mType == OFFLOAD || mType == DIRECT) && mOutput->stream->get_presentation_position) {
Eric Laurentaccc1472013-09-20 09:36:34 -07002691 uint64_t position64;
2692 int ret = mOutput->stream->get_presentation_position(
2693 mOutput->stream, &position64, &timestamp.mTime);
2694 if (ret == 0) {
2695 timestamp.mPosition = (uint32_t)position64;
2696 return NO_ERROR;
2697 }
2698 }
2699 return INVALID_OPERATION;
2700}
Eric Laurent1c333e22014-05-20 10:48:17 -07002701
2702status_t AudioFlinger::PlaybackThread::createAudioPatch_l(const struct audio_patch *patch,
2703 audio_patch_handle_t *handle)
2704{
2705 status_t status = NO_ERROR;
2706 if (mOutput->audioHwDev->version() >= AUDIO_DEVICE_API_VERSION_3_0) {
2707 // store new device and send to effects
2708 audio_devices_t type = AUDIO_DEVICE_NONE;
2709 for (unsigned int i = 0; i < patch->num_sinks; i++) {
2710 type |= patch->sinks[i].ext.device.type;
2711 }
2712 mOutDevice = type;
2713 for (size_t i = 0; i < mEffectChains.size(); i++) {
2714 mEffectChains[i]->setDevice_l(mOutDevice);
2715 }
2716
2717 audio_hw_device_t *hwDevice = mOutput->audioHwDev->hwDevice();
2718 status = hwDevice->create_audio_patch(hwDevice,
2719 patch->num_sources,
2720 patch->sources,
2721 patch->num_sinks,
2722 patch->sinks,
2723 handle);
2724 } else {
2725 ALOG_ASSERT(false, "createAudioPatch_l() called on a pre 3.0 HAL");
2726 }
2727 return status;
2728}
2729
2730status_t AudioFlinger::PlaybackThread::releaseAudioPatch_l(const audio_patch_handle_t handle)
2731{
2732 status_t status = NO_ERROR;
2733 if (mOutput->audioHwDev->version() >= AUDIO_DEVICE_API_VERSION_3_0) {
2734 audio_hw_device_t *hwDevice = mOutput->audioHwDev->hwDevice();
2735 status = hwDevice->release_audio_patch(hwDevice, handle);
2736 } else {
2737 ALOG_ASSERT(false, "releaseAudioPatch_l() called on a pre 3.0 HAL");
2738 }
2739 return status;
2740}
2741
Eric Laurent83b88082014-06-20 18:31:16 -07002742void AudioFlinger::PlaybackThread::addPatchTrack(const sp<PatchTrack>& track)
2743{
2744 Mutex::Autolock _l(mLock);
2745 mTracks.add(track);
2746}
2747
2748void AudioFlinger::PlaybackThread::deletePatchTrack(const sp<PatchTrack>& track)
2749{
2750 Mutex::Autolock _l(mLock);
2751 destroyTrack_l(track);
2752}
2753
2754void AudioFlinger::PlaybackThread::getAudioPortConfig(struct audio_port_config *config)
2755{
2756 ThreadBase::getAudioPortConfig(config);
2757 config->role = AUDIO_PORT_ROLE_SOURCE;
2758 config->ext.mix.hw_module = mOutput->audioHwDev->handle();
2759 config->ext.mix.usecase.stream = AUDIO_STREAM_DEFAULT;
2760}
2761
Eric Laurent81784c32012-11-19 14:55:58 -08002762// ----------------------------------------------------------------------------
2763
2764AudioFlinger::MixerThread::MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,
2765 audio_io_handle_t id, audio_devices_t device, type_t type)
2766 : PlaybackThread(audioFlinger, output, id, device, type),
2767 // mAudioMixer below
2768 // mFastMixer below
2769 mFastMixerFutex(0)
2770 // mOutputSink below
2771 // mPipeSink below
2772 // mNormalSink below
2773{
2774 ALOGV("MixerThread() id=%d device=%#x type=%d", id, device, type);
Glenn Kastenf6ed4232013-07-16 11:16:27 -07002775 ALOGV("mSampleRate=%u, mChannelMask=%#x, mChannelCount=%u, mFormat=%d, mFrameSize=%u, "
Eric Laurent81784c32012-11-19 14:55:58 -08002776 "mFrameCount=%d, mNormalFrameCount=%d",
2777 mSampleRate, mChannelMask, mChannelCount, mFormat, mFrameSize, mFrameCount,
2778 mNormalFrameCount);
2779 mAudioMixer = new AudioMixer(mNormalFrameCount, mSampleRate);
2780
Eric Laurent81784c32012-11-19 14:55:58 -08002781 // create an NBAIO sink for the HAL output stream, and negotiate
2782 mOutputSink = new AudioStreamOutSink(output->stream);
2783 size_t numCounterOffers = 0;
Glenn Kastenf69f9862014-03-07 08:37:57 -08002784 const NBAIO_Format offers[1] = {Format_from_SR_C(mSampleRate, mChannelCount, mFormat)};
Eric Laurent81784c32012-11-19 14:55:58 -08002785 ssize_t index = mOutputSink->negotiate(offers, 1, NULL, numCounterOffers);
2786 ALOG_ASSERT(index == 0);
2787
2788 // initialize fast mixer depending on configuration
2789 bool initFastMixer;
2790 switch (kUseFastMixer) {
2791 case FastMixer_Never:
2792 initFastMixer = false;
2793 break;
2794 case FastMixer_Always:
2795 initFastMixer = true;
2796 break;
2797 case FastMixer_Static:
2798 case FastMixer_Dynamic:
2799 initFastMixer = mFrameCount < mNormalFrameCount;
2800 break;
2801 }
2802 if (initFastMixer) {
Andy Hung1258c1a2014-05-23 21:22:17 -07002803 audio_format_t fastMixerFormat;
2804 if (mMixerBufferEnabled && mEffectBufferEnabled) {
2805 fastMixerFormat = AUDIO_FORMAT_PCM_FLOAT;
2806 } else {
2807 fastMixerFormat = AUDIO_FORMAT_PCM_16_BIT;
2808 }
2809 if (mFormat != fastMixerFormat) {
2810 // change our Sink format to accept our intermediate precision
2811 mFormat = fastMixerFormat;
2812 free(mSinkBuffer);
2813 mFrameSize = mChannelCount * audio_bytes_per_sample(mFormat);
2814 const size_t sinkBufferSize = mNormalFrameCount * mFrameSize;
2815 (void)posix_memalign(&mSinkBuffer, 32, sinkBufferSize);
2816 }
Eric Laurent81784c32012-11-19 14:55:58 -08002817
2818 // create a MonoPipe to connect our submix to FastMixer
2819 NBAIO_Format format = mOutputSink->format();
Glenn Kastenba0b34c2014-09-28 13:06:06 -07002820 NBAIO_Format origformat = format;
Andy Hung1258c1a2014-05-23 21:22:17 -07002821 // adjust format to match that of the Fast Mixer
2822 format.mFormat = fastMixerFormat;
2823 format.mFrameSize = audio_bytes_per_sample(format.mFormat) * format.mChannelCount;
2824
Eric Laurent81784c32012-11-19 14:55:58 -08002825 // This pipe depth compensates for scheduling latency of the normal mixer thread.
2826 // When it wakes up after a maximum latency, it runs a few cycles quickly before
2827 // finally blocking. Note the pipe implementation rounds up the request to a power of 2.
2828 MonoPipe *monoPipe = new MonoPipe(mNormalFrameCount * 4, format, true /*writeCanBlock*/);
2829 const NBAIO_Format offers[1] = {format};
2830 size_t numCounterOffers = 0;
2831 ssize_t index = monoPipe->negotiate(offers, 1, NULL, numCounterOffers);
2832 ALOG_ASSERT(index == 0);
2833 monoPipe->setAvgFrames((mScreenState & 1) ?
2834 (monoPipe->maxFrames() * 7) / 8 : mNormalFrameCount * 2);
2835 mPipeSink = monoPipe;
2836
Glenn Kasten46909e72013-02-26 09:20:22 -08002837#ifdef TEE_SINK
Glenn Kastenda6ef132013-01-10 12:31:01 -08002838 if (mTeeSinkOutputEnabled) {
2839 // create a Pipe to archive a copy of FastMixer's output for dumpsys
Glenn Kastenba0b34c2014-09-28 13:06:06 -07002840 Pipe *teeSink = new Pipe(mTeeSinkOutputFrames, origformat);
2841 const NBAIO_Format offers2[1] = {origformat};
Glenn Kastenda6ef132013-01-10 12:31:01 -08002842 numCounterOffers = 0;
Glenn Kastenba0b34c2014-09-28 13:06:06 -07002843 index = teeSink->negotiate(offers2, 1, NULL, numCounterOffers);
Glenn Kastenda6ef132013-01-10 12:31:01 -08002844 ALOG_ASSERT(index == 0);
2845 mTeeSink = teeSink;
2846 PipeReader *teeSource = new PipeReader(*teeSink);
2847 numCounterOffers = 0;
Glenn Kastenba0b34c2014-09-28 13:06:06 -07002848 index = teeSource->negotiate(offers2, 1, NULL, numCounterOffers);
Glenn Kastenda6ef132013-01-10 12:31:01 -08002849 ALOG_ASSERT(index == 0);
2850 mTeeSource = teeSource;
2851 }
Glenn Kasten46909e72013-02-26 09:20:22 -08002852#endif
Eric Laurent81784c32012-11-19 14:55:58 -08002853
2854 // create fast mixer and configure it initially with just one fast track for our submix
2855 mFastMixer = new FastMixer();
2856 FastMixerStateQueue *sq = mFastMixer->sq();
2857#ifdef STATE_QUEUE_DUMP
2858 sq->setObserverDump(&mStateQueueObserverDump);
2859 sq->setMutatorDump(&mStateQueueMutatorDump);
2860#endif
2861 FastMixerState *state = sq->begin();
2862 FastTrack *fastTrack = &state->mFastTracks[0];
2863 // wrap the source side of the MonoPipe to make it an AudioBufferProvider
2864 fastTrack->mBufferProvider = new SourceAudioBufferProvider(new MonoPipeReader(monoPipe));
2865 fastTrack->mVolumeProvider = NULL;
Andy Hunge8a1ced2014-05-09 15:02:21 -07002866 fastTrack->mChannelMask = mChannelMask; // mPipeSink channel mask for audio to FastMixer
2867 fastTrack->mFormat = mFormat; // mPipeSink format for audio to FastMixer
Eric Laurent81784c32012-11-19 14:55:58 -08002868 fastTrack->mGeneration++;
2869 state->mFastTracksGen++;
2870 state->mTrackMask = 1;
2871 // fast mixer will use the HAL output sink
2872 state->mOutputSink = mOutputSink.get();
2873 state->mOutputSinkGen++;
2874 state->mFrameCount = mFrameCount;
2875 state->mCommand = FastMixerState::COLD_IDLE;
2876 // already done in constructor initialization list
2877 //mFastMixerFutex = 0;
2878 state->mColdFutexAddr = &mFastMixerFutex;
2879 state->mColdGen++;
2880 state->mDumpState = &mFastMixerDumpState;
Glenn Kasten46909e72013-02-26 09:20:22 -08002881#ifdef TEE_SINK
Eric Laurent81784c32012-11-19 14:55:58 -08002882 state->mTeeSink = mTeeSink.get();
Glenn Kasten46909e72013-02-26 09:20:22 -08002883#endif
Glenn Kasten9e58b552013-01-18 15:09:48 -08002884 mFastMixerNBLogWriter = audioFlinger->newWriter_l(kFastMixerLogSize, "FastMixer");
2885 state->mNBLogWriter = mFastMixerNBLogWriter.get();
Eric Laurent81784c32012-11-19 14:55:58 -08002886 sq->end();
2887 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
2888
2889 // start the fast mixer
2890 mFastMixer->run("FastMixer", PRIORITY_URGENT_AUDIO);
2891 pid_t tid = mFastMixer->getTid();
2892 int err = requestPriority(getpid_cached, tid, kPriorityFastMixer);
2893 if (err != 0) {
2894 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
2895 kPriorityFastMixer, getpid_cached, tid, err);
2896 }
2897
2898#ifdef AUDIO_WATCHDOG
2899 // create and start the watchdog
2900 mAudioWatchdog = new AudioWatchdog();
2901 mAudioWatchdog->setDump(&mAudioWatchdogDump);
2902 mAudioWatchdog->run("AudioWatchdog", PRIORITY_URGENT_AUDIO);
2903 tid = mAudioWatchdog->getTid();
2904 err = requestPriority(getpid_cached, tid, kPriorityFastMixer);
2905 if (err != 0) {
2906 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
2907 kPriorityFastMixer, getpid_cached, tid, err);
2908 }
2909#endif
2910
Eric Laurent81784c32012-11-19 14:55:58 -08002911 }
2912
2913 switch (kUseFastMixer) {
2914 case FastMixer_Never:
2915 case FastMixer_Dynamic:
2916 mNormalSink = mOutputSink;
2917 break;
2918 case FastMixer_Always:
2919 mNormalSink = mPipeSink;
2920 break;
2921 case FastMixer_Static:
2922 mNormalSink = initFastMixer ? mPipeSink : mOutputSink;
2923 break;
2924 }
2925}
2926
2927AudioFlinger::MixerThread::~MixerThread()
2928{
Glenn Kasten4d23ca32014-05-13 10:39:51 -07002929 if (mFastMixer != 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08002930 FastMixerStateQueue *sq = mFastMixer->sq();
2931 FastMixerState *state = sq->begin();
2932 if (state->mCommand == FastMixerState::COLD_IDLE) {
2933 int32_t old = android_atomic_inc(&mFastMixerFutex);
2934 if (old == -1) {
Elliott Hughesee499292014-05-21 17:55:51 -07002935 (void) syscall(__NR_futex, &mFastMixerFutex, FUTEX_WAKE_PRIVATE, 1);
Eric Laurent81784c32012-11-19 14:55:58 -08002936 }
2937 }
2938 state->mCommand = FastMixerState::EXIT;
2939 sq->end();
2940 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
2941 mFastMixer->join();
2942 // Though the fast mixer thread has exited, it's state queue is still valid.
2943 // We'll use that extract the final state which contains one remaining fast track
2944 // corresponding to our sub-mix.
2945 state = sq->begin();
2946 ALOG_ASSERT(state->mTrackMask == 1);
2947 FastTrack *fastTrack = &state->mFastTracks[0];
2948 ALOG_ASSERT(fastTrack->mBufferProvider != NULL);
2949 delete fastTrack->mBufferProvider;
2950 sq->end(false /*didModify*/);
Glenn Kasten4d23ca32014-05-13 10:39:51 -07002951 mFastMixer.clear();
Eric Laurent81784c32012-11-19 14:55:58 -08002952#ifdef AUDIO_WATCHDOG
2953 if (mAudioWatchdog != 0) {
2954 mAudioWatchdog->requestExit();
2955 mAudioWatchdog->requestExitAndWait();
2956 mAudioWatchdog.clear();
2957 }
2958#endif
2959 }
Glenn Kasten9e58b552013-01-18 15:09:48 -08002960 mAudioFlinger->unregisterWriter(mFastMixerNBLogWriter);
Eric Laurent81784c32012-11-19 14:55:58 -08002961 delete mAudioMixer;
2962}
2963
2964
2965uint32_t AudioFlinger::MixerThread::correctLatency_l(uint32_t latency) const
2966{
Glenn Kasten4d23ca32014-05-13 10:39:51 -07002967 if (mFastMixer != 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08002968 MonoPipe *pipe = (MonoPipe *)mPipeSink.get();
2969 latency += (pipe->getAvgFrames() * 1000) / mSampleRate;
2970 }
2971 return latency;
2972}
2973
2974
2975void AudioFlinger::MixerThread::threadLoop_removeTracks(const Vector< sp<Track> >& tracksToRemove)
2976{
2977 PlaybackThread::threadLoop_removeTracks(tracksToRemove);
2978}
2979
Eric Laurentbfb1b832013-01-07 09:53:42 -08002980ssize_t AudioFlinger::MixerThread::threadLoop_write()
Eric Laurent81784c32012-11-19 14:55:58 -08002981{
2982 // FIXME we should only do one push per cycle; confirm this is true
2983 // Start the fast mixer if it's not already running
Glenn Kasten4d23ca32014-05-13 10:39:51 -07002984 if (mFastMixer != 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08002985 FastMixerStateQueue *sq = mFastMixer->sq();
2986 FastMixerState *state = sq->begin();
2987 if (state->mCommand != FastMixerState::MIX_WRITE &&
2988 (kUseFastMixer != FastMixer_Dynamic || state->mTrackMask > 1)) {
2989 if (state->mCommand == FastMixerState::COLD_IDLE) {
2990 int32_t old = android_atomic_inc(&mFastMixerFutex);
2991 if (old == -1) {
Elliott Hughesee499292014-05-21 17:55:51 -07002992 (void) syscall(__NR_futex, &mFastMixerFutex, FUTEX_WAKE_PRIVATE, 1);
Eric Laurent81784c32012-11-19 14:55:58 -08002993 }
2994#ifdef AUDIO_WATCHDOG
2995 if (mAudioWatchdog != 0) {
2996 mAudioWatchdog->resume();
2997 }
2998#endif
2999 }
3000 state->mCommand = FastMixerState::MIX_WRITE;
Glenn Kasten4182c4e2013-07-15 14:45:07 -07003001 mFastMixerDumpState.increaseSamplingN(mAudioFlinger->isLowRamDevice() ?
3002 FastMixerDumpState::kSamplingNforLowRamDevice : FastMixerDumpState::kSamplingN);
Eric Laurent81784c32012-11-19 14:55:58 -08003003 sq->end();
3004 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
3005 if (kUseFastMixer == FastMixer_Dynamic) {
3006 mNormalSink = mPipeSink;
3007 }
3008 } else {
3009 sq->end(false /*didModify*/);
3010 }
3011 }
Eric Laurentbfb1b832013-01-07 09:53:42 -08003012 return PlaybackThread::threadLoop_write();
Eric Laurent81784c32012-11-19 14:55:58 -08003013}
3014
3015void AudioFlinger::MixerThread::threadLoop_standby()
3016{
3017 // Idle the fast mixer if it's currently running
Glenn Kasten4d23ca32014-05-13 10:39:51 -07003018 if (mFastMixer != 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08003019 FastMixerStateQueue *sq = mFastMixer->sq();
3020 FastMixerState *state = sq->begin();
3021 if (!(state->mCommand & FastMixerState::IDLE)) {
3022 state->mCommand = FastMixerState::COLD_IDLE;
3023 state->mColdFutexAddr = &mFastMixerFutex;
3024 state->mColdGen++;
3025 mFastMixerFutex = 0;
3026 sq->end();
3027 // BLOCK_UNTIL_PUSHED would be insufficient, as we need it to stop doing I/O now
3028 sq->push(FastMixerStateQueue::BLOCK_UNTIL_ACKED);
3029 if (kUseFastMixer == FastMixer_Dynamic) {
3030 mNormalSink = mOutputSink;
3031 }
3032#ifdef AUDIO_WATCHDOG
3033 if (mAudioWatchdog != 0) {
3034 mAudioWatchdog->pause();
3035 }
3036#endif
3037 } else {
3038 sq->end(false /*didModify*/);
3039 }
3040 }
3041 PlaybackThread::threadLoop_standby();
3042}
3043
Eric Laurentbfb1b832013-01-07 09:53:42 -08003044bool AudioFlinger::PlaybackThread::waitingAsyncCallback_l()
3045{
3046 return false;
3047}
3048
3049bool AudioFlinger::PlaybackThread::shouldStandby_l()
3050{
3051 return !mStandby;
3052}
3053
3054bool AudioFlinger::PlaybackThread::waitingAsyncCallback()
3055{
3056 Mutex::Autolock _l(mLock);
3057 return waitingAsyncCallback_l();
3058}
3059
Eric Laurent81784c32012-11-19 14:55:58 -08003060// shared by MIXER and DIRECT, overridden by DUPLICATING
3061void AudioFlinger::PlaybackThread::threadLoop_standby()
3062{
3063 ALOGV("Audio hardware entering standby, mixer %p, suspend count %d", this, mSuspended);
3064 mOutput->stream->common.standby(&mOutput->stream->common);
Eric Laurentbfb1b832013-01-07 09:53:42 -08003065 if (mUseAsyncWrite != 0) {
Eric Laurent3b4529e2013-09-05 18:09:19 -07003066 // discard any pending drain or write ack by incrementing sequence
3067 mWriteAckSequence = (mWriteAckSequence + 2) & ~1;
3068 mDrainSequence = (mDrainSequence + 2) & ~1;
Eric Laurentbfb1b832013-01-07 09:53:42 -08003069 ALOG_ASSERT(mCallbackThread != 0);
Eric Laurent3b4529e2013-09-05 18:09:19 -07003070 mCallbackThread->setWriteBlocked(mWriteAckSequence);
3071 mCallbackThread->setDraining(mDrainSequence);
Eric Laurentbfb1b832013-01-07 09:53:42 -08003072 }
Eric Laurent81784c32012-11-19 14:55:58 -08003073}
3074
Haynes Mathew George4c6a4332014-01-15 12:31:39 -08003075void AudioFlinger::PlaybackThread::onAddNewTrack_l()
3076{
3077 ALOGV("signal playback thread");
3078 broadcast_l();
3079}
3080
Eric Laurent81784c32012-11-19 14:55:58 -08003081void AudioFlinger::MixerThread::threadLoop_mix()
3082{
3083 // obtain the presentation timestamp of the next output buffer
3084 int64_t pts;
3085 status_t status = INVALID_OPERATION;
3086
3087 if (mNormalSink != 0) {
3088 status = mNormalSink->getNextWriteTimestamp(&pts);
3089 } else {
3090 status = mOutputSink->getNextWriteTimestamp(&pts);
3091 }
3092
3093 if (status != NO_ERROR) {
3094 pts = AudioBufferProvider::kInvalidPTS;
3095 }
3096
3097 // mix buffers...
3098 mAudioMixer->process(pts);
Andy Hung25c2dac2014-02-27 14:56:00 -08003099 mCurrentWriteLength = mSinkBufferSize;
Eric Laurent81784c32012-11-19 14:55:58 -08003100 // increase sleep time progressively when application underrun condition clears.
3101 // Only increase sleep time if the mixer is ready for two consecutive times to avoid
3102 // that a steady state of alternating ready/not ready conditions keeps the sleep time
3103 // such that we would underrun the audio HAL.
3104 if ((sleepTime == 0) && (sleepTimeShift > 0)) {
3105 sleepTimeShift--;
3106 }
3107 sleepTime = 0;
3108 standbyTime = systemTime() + standbyDelay;
3109 //TODO: delay standby when effects have a tail
Glenn Kasten4c053ea2014-09-28 14:41:07 -07003110
Eric Laurent81784c32012-11-19 14:55:58 -08003111}
3112
3113void AudioFlinger::MixerThread::threadLoop_sleepTime()
3114{
3115 // If no tracks are ready, sleep once for the duration of an output
3116 // buffer size, then write 0s to the output
3117 if (sleepTime == 0) {
3118 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
3119 sleepTime = activeSleepTime >> sleepTimeShift;
3120 if (sleepTime < kMinThreadSleepTimeUs) {
3121 sleepTime = kMinThreadSleepTimeUs;
3122 }
3123 // reduce sleep time in case of consecutive application underruns to avoid
3124 // starving the audio HAL. As activeSleepTimeUs() is larger than a buffer
3125 // duration we would end up writing less data than needed by the audio HAL if
3126 // the condition persists.
3127 if (sleepTimeShift < kMaxThreadSleepTimeShift) {
3128 sleepTimeShift++;
3129 }
3130 } else {
3131 sleepTime = idleSleepTime;
3132 }
3133 } else if (mBytesWritten != 0 || (mMixerStatus == MIXER_TRACKS_ENABLED)) {
Andy Hung98ef9782014-03-04 14:46:50 -08003134 // clear out mMixerBuffer or mSinkBuffer, to ensure buffers are cleared
3135 // before effects processing or output.
3136 if (mMixerBufferValid) {
3137 memset(mMixerBuffer, 0, mMixerBufferSize);
3138 } else {
3139 memset(mSinkBuffer, 0, mSinkBufferSize);
3140 }
Eric Laurent81784c32012-11-19 14:55:58 -08003141 sleepTime = 0;
3142 ALOGV_IF(mBytesWritten == 0 && (mMixerStatus == MIXER_TRACKS_ENABLED),
3143 "anticipated start");
3144 }
3145 // TODO add standby time extension fct of effect tail
3146}
3147
3148// prepareTracks_l() must be called with ThreadBase::mLock held
3149AudioFlinger::PlaybackThread::mixer_state AudioFlinger::MixerThread::prepareTracks_l(
3150 Vector< sp<Track> > *tracksToRemove)
3151{
3152
3153 mixer_state mixerStatus = MIXER_IDLE;
3154 // find out which tracks need to be processed
3155 size_t count = mActiveTracks.size();
3156 size_t mixedTracks = 0;
3157 size_t tracksWithEffect = 0;
3158 // counts only _active_ fast tracks
3159 size_t fastTracks = 0;
3160 uint32_t resetMask = 0; // bit mask of fast tracks that need to be reset
3161
3162 float masterVolume = mMasterVolume;
3163 bool masterMute = mMasterMute;
3164
3165 if (masterMute) {
3166 masterVolume = 0;
3167 }
3168 // Delegate master volume control to effect in output mix effect chain if needed
3169 sp<EffectChain> chain = getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
3170 if (chain != 0) {
3171 uint32_t v = (uint32_t)(masterVolume * (1 << 24));
3172 chain->setVolume_l(&v, &v);
3173 masterVolume = (float)((v + (1 << 23)) >> 24);
3174 chain.clear();
3175 }
3176
3177 // prepare a new state to push
3178 FastMixerStateQueue *sq = NULL;
3179 FastMixerState *state = NULL;
3180 bool didModify = false;
3181 FastMixerStateQueue::block_t block = FastMixerStateQueue::BLOCK_UNTIL_PUSHED;
Glenn Kasten4d23ca32014-05-13 10:39:51 -07003182 if (mFastMixer != 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08003183 sq = mFastMixer->sq();
3184 state = sq->begin();
3185 }
3186
Andy Hung69aed5f2014-02-25 17:24:40 -08003187 mMixerBufferValid = false; // mMixerBuffer has no valid data until appropriate tracks found.
Andy Hung98ef9782014-03-04 14:46:50 -08003188 mEffectBufferValid = false; // mEffectBuffer has no valid data until tracks found.
Andy Hung69aed5f2014-02-25 17:24:40 -08003189
Eric Laurent81784c32012-11-19 14:55:58 -08003190 for (size_t i=0 ; i<count ; i++) {
Glenn Kasten9fdcb0a2013-06-26 16:11:36 -07003191 const sp<Track> t = mActiveTracks[i].promote();
Eric Laurent81784c32012-11-19 14:55:58 -08003192 if (t == 0) {
3193 continue;
3194 }
3195
3196 // this const just means the local variable doesn't change
3197 Track* const track = t.get();
3198
3199 // process fast tracks
3200 if (track->isFastTrack()) {
3201
3202 // It's theoretically possible (though unlikely) for a fast track to be created
3203 // and then removed within the same normal mix cycle. This is not a problem, as
3204 // the track never becomes active so it's fast mixer slot is never touched.
3205 // The converse, of removing an (active) track and then creating a new track
3206 // at the identical fast mixer slot within the same normal mix cycle,
3207 // is impossible because the slot isn't marked available until the end of each cycle.
3208 int j = track->mFastIndex;
3209 ALOG_ASSERT(0 < j && j < (int)FastMixerState::kMaxFastTracks);
3210 ALOG_ASSERT(!(mFastTrackAvailMask & (1 << j)));
3211 FastTrack *fastTrack = &state->mFastTracks[j];
3212
3213 // Determine whether the track is currently in underrun condition,
3214 // and whether it had a recent underrun.
3215 FastTrackDump *ftDump = &mFastMixerDumpState.mTracks[j];
3216 FastTrackUnderruns underruns = ftDump->mUnderruns;
3217 uint32_t recentFull = (underruns.mBitFields.mFull -
3218 track->mObservedUnderruns.mBitFields.mFull) & UNDERRUN_MASK;
3219 uint32_t recentPartial = (underruns.mBitFields.mPartial -
3220 track->mObservedUnderruns.mBitFields.mPartial) & UNDERRUN_MASK;
3221 uint32_t recentEmpty = (underruns.mBitFields.mEmpty -
3222 track->mObservedUnderruns.mBitFields.mEmpty) & UNDERRUN_MASK;
3223 uint32_t recentUnderruns = recentPartial + recentEmpty;
3224 track->mObservedUnderruns = underruns;
3225 // don't count underruns that occur while stopping or pausing
3226 // or stopped which can occur when flush() is called while active
Glenn Kasten82aaf942013-07-17 16:05:07 -07003227 if (!(track->isStopping() || track->isPausing() || track->isStopped()) &&
3228 recentUnderruns > 0) {
3229 // FIXME fast mixer will pull & mix partial buffers, but we count as a full underrun
3230 track->mAudioTrackServerProxy->tallyUnderrunFrames(recentUnderruns * mFrameCount);
Eric Laurent81784c32012-11-19 14:55:58 -08003231 }
3232
3233 // This is similar to the state machine for normal tracks,
3234 // with a few modifications for fast tracks.
3235 bool isActive = true;
3236 switch (track->mState) {
3237 case TrackBase::STOPPING_1:
3238 // track stays active in STOPPING_1 state until first underrun
Eric Laurentbfb1b832013-01-07 09:53:42 -08003239 if (recentUnderruns > 0 || track->isTerminated()) {
Eric Laurent81784c32012-11-19 14:55:58 -08003240 track->mState = TrackBase::STOPPING_2;
3241 }
3242 break;
3243 case TrackBase::PAUSING:
3244 // ramp down is not yet implemented
3245 track->setPaused();
3246 break;
3247 case TrackBase::RESUMING:
3248 // ramp up is not yet implemented
3249 track->mState = TrackBase::ACTIVE;
3250 break;
3251 case TrackBase::ACTIVE:
3252 if (recentFull > 0 || recentPartial > 0) {
3253 // track has provided at least some frames recently: reset retry count
3254 track->mRetryCount = kMaxTrackRetries;
3255 }
3256 if (recentUnderruns == 0) {
3257 // no recent underruns: stay active
3258 break;
3259 }
3260 // there has recently been an underrun of some kind
3261 if (track->sharedBuffer() == 0) {
3262 // were any of the recent underruns "empty" (no frames available)?
3263 if (recentEmpty == 0) {
3264 // no, then ignore the partial underruns as they are allowed indefinitely
3265 break;
3266 }
3267 // there has recently been an "empty" underrun: decrement the retry counter
3268 if (--(track->mRetryCount) > 0) {
3269 break;
3270 }
3271 // indicate to client process that the track was disabled because of underrun;
3272 // it will then automatically call start() when data is available
Glenn Kasten96f60d82013-07-12 10:21:18 -07003273 android_atomic_or(CBLK_DISABLED, &track->mCblk->mFlags);
Eric Laurent81784c32012-11-19 14:55:58 -08003274 // remove from active list, but state remains ACTIVE [confusing but true]
3275 isActive = false;
3276 break;
3277 }
3278 // fall through
3279 case TrackBase::STOPPING_2:
3280 case TrackBase::PAUSED:
Eric Laurent81784c32012-11-19 14:55:58 -08003281 case TrackBase::STOPPED:
3282 case TrackBase::FLUSHED: // flush() while active
3283 // Check for presentation complete if track is inactive
3284 // We have consumed all the buffers of this track.
3285 // This would be incomplete if we auto-paused on underrun
3286 {
3287 size_t audioHALFrames =
3288 (mOutput->stream->get_latency(mOutput->stream)*mSampleRate) / 1000;
3289 size_t framesWritten = mBytesWritten / mFrameSize;
3290 if (!(mStandby || track->presentationComplete(framesWritten, audioHALFrames))) {
3291 // track stays in active list until presentation is complete
3292 break;
3293 }
3294 }
3295 if (track->isStopping_2()) {
3296 track->mState = TrackBase::STOPPED;
3297 }
3298 if (track->isStopped()) {
3299 // Can't reset directly, as fast mixer is still polling this track
3300 // track->reset();
3301 // So instead mark this track as needing to be reset after push with ack
3302 resetMask |= 1 << i;
3303 }
3304 isActive = false;
3305 break;
3306 case TrackBase::IDLE:
3307 default:
Glenn Kastenadad3d72014-02-21 14:51:43 -08003308 LOG_ALWAYS_FATAL("unexpected track state %d", track->mState);
Eric Laurent81784c32012-11-19 14:55:58 -08003309 }
3310
3311 if (isActive) {
3312 // was it previously inactive?
3313 if (!(state->mTrackMask & (1 << j))) {
3314 ExtendedAudioBufferProvider *eabp = track;
3315 VolumeProvider *vp = track;
3316 fastTrack->mBufferProvider = eabp;
3317 fastTrack->mVolumeProvider = vp;
Eric Laurent81784c32012-11-19 14:55:58 -08003318 fastTrack->mChannelMask = track->mChannelMask;
Andy Hunge8a1ced2014-05-09 15:02:21 -07003319 fastTrack->mFormat = track->mFormat;
Eric Laurent81784c32012-11-19 14:55:58 -08003320 fastTrack->mGeneration++;
3321 state->mTrackMask |= 1 << j;
3322 didModify = true;
3323 // no acknowledgement required for newly active tracks
3324 }
3325 // cache the combined master volume and stream type volume for fast mixer; this
3326 // lacks any synchronization or barrier so VolumeProvider may read a stale value
Glenn Kastene4756fe2012-11-29 13:38:14 -08003327 track->mCachedVolume = masterVolume * mStreamTypes[track->streamType()].volume;
Eric Laurent81784c32012-11-19 14:55:58 -08003328 ++fastTracks;
3329 } else {
3330 // was it previously active?
3331 if (state->mTrackMask & (1 << j)) {
3332 fastTrack->mBufferProvider = NULL;
3333 fastTrack->mGeneration++;
3334 state->mTrackMask &= ~(1 << j);
3335 didModify = true;
3336 // If any fast tracks were removed, we must wait for acknowledgement
3337 // because we're about to decrement the last sp<> on those tracks.
3338 block = FastMixerStateQueue::BLOCK_UNTIL_ACKED;
3339 } else {
Glenn Kastenadad3d72014-02-21 14:51:43 -08003340 LOG_ALWAYS_FATAL("fast track %d should have been active", j);
Eric Laurent81784c32012-11-19 14:55:58 -08003341 }
3342 tracksToRemove->add(track);
3343 // Avoids a misleading display in dumpsys
3344 track->mObservedUnderruns.mBitFields.mMostRecent = UNDERRUN_FULL;
3345 }
3346 continue;
3347 }
3348
3349 { // local variable scope to avoid goto warning
3350
3351 audio_track_cblk_t* cblk = track->cblk();
3352
3353 // The first time a track is added we wait
3354 // for all its buffers to be filled before processing it
3355 int name = track->name();
3356 // make sure that we have enough frames to mix one full buffer.
3357 // enforce this condition only once to enable draining the buffer in case the client
3358 // app does not call stop() and relies on underrun to stop:
3359 // hence the test on (mMixerStatus == MIXER_TRACKS_READY) meaning the track was mixed
3360 // during last round
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003361 size_t desiredFrames;
Glenn Kasten9fdcb0a2013-06-26 16:11:36 -07003362 uint32_t sr = track->sampleRate();
3363 if (sr == mSampleRate) {
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003364 desiredFrames = mNormalFrameCount;
3365 } else {
3366 // +1 for rounding and +1 for additional sample needed for interpolation
Glenn Kasten9fdcb0a2013-06-26 16:11:36 -07003367 desiredFrames = (mNormalFrameCount * sr) / mSampleRate + 1 + 1;
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003368 // add frames already consumed but not yet released by the resampler
Glenn Kasten2fc14732013-08-05 14:58:14 -07003369 // because mAudioTrackServerProxy->framesReady() will include these frames
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003370 desiredFrames += mAudioMixer->getUnreleasedFrames(track->name());
Glenn Kasten74935e42013-12-19 08:56:45 -08003371#if 0
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003372 // the minimum track buffer size is normally twice the number of frames necessary
3373 // to fill one buffer and the resampler should not leave more than one buffer worth
3374 // of unreleased frames after each pass, but just in case...
3375 ALOG_ASSERT(desiredFrames <= cblk->frameCount_);
Glenn Kasten74935e42013-12-19 08:56:45 -08003376#endif
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003377 }
Eric Laurent81784c32012-11-19 14:55:58 -08003378 uint32_t minFrames = 1;
3379 if ((track->sharedBuffer() == 0) && !track->isStopped() && !track->isPausing() &&
3380 (mMixerStatusIgnoringFastTracks == MIXER_TRACKS_READY)) {
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003381 minFrames = desiredFrames;
Eric Laurent81784c32012-11-19 14:55:58 -08003382 }
Eric Laurent13e4c962013-12-20 17:36:01 -08003383
3384 size_t framesReady = track->framesReady();
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003385 if ((framesReady >= minFrames) && track->isReady() &&
Eric Laurent81784c32012-11-19 14:55:58 -08003386 !track->isPaused() && !track->isTerminated())
3387 {
Glenn Kastenf20e1d82013-07-12 09:45:18 -07003388 ALOGVV("track %d s=%08x [OK] on thread %p", name, cblk->mServer, this);
Eric Laurent81784c32012-11-19 14:55:58 -08003389
3390 mixedTracks++;
3391
Andy Hung69aed5f2014-02-25 17:24:40 -08003392 // track->mainBuffer() != mSinkBuffer or mMixerBuffer means
3393 // there is an effect chain connected to the track
Eric Laurent81784c32012-11-19 14:55:58 -08003394 chain.clear();
Andy Hung69aed5f2014-02-25 17:24:40 -08003395 if (track->mainBuffer() != mSinkBuffer &&
3396 track->mainBuffer() != mMixerBuffer) {
Andy Hung98ef9782014-03-04 14:46:50 -08003397 if (mEffectBufferEnabled) {
3398 mEffectBufferValid = true; // Later can set directly.
3399 }
Eric Laurent81784c32012-11-19 14:55:58 -08003400 chain = getEffectChain_l(track->sessionId());
3401 // Delegate volume control to effect in track effect chain if needed
3402 if (chain != 0) {
3403 tracksWithEffect++;
3404 } else {
3405 ALOGW("prepareTracks_l(): track %d attached to effect but no chain found on "
3406 "session %d",
3407 name, track->sessionId());
3408 }
3409 }
3410
3411
3412 int param = AudioMixer::VOLUME;
3413 if (track->mFillingUpStatus == Track::FS_FILLED) {
3414 // no ramp for the first volume setting
3415 track->mFillingUpStatus = Track::FS_ACTIVE;
3416 if (track->mState == TrackBase::RESUMING) {
3417 track->mState = TrackBase::ACTIVE;
3418 param = AudioMixer::RAMP_VOLUME;
3419 }
3420 mAudioMixer->setParameter(name, AudioMixer::RESAMPLE, AudioMixer::RESET, NULL);
Glenn Kastenf20e1d82013-07-12 09:45:18 -07003421 // FIXME should not make a decision based on mServer
3422 } else if (cblk->mServer != 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08003423 // If the track is stopped before the first frame was mixed,
3424 // do not apply ramp
3425 param = AudioMixer::RAMP_VOLUME;
3426 }
3427
3428 // compute volume for this track
Andy Hung6be49402014-05-30 10:42:03 -07003429 uint32_t vl, vr; // in U8.24 integer format
3430 float vlf, vrf, vaf; // in [0.0, 1.0] float format
Glenn Kastene4756fe2012-11-29 13:38:14 -08003431 if (track->isPausing() || mStreamTypes[track->streamType()].mute) {
Andy Hung6be49402014-05-30 10:42:03 -07003432 vl = vr = 0;
3433 vlf = vrf = vaf = 0.;
Eric Laurent81784c32012-11-19 14:55:58 -08003434 if (track->isPausing()) {
3435 track->setPaused();
3436 }
3437 } else {
3438
3439 // read original volumes with volume control
3440 float typeVolume = mStreamTypes[track->streamType()].volume;
3441 float v = masterVolume * typeVolume;
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003442 AudioTrackServerProxy *proxy = track->mAudioTrackServerProxy;
Glenn Kastenc56f3422014-03-21 17:53:17 -07003443 gain_minifloat_packed_t vlr = proxy->getVolumeLR();
Andy Hung6be49402014-05-30 10:42:03 -07003444 vlf = float_from_gain(gain_minifloat_unpack_left(vlr));
3445 vrf = float_from_gain(gain_minifloat_unpack_right(vlr));
Eric Laurent81784c32012-11-19 14:55:58 -08003446 // track volumes come from shared memory, so can't be trusted and must be clamped
Glenn Kastenc56f3422014-03-21 17:53:17 -07003447 if (vlf > GAIN_FLOAT_UNITY) {
3448 ALOGV("Track left volume out of range: %.3g", vlf);
3449 vlf = GAIN_FLOAT_UNITY;
Eric Laurent81784c32012-11-19 14:55:58 -08003450 }
Glenn Kastenc56f3422014-03-21 17:53:17 -07003451 if (vrf > GAIN_FLOAT_UNITY) {
3452 ALOGV("Track right volume out of range: %.3g", vrf);
3453 vrf = GAIN_FLOAT_UNITY;
Eric Laurent81784c32012-11-19 14:55:58 -08003454 }
3455 // now apply the master volume and stream type volume
Andy Hung6be49402014-05-30 10:42:03 -07003456 vlf *= v;
3457 vrf *= v;
Eric Laurent81784c32012-11-19 14:55:58 -08003458 // assuming master volume and stream type volume each go up to 1.0,
Andy Hung6be49402014-05-30 10:42:03 -07003459 // then derive vl and vr as U8.24 versions for the effect chain
3460 const float scaleto8_24 = MAX_GAIN_INT * MAX_GAIN_INT;
3461 vl = (uint32_t) (scaleto8_24 * vlf);
3462 vr = (uint32_t) (scaleto8_24 * vrf);
3463 // vl and vr are now in U8.24 format
Glenn Kastene3aa6592012-12-04 12:22:46 -08003464 uint16_t sendLevel = proxy->getSendLevel_U4_12();
Eric Laurent81784c32012-11-19 14:55:58 -08003465 // send level comes from shared memory and so may be corrupt
3466 if (sendLevel > MAX_GAIN_INT) {
3467 ALOGV("Track send level out of range: %04X", sendLevel);
3468 sendLevel = MAX_GAIN_INT;
3469 }
Andy Hung6be49402014-05-30 10:42:03 -07003470 // vaf is represented as [0.0, 1.0] float by rescaling sendLevel
3471 vaf = v * sendLevel * (1. / MAX_GAIN_INT);
Eric Laurent81784c32012-11-19 14:55:58 -08003472 }
Eric Laurentbfb1b832013-01-07 09:53:42 -08003473
Eric Laurent81784c32012-11-19 14:55:58 -08003474 // Delegate volume control to effect in track effect chain if needed
3475 if (chain != 0 && chain->setVolume_l(&vl, &vr)) {
3476 // Do not ramp volume if volume is controlled by effect
3477 param = AudioMixer::VOLUME;
Bryant Liub6be7f22014-06-12 22:02:41 +08003478 // Update remaining floating point volume levels
3479 vlf = (float)vl / (1 << 24);
3480 vrf = (float)vr / (1 << 24);
Eric Laurent81784c32012-11-19 14:55:58 -08003481 track->mHasVolumeController = true;
3482 } else {
3483 // force no volume ramp when volume controller was just disabled or removed
3484 // from effect chain to avoid volume spike
3485 if (track->mHasVolumeController) {
3486 param = AudioMixer::VOLUME;
3487 }
3488 track->mHasVolumeController = false;
3489 }
3490
Eric Laurent81784c32012-11-19 14:55:58 -08003491 // XXX: these things DON'T need to be done each time
3492 mAudioMixer->setBufferProvider(name, track);
3493 mAudioMixer->enable(name);
3494
Andy Hung6be49402014-05-30 10:42:03 -07003495 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME0, &vlf);
3496 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME1, &vrf);
3497 mAudioMixer->setParameter(name, param, AudioMixer::AUXLEVEL, &vaf);
Eric Laurent81784c32012-11-19 14:55:58 -08003498 mAudioMixer->setParameter(
3499 name,
3500 AudioMixer::TRACK,
3501 AudioMixer::FORMAT, (void *)track->format());
3502 mAudioMixer->setParameter(
3503 name,
3504 AudioMixer::TRACK,
Kévin PETIT377b2ec2014-02-03 12:35:36 +00003505 AudioMixer::CHANNEL_MASK, (void *)(uintptr_t)track->channelMask());
Andy Hung9a592762014-07-21 21:56:01 -07003506 mAudioMixer->setParameter(
3507 name,
3508 AudioMixer::TRACK,
3509 AudioMixer::MIXER_CHANNEL_MASK, (void *)(uintptr_t)mChannelMask);
Glenn Kastene3aa6592012-12-04 12:22:46 -08003510 // limit track sample rate to 2 x output sample rate, which changes at re-configuration
Andy Hungcd044842014-08-07 11:04:34 -07003511 uint32_t maxSampleRate = mSampleRate * AUDIO_RESAMPLER_DOWN_RATIO_MAX;
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003512 uint32_t reqSampleRate = track->mAudioTrackServerProxy->getSampleRate();
Glenn Kastene3aa6592012-12-04 12:22:46 -08003513 if (reqSampleRate == 0) {
3514 reqSampleRate = mSampleRate;
3515 } else if (reqSampleRate > maxSampleRate) {
3516 reqSampleRate = maxSampleRate;
3517 }
Eric Laurent81784c32012-11-19 14:55:58 -08003518 mAudioMixer->setParameter(
3519 name,
3520 AudioMixer::RESAMPLE,
3521 AudioMixer::SAMPLE_RATE,
Kévin PETIT377b2ec2014-02-03 12:35:36 +00003522 (void *)(uintptr_t)reqSampleRate);
Andy Hung69aed5f2014-02-25 17:24:40 -08003523 /*
3524 * Select the appropriate output buffer for the track.
3525 *
Andy Hung98ef9782014-03-04 14:46:50 -08003526 * Tracks with effects go into their own effects chain buffer
3527 * and from there into either mEffectBuffer or mSinkBuffer.
Andy Hung69aed5f2014-02-25 17:24:40 -08003528 *
3529 * Other tracks can use mMixerBuffer for higher precision
3530 * channel accumulation. If this buffer is enabled
3531 * (mMixerBufferEnabled true), then selected tracks will accumulate
3532 * into it.
3533 *
3534 */
3535 if (mMixerBufferEnabled
3536 && (track->mainBuffer() == mSinkBuffer
3537 || track->mainBuffer() == mMixerBuffer)) {
3538 mAudioMixer->setParameter(
3539 name,
3540 AudioMixer::TRACK,
Andy Hung78820702014-02-28 16:23:02 -08003541 AudioMixer::MIXER_FORMAT, (void *)mMixerBufferFormat);
Andy Hung69aed5f2014-02-25 17:24:40 -08003542 mAudioMixer->setParameter(
3543 name,
3544 AudioMixer::TRACK,
3545 AudioMixer::MAIN_BUFFER, (void *)mMixerBuffer);
3546 // TODO: override track->mainBuffer()?
3547 mMixerBufferValid = true;
3548 } else {
3549 mAudioMixer->setParameter(
3550 name,
3551 AudioMixer::TRACK,
Andy Hung78820702014-02-28 16:23:02 -08003552 AudioMixer::MIXER_FORMAT, (void *)AUDIO_FORMAT_PCM_16_BIT);
Andy Hung69aed5f2014-02-25 17:24:40 -08003553 mAudioMixer->setParameter(
3554 name,
3555 AudioMixer::TRACK,
3556 AudioMixer::MAIN_BUFFER, (void *)track->mainBuffer());
3557 }
Eric Laurent81784c32012-11-19 14:55:58 -08003558 mAudioMixer->setParameter(
3559 name,
3560 AudioMixer::TRACK,
3561 AudioMixer::AUX_BUFFER, (void *)track->auxBuffer());
3562
3563 // reset retry count
3564 track->mRetryCount = kMaxTrackRetries;
3565
3566 // If one track is ready, set the mixer ready if:
3567 // - the mixer was not ready during previous round OR
3568 // - no other track is not ready
3569 if (mMixerStatusIgnoringFastTracks != MIXER_TRACKS_READY ||
3570 mixerStatus != MIXER_TRACKS_ENABLED) {
3571 mixerStatus = MIXER_TRACKS_READY;
3572 }
3573 } else {
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003574 if (framesReady < desiredFrames && !track->isStopped() && !track->isPaused()) {
Glenn Kasten82aaf942013-07-17 16:05:07 -07003575 track->mAudioTrackServerProxy->tallyUnderrunFrames(desiredFrames);
Glenn Kasten9f80dd22012-12-18 15:57:32 -08003576 }
Eric Laurent81784c32012-11-19 14:55:58 -08003577 // clear effect chain input buffer if an active track underruns to avoid sending
3578 // previous audio buffer again to effects
3579 chain = getEffectChain_l(track->sessionId());
3580 if (chain != 0) {
3581 chain->clearInputBuffer();
3582 }
3583
Glenn Kastenf20e1d82013-07-12 09:45:18 -07003584 ALOGVV("track %d s=%08x [NOT READY] on thread %p", name, cblk->mServer, this);
Eric Laurent81784c32012-11-19 14:55:58 -08003585 if ((track->sharedBuffer() != 0) || track->isTerminated() ||
3586 track->isStopped() || track->isPaused()) {
3587 // We have consumed all the buffers of this track.
3588 // Remove it from the list of active tracks.
3589 // TODO: use actual buffer filling status instead of latency when available from
3590 // audio HAL
3591 size_t audioHALFrames = (latency_l() * mSampleRate) / 1000;
3592 size_t framesWritten = mBytesWritten / mFrameSize;
3593 if (mStandby || track->presentationComplete(framesWritten, audioHALFrames)) {
3594 if (track->isStopped()) {
3595 track->reset();
3596 }
3597 tracksToRemove->add(track);
3598 }
3599 } else {
Eric Laurent81784c32012-11-19 14:55:58 -08003600 // No buffers for this track. Give it a few chances to
3601 // fill a buffer, then remove it from active list.
3602 if (--(track->mRetryCount) <= 0) {
Glenn Kastenc9b2e202013-02-26 11:32:32 -08003603 ALOGI("BUFFER TIMEOUT: remove(%d) from active list on thread %p", name, this);
Eric Laurent81784c32012-11-19 14:55:58 -08003604 tracksToRemove->add(track);
3605 // indicate to client process that the track was disabled because of underrun;
3606 // it will then automatically call start() when data is available
Glenn Kasten96f60d82013-07-12 10:21:18 -07003607 android_atomic_or(CBLK_DISABLED, &cblk->mFlags);
Eric Laurent81784c32012-11-19 14:55:58 -08003608 // If one track is not ready, mark the mixer also not ready if:
3609 // - the mixer was ready during previous round OR
3610 // - no other track is ready
3611 } else if (mMixerStatusIgnoringFastTracks == MIXER_TRACKS_READY ||
3612 mixerStatus != MIXER_TRACKS_READY) {
3613 mixerStatus = MIXER_TRACKS_ENABLED;
3614 }
3615 }
3616 mAudioMixer->disable(name);
3617 }
3618
3619 } // local variable scope to avoid goto warning
3620track_is_ready: ;
3621
3622 }
3623
3624 // Push the new FastMixer state if necessary
3625 bool pauseAudioWatchdog = false;
3626 if (didModify) {
3627 state->mFastTracksGen++;
3628 // if the fast mixer was active, but now there are no fast tracks, then put it in cold idle
3629 if (kUseFastMixer == FastMixer_Dynamic &&
3630 state->mCommand == FastMixerState::MIX_WRITE && state->mTrackMask <= 1) {
3631 state->mCommand = FastMixerState::COLD_IDLE;
3632 state->mColdFutexAddr = &mFastMixerFutex;
3633 state->mColdGen++;
3634 mFastMixerFutex = 0;
3635 if (kUseFastMixer == FastMixer_Dynamic) {
3636 mNormalSink = mOutputSink;
3637 }
3638 // If we go into cold idle, need to wait for acknowledgement
3639 // so that fast mixer stops doing I/O.
3640 block = FastMixerStateQueue::BLOCK_UNTIL_ACKED;
3641 pauseAudioWatchdog = true;
3642 }
Eric Laurent81784c32012-11-19 14:55:58 -08003643 }
3644 if (sq != NULL) {
3645 sq->end(didModify);
3646 sq->push(block);
3647 }
3648#ifdef AUDIO_WATCHDOG
3649 if (pauseAudioWatchdog && mAudioWatchdog != 0) {
3650 mAudioWatchdog->pause();
3651 }
3652#endif
3653
3654 // Now perform the deferred reset on fast tracks that have stopped
3655 while (resetMask != 0) {
3656 size_t i = __builtin_ctz(resetMask);
3657 ALOG_ASSERT(i < count);
3658 resetMask &= ~(1 << i);
3659 sp<Track> t = mActiveTracks[i].promote();
3660 if (t == 0) {
3661 continue;
3662 }
3663 Track* track = t.get();
3664 ALOG_ASSERT(track->isFastTrack() && track->isStopped());
3665 track->reset();
3666 }
3667
3668 // remove all the tracks that need to be...
Eric Laurentbfb1b832013-01-07 09:53:42 -08003669 removeTracks_l(*tracksToRemove);
Eric Laurent81784c32012-11-19 14:55:58 -08003670
Eric Laurent97d547d2014-09-02 14:45:53 -07003671 if (getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX) != 0) {
3672 mEffectBufferValid = true;
Marco Nelissen57088b52014-10-17 16:39:39 -07003673 // as long as there are effects we should clear the effects buffer, to avoid
3674 // passing a non-clean buffer to the effect chain
3675 memset(mEffectBuffer, 0, mEffectBufferSize);
Eric Laurent97d547d2014-09-02 14:45:53 -07003676 }
3677
Andy Hung69aed5f2014-02-25 17:24:40 -08003678 // sink or mix buffer must be cleared if all tracks are connected to an
3679 // effect chain as in this case the mixer will not write to the sink or mix buffer
3680 // and track effects will accumulate into it
Eric Laurentbfb1b832013-01-07 09:53:42 -08003681 if ((mBytesRemaining == 0) && ((mixedTracks != 0 && mixedTracks == tracksWithEffect) ||
3682 (mixedTracks == 0 && fastTracks > 0))) {
Eric Laurent81784c32012-11-19 14:55:58 -08003683 // FIXME as a performance optimization, should remember previous zero status
Andy Hung69aed5f2014-02-25 17:24:40 -08003684 if (mMixerBufferValid) {
3685 memset(mMixerBuffer, 0, mMixerBufferSize);
3686 // TODO: In testing, mSinkBuffer below need not be cleared because
3687 // the PlaybackThread::threadLoop() copies mMixerBuffer into mSinkBuffer
3688 // after mixing.
3689 //
3690 // To enforce this guarantee:
3691 // ((mixedTracks != 0 && mixedTracks == tracksWithEffect) ||
3692 // (mixedTracks == 0 && fastTracks > 0))
3693 // must imply MIXER_TRACKS_READY.
3694 // Later, we may clear buffers regardless, and skip much of this logic.
3695 }
Andy Hung98ef9782014-03-04 14:46:50 -08003696 // FIXME as a performance optimization, should remember previous zero status
Andy Hung5567aaf2014-07-17 14:00:07 -07003697 memset(mSinkBuffer, 0, mNormalFrameCount * mFrameSize);
Eric Laurent81784c32012-11-19 14:55:58 -08003698 }
3699
3700 // if any fast tracks, then status is ready
3701 mMixerStatusIgnoringFastTracks = mixerStatus;
3702 if (fastTracks > 0) {
3703 mixerStatus = MIXER_TRACKS_READY;
3704 }
3705 return mixerStatus;
3706}
3707
3708// getTrackName_l() must be called with ThreadBase::mLock held
Andy Hunge8a1ced2014-05-09 15:02:21 -07003709int AudioFlinger::MixerThread::getTrackName_l(audio_channel_mask_t channelMask,
3710 audio_format_t format, int sessionId)
Eric Laurent81784c32012-11-19 14:55:58 -08003711{
Andy Hunge8a1ced2014-05-09 15:02:21 -07003712 return mAudioMixer->getTrackName(channelMask, format, sessionId);
Eric Laurent81784c32012-11-19 14:55:58 -08003713}
3714
3715// deleteTrackName_l() must be called with ThreadBase::mLock held
3716void AudioFlinger::MixerThread::deleteTrackName_l(int name)
3717{
3718 ALOGV("remove track (%d) and delete from mixer", name);
3719 mAudioMixer->deleteTrackName(name);
3720}
3721
Eric Laurent10351942014-05-08 18:49:52 -07003722// checkForNewParameter_l() must be called with ThreadBase::mLock held
3723bool AudioFlinger::MixerThread::checkForNewParameter_l(const String8& keyValuePair,
3724 status_t& status)
Eric Laurent81784c32012-11-19 14:55:58 -08003725{
Eric Laurent81784c32012-11-19 14:55:58 -08003726 bool reconfig = false;
3727
Eric Laurent10351942014-05-08 18:49:52 -07003728 status = NO_ERROR;
Eric Laurent81784c32012-11-19 14:55:58 -08003729
Eric Laurent10351942014-05-08 18:49:52 -07003730 // if !&IDLE, holds the FastMixer state to restore after new parameters processed
3731 FastMixerState::Command previousCommand = FastMixerState::HOT_IDLE;
Glenn Kasten4d23ca32014-05-13 10:39:51 -07003732 if (mFastMixer != 0) {
Eric Laurent10351942014-05-08 18:49:52 -07003733 FastMixerStateQueue *sq = mFastMixer->sq();
3734 FastMixerState *state = sq->begin();
3735 if (!(state->mCommand & FastMixerState::IDLE)) {
3736 previousCommand = state->mCommand;
3737 state->mCommand = FastMixerState::HOT_IDLE;
3738 sq->end();
3739 sq->push(FastMixerStateQueue::BLOCK_UNTIL_ACKED);
3740 } else {
3741 sq->end(false /*didModify*/);
Eric Laurent81784c32012-11-19 14:55:58 -08003742 }
Eric Laurent10351942014-05-08 18:49:52 -07003743 }
Eric Laurent81784c32012-11-19 14:55:58 -08003744
Eric Laurent10351942014-05-08 18:49:52 -07003745 AudioParameter param = AudioParameter(keyValuePair);
3746 int value;
3747 if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
3748 reconfig = true;
3749 }
3750 if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
Andy Hung9a592762014-07-21 21:56:01 -07003751 if (!isValidPcmSinkFormat((audio_format_t) value)) {
Eric Laurent10351942014-05-08 18:49:52 -07003752 status = BAD_VALUE;
3753 } else {
3754 // no need to save value, since it's constant
Eric Laurent81784c32012-11-19 14:55:58 -08003755 reconfig = true;
3756 }
Eric Laurent10351942014-05-08 18:49:52 -07003757 }
3758 if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
Andy Hung9a592762014-07-21 21:56:01 -07003759 if (!isValidPcmSinkChannelMask((audio_channel_mask_t) value)) {
Eric Laurent10351942014-05-08 18:49:52 -07003760 status = BAD_VALUE;
3761 } else {
3762 // no need to save value, since it's constant
3763 reconfig = true;
Eric Laurent81784c32012-11-19 14:55:58 -08003764 }
Eric Laurent10351942014-05-08 18:49:52 -07003765 }
3766 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
3767 // do not accept frame count changes if tracks are open as the track buffer
3768 // size depends on frame count and correct behavior would not be guaranteed
3769 // if frame count is changed after track creation
3770 if (!mTracks.isEmpty()) {
3771 status = INVALID_OPERATION;
3772 } else {
3773 reconfig = true;
Eric Laurent81784c32012-11-19 14:55:58 -08003774 }
Eric Laurent10351942014-05-08 18:49:52 -07003775 }
3776 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
Eric Laurent81784c32012-11-19 14:55:58 -08003777#ifdef ADD_BATTERY_DATA
Eric Laurent10351942014-05-08 18:49:52 -07003778 // when changing the audio output device, call addBatteryData to notify
3779 // the change
3780 if (mOutDevice != value) {
3781 uint32_t params = 0;
3782 // check whether speaker is on
3783 if (value & AUDIO_DEVICE_OUT_SPEAKER) {
3784 params |= IMediaPlayerService::kBatteryDataSpeakerOn;
Eric Laurent81784c32012-11-19 14:55:58 -08003785 }
Eric Laurent10351942014-05-08 18:49:52 -07003786
3787 audio_devices_t deviceWithoutSpeaker
3788 = AUDIO_DEVICE_OUT_ALL & ~AUDIO_DEVICE_OUT_SPEAKER;
3789 // check if any other device (except speaker) is on
3790 if (value & deviceWithoutSpeaker ) {
3791 params |= IMediaPlayerService::kBatteryDataOtherAudioDeviceOn;
3792 }
3793
3794 if (params != 0) {
3795 addBatteryData(params);
3796 }
3797 }
Eric Laurent81784c32012-11-19 14:55:58 -08003798#endif
3799
Eric Laurent10351942014-05-08 18:49:52 -07003800 // forward device change to effects that have requested to be
3801 // aware of attached audio device.
3802 if (value != AUDIO_DEVICE_NONE) {
3803 mOutDevice = value;
3804 for (size_t i = 0; i < mEffectChains.size(); i++) {
3805 mEffectChains[i]->setDevice_l(mOutDevice);
Eric Laurent81784c32012-11-19 14:55:58 -08003806 }
3807 }
Eric Laurent10351942014-05-08 18:49:52 -07003808 }
Eric Laurent81784c32012-11-19 14:55:58 -08003809
Eric Laurent10351942014-05-08 18:49:52 -07003810 if (status == NO_ERROR) {
3811 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
3812 keyValuePair.string());
3813 if (!mStandby && status == INVALID_OPERATION) {
3814 mOutput->stream->common.standby(&mOutput->stream->common);
3815 mStandby = true;
3816 mBytesWritten = 0;
Eric Laurent81784c32012-11-19 14:55:58 -08003817 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
Eric Laurent10351942014-05-08 18:49:52 -07003818 keyValuePair.string());
Eric Laurent81784c32012-11-19 14:55:58 -08003819 }
Eric Laurent10351942014-05-08 18:49:52 -07003820 if (status == NO_ERROR && reconfig) {
3821 readOutputParameters_l();
3822 delete mAudioMixer;
3823 mAudioMixer = new AudioMixer(mNormalFrameCount, mSampleRate);
3824 for (size_t i = 0; i < mTracks.size() ; i++) {
Andy Hunge8a1ced2014-05-09 15:02:21 -07003825 int name = getTrackName_l(mTracks[i]->mChannelMask,
3826 mTracks[i]->mFormat, mTracks[i]->mSessionId);
Eric Laurent10351942014-05-08 18:49:52 -07003827 if (name < 0) {
3828 break;
3829 }
3830 mTracks[i]->mName = name;
3831 }
3832 sendIoConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
3833 }
Eric Laurent81784c32012-11-19 14:55:58 -08003834 }
3835
3836 if (!(previousCommand & FastMixerState::IDLE)) {
Glenn Kasten4d23ca32014-05-13 10:39:51 -07003837 ALOG_ASSERT(mFastMixer != 0);
Eric Laurent81784c32012-11-19 14:55:58 -08003838 FastMixerStateQueue *sq = mFastMixer->sq();
3839 FastMixerState *state = sq->begin();
3840 ALOG_ASSERT(state->mCommand == FastMixerState::HOT_IDLE);
3841 state->mCommand = previousCommand;
3842 sq->end();
3843 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED);
3844 }
3845
3846 return reconfig;
3847}
3848
3849
3850void AudioFlinger::MixerThread::dumpInternals(int fd, const Vector<String16>& args)
3851{
3852 const size_t SIZE = 256;
3853 char buffer[SIZE];
3854 String8 result;
3855
3856 PlaybackThread::dumpInternals(fd, args);
3857
Elliott Hughes87cebad2014-05-22 10:14:43 -07003858 dprintf(fd, " AudioMixer tracks: 0x%08x\n", mAudioMixer->trackNames());
Eric Laurent81784c32012-11-19 14:55:58 -08003859
3860 // Make a non-atomic copy of fast mixer dump state so it won't change underneath us
Glenn Kasten4182c4e2013-07-15 14:45:07 -07003861 const FastMixerDumpState copy(mFastMixerDumpState);
Eric Laurent81784c32012-11-19 14:55:58 -08003862 copy.dump(fd);
3863
3864#ifdef STATE_QUEUE_DUMP
3865 // Similar for state queue
3866 StateQueueObserverDump observerCopy = mStateQueueObserverDump;
3867 observerCopy.dump(fd);
3868 StateQueueMutatorDump mutatorCopy = mStateQueueMutatorDump;
3869 mutatorCopy.dump(fd);
3870#endif
3871
Glenn Kasten46909e72013-02-26 09:20:22 -08003872#ifdef TEE_SINK
Eric Laurent81784c32012-11-19 14:55:58 -08003873 // Write the tee output to a .wav file
3874 dumpTee(fd, mTeeSource, mId);
Glenn Kasten46909e72013-02-26 09:20:22 -08003875#endif
Eric Laurent81784c32012-11-19 14:55:58 -08003876
3877#ifdef AUDIO_WATCHDOG
3878 if (mAudioWatchdog != 0) {
3879 // Make a non-atomic copy of audio watchdog dump so it won't change underneath us
3880 AudioWatchdogDump wdCopy = mAudioWatchdogDump;
3881 wdCopy.dump(fd);
3882 }
3883#endif
3884}
3885
3886uint32_t AudioFlinger::MixerThread::idleSleepTimeUs() const
3887{
3888 return (uint32_t)(((mNormalFrameCount * 1000) / mSampleRate) * 1000) / 2;
3889}
3890
3891uint32_t AudioFlinger::MixerThread::suspendSleepTimeUs() const
3892{
3893 return (uint32_t)(((mNormalFrameCount * 1000) / mSampleRate) * 1000);
3894}
3895
3896void AudioFlinger::MixerThread::cacheParameters_l()
3897{
3898 PlaybackThread::cacheParameters_l();
3899
3900 // FIXME: Relaxed timing because of a certain device that can't meet latency
3901 // Should be reduced to 2x after the vendor fixes the driver issue
3902 // increase threshold again due to low power audio mode. The way this warning
3903 // threshold is calculated and its usefulness should be reconsidered anyway.
3904 maxPeriod = seconds(mNormalFrameCount) / mSampleRate * 15;
3905}
3906
3907// ----------------------------------------------------------------------------
3908
3909AudioFlinger::DirectOutputThread::DirectOutputThread(const sp<AudioFlinger>& audioFlinger,
3910 AudioStreamOut* output, audio_io_handle_t id, audio_devices_t device)
3911 : PlaybackThread(audioFlinger, output, id, device, DIRECT)
3912 // mLeftVolFloat, mRightVolFloat
3913{
3914}
3915
Eric Laurentbfb1b832013-01-07 09:53:42 -08003916AudioFlinger::DirectOutputThread::DirectOutputThread(const sp<AudioFlinger>& audioFlinger,
3917 AudioStreamOut* output, audio_io_handle_t id, uint32_t device,
3918 ThreadBase::type_t type)
3919 : PlaybackThread(audioFlinger, output, id, device, type)
3920 // mLeftVolFloat, mRightVolFloat
3921{
3922}
3923
Eric Laurent81784c32012-11-19 14:55:58 -08003924AudioFlinger::DirectOutputThread::~DirectOutputThread()
3925{
3926}
3927
Eric Laurentbfb1b832013-01-07 09:53:42 -08003928void AudioFlinger::DirectOutputThread::processVolume_l(Track *track, bool lastTrack)
3929{
3930 audio_track_cblk_t* cblk = track->cblk();
3931 float left, right;
3932
3933 if (mMasterMute || mStreamTypes[track->streamType()].mute) {
3934 left = right = 0;
3935 } else {
3936 float typeVolume = mStreamTypes[track->streamType()].volume;
3937 float v = mMasterVolume * typeVolume;
3938 AudioTrackServerProxy *proxy = track->mAudioTrackServerProxy;
Glenn Kastenc56f3422014-03-21 17:53:17 -07003939 gain_minifloat_packed_t vlr = proxy->getVolumeLR();
3940 left = float_from_gain(gain_minifloat_unpack_left(vlr));
3941 if (left > GAIN_FLOAT_UNITY) {
3942 left = GAIN_FLOAT_UNITY;
3943 }
3944 left *= v;
3945 right = float_from_gain(gain_minifloat_unpack_right(vlr));
3946 if (right > GAIN_FLOAT_UNITY) {
3947 right = GAIN_FLOAT_UNITY;
3948 }
3949 right *= v;
Eric Laurentbfb1b832013-01-07 09:53:42 -08003950 }
3951
3952 if (lastTrack) {
3953 if (left != mLeftVolFloat || right != mRightVolFloat) {
3954 mLeftVolFloat = left;
3955 mRightVolFloat = right;
3956
3957 // Convert volumes from float to 8.24
3958 uint32_t vl = (uint32_t)(left * (1 << 24));
3959 uint32_t vr = (uint32_t)(right * (1 << 24));
3960
3961 // Delegate volume control to effect in track effect chain if needed
3962 // only one effect chain can be present on DirectOutputThread, so if
3963 // there is one, the track is connected to it
3964 if (!mEffectChains.isEmpty()) {
3965 mEffectChains[0]->setVolume_l(&vl, &vr);
3966 left = (float)vl / (1 << 24);
3967 right = (float)vr / (1 << 24);
3968 }
3969 if (mOutput->stream->set_volume) {
3970 mOutput->stream->set_volume(mOutput->stream, left, right);
3971 }
3972 }
3973 }
3974}
3975
3976
Eric Laurent81784c32012-11-19 14:55:58 -08003977AudioFlinger::PlaybackThread::mixer_state AudioFlinger::DirectOutputThread::prepareTracks_l(
3978 Vector< sp<Track> > *tracksToRemove
3979)
3980{
Eric Laurentd595b7c2013-04-03 17:27:56 -07003981 size_t count = mActiveTracks.size();
Eric Laurent81784c32012-11-19 14:55:58 -08003982 mixer_state mixerStatus = MIXER_IDLE;
3983
3984 // find out which tracks need to be processed
Eric Laurentd595b7c2013-04-03 17:27:56 -07003985 for (size_t i = 0; i < count; i++) {
3986 sp<Track> t = mActiveTracks[i].promote();
Eric Laurent81784c32012-11-19 14:55:58 -08003987 // The track died recently
3988 if (t == 0) {
Eric Laurentd595b7c2013-04-03 17:27:56 -07003989 continue;
Eric Laurent81784c32012-11-19 14:55:58 -08003990 }
3991
3992 Track* const track = t.get();
3993 audio_track_cblk_t* cblk = track->cblk();
Eric Laurentfd477972013-10-25 18:10:40 -07003994 // Only consider last track started for volume and mixer state control.
3995 // In theory an older track could underrun and restart after the new one starts
3996 // but as we only care about the transition phase between two tracks on a
3997 // direct output, it is not a problem to ignore the underrun case.
3998 sp<Track> l = mLatestActiveTrack.promote();
3999 bool last = l.get() == track;
Eric Laurent81784c32012-11-19 14:55:58 -08004000
4001 // The first time a track is added we wait
4002 // for all its buffers to be filled before processing it
4003 uint32_t minFrames;
Eric Laurentab5cdba2014-06-09 17:22:27 -07004004 if ((track->sharedBuffer() == 0) && !track->isStopping_1() && !track->isPausing()) {
Eric Laurent81784c32012-11-19 14:55:58 -08004005 minFrames = mNormalFrameCount;
4006 } else {
4007 minFrames = 1;
4008 }
Eric Laurentbfb1b832013-01-07 09:53:42 -08004009
Eric Laurentab5cdba2014-06-09 17:22:27 -07004010 if ((track->framesReady() >= minFrames) && track->isReady() && !track->isPaused() &&
4011 !track->isStopping_2() && !track->isStopped())
Eric Laurent81784c32012-11-19 14:55:58 -08004012 {
Glenn Kastenf20e1d82013-07-12 09:45:18 -07004013 ALOGVV("track %d s=%08x [OK]", track->name(), cblk->mServer);
Eric Laurent81784c32012-11-19 14:55:58 -08004014
4015 if (track->mFillingUpStatus == Track::FS_FILLED) {
4016 track->mFillingUpStatus = Track::FS_ACTIVE;
Eric Laurent1abbdb42013-09-13 17:00:08 -07004017 // make sure processVolume_l() will apply new volume even if 0
4018 mLeftVolFloat = mRightVolFloat = -1.0;
Eric Laurent81784c32012-11-19 14:55:58 -08004019 if (track->mState == TrackBase::RESUMING) {
4020 track->mState = TrackBase::ACTIVE;
4021 }
4022 }
4023
4024 // compute volume for this track
Eric Laurentbfb1b832013-01-07 09:53:42 -08004025 processVolume_l(track, last);
4026 if (last) {
Eric Laurentd595b7c2013-04-03 17:27:56 -07004027 // reset retry count
4028 track->mRetryCount = kMaxTrackRetriesDirect;
4029 mActiveTrack = t;
4030 mixerStatus = MIXER_TRACKS_READY;
4031 }
Eric Laurent81784c32012-11-19 14:55:58 -08004032 } else {
Eric Laurentd595b7c2013-04-03 17:27:56 -07004033 // clear effect chain input buffer if the last active track started underruns
4034 // to avoid sending previous audio buffer again to effects
Eric Laurentfd477972013-10-25 18:10:40 -07004035 if (!mEffectChains.isEmpty() && last) {
Eric Laurent81784c32012-11-19 14:55:58 -08004036 mEffectChains[0]->clearInputBuffer();
4037 }
Eric Laurentab5cdba2014-06-09 17:22:27 -07004038 if (track->isStopping_1()) {
4039 track->mState = TrackBase::STOPPING_2;
4040 }
4041 if ((track->sharedBuffer() != 0) || track->isStopped() ||
4042 track->isStopping_2() || track->isPaused()) {
Eric Laurent81784c32012-11-19 14:55:58 -08004043 // We have consumed all the buffers of this track.
4044 // Remove it from the list of active tracks.
Eric Laurentab5cdba2014-06-09 17:22:27 -07004045 size_t audioHALFrames;
4046 if (audio_is_linear_pcm(mFormat)) {
4047 audioHALFrames = (latency_l() * mSampleRate) / 1000;
4048 } else {
4049 audioHALFrames = 0;
4050 }
4051
Eric Laurent81784c32012-11-19 14:55:58 -08004052 size_t framesWritten = mBytesWritten / mFrameSize;
Eric Laurentfd477972013-10-25 18:10:40 -07004053 if (mStandby || !last ||
4054 track->presentationComplete(framesWritten, audioHALFrames)) {
Eric Laurentab5cdba2014-06-09 17:22:27 -07004055 if (track->isStopping_2()) {
4056 track->mState = TrackBase::STOPPED;
4057 }
Eric Laurent81784c32012-11-19 14:55:58 -08004058 if (track->isStopped()) {
Eric Laurente659ef42014-09-29 13:06:46 -07004059 if (track->mState == TrackBase::FLUSHED) {
4060 flushHw_l();
4061 }
Eric Laurent81784c32012-11-19 14:55:58 -08004062 track->reset();
4063 }
Eric Laurentd595b7c2013-04-03 17:27:56 -07004064 tracksToRemove->add(track);
Eric Laurent81784c32012-11-19 14:55:58 -08004065 }
4066 } else {
4067 // No buffers for this track. Give it a few chances to
4068 // fill a buffer, then remove it from active list.
Eric Laurentd595b7c2013-04-03 17:27:56 -07004069 // Only consider last track started for mixer state control
Eric Laurent81784c32012-11-19 14:55:58 -08004070 if (--(track->mRetryCount) <= 0) {
4071 ALOGV("BUFFER TIMEOUT: remove(%d) from active list", track->name());
Eric Laurentd595b7c2013-04-03 17:27:56 -07004072 tracksToRemove->add(track);
Eric Laurenta23f17a2013-11-05 18:22:08 -08004073 // indicate to client process that the track was disabled because of underrun;
4074 // it will then automatically call start() when data is available
4075 android_atomic_or(CBLK_DISABLED, &cblk->mFlags);
Eric Laurentbfb1b832013-01-07 09:53:42 -08004076 } else if (last) {
Eric Laurent81784c32012-11-19 14:55:58 -08004077 mixerStatus = MIXER_TRACKS_ENABLED;
4078 }
4079 }
4080 }
4081 }
4082
Eric Laurent81784c32012-11-19 14:55:58 -08004083 // remove all the tracks that need to be...
Eric Laurentbfb1b832013-01-07 09:53:42 -08004084 removeTracks_l(*tracksToRemove);
Eric Laurent81784c32012-11-19 14:55:58 -08004085
4086 return mixerStatus;
4087}
4088
4089void AudioFlinger::DirectOutputThread::threadLoop_mix()
4090{
Eric Laurent81784c32012-11-19 14:55:58 -08004091 size_t frameCount = mFrameCount;
Andy Hung2098f272014-02-27 14:00:06 -08004092 int8_t *curBuf = (int8_t *)mSinkBuffer;
Eric Laurent81784c32012-11-19 14:55:58 -08004093 // output audio to hardware
4094 while (frameCount) {
Glenn Kasten34542ac2013-06-26 11:29:02 -07004095 AudioBufferProvider::Buffer buffer;
Eric Laurent81784c32012-11-19 14:55:58 -08004096 buffer.frameCount = frameCount;
4097 mActiveTrack->getNextBuffer(&buffer);
Glenn Kastenfa319e62013-07-29 17:17:38 -07004098 if (buffer.raw == NULL) {
Eric Laurent81784c32012-11-19 14:55:58 -08004099 memset(curBuf, 0, frameCount * mFrameSize);
4100 break;
4101 }
4102 memcpy(curBuf, buffer.raw, buffer.frameCount * mFrameSize);
4103 frameCount -= buffer.frameCount;
4104 curBuf += buffer.frameCount * mFrameSize;
4105 mActiveTrack->releaseBuffer(&buffer);
4106 }
Andy Hung2098f272014-02-27 14:00:06 -08004107 mCurrentWriteLength = curBuf - (int8_t *)mSinkBuffer;
Eric Laurent81784c32012-11-19 14:55:58 -08004108 sleepTime = 0;
4109 standbyTime = systemTime() + standbyDelay;
4110 mActiveTrack.clear();
Eric Laurent81784c32012-11-19 14:55:58 -08004111}
4112
4113void AudioFlinger::DirectOutputThread::threadLoop_sleepTime()
4114{
4115 if (sleepTime == 0) {
4116 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
4117 sleepTime = activeSleepTime;
4118 } else {
4119 sleepTime = idleSleepTime;
4120 }
4121 } else if (mBytesWritten != 0 && audio_is_linear_pcm(mFormat)) {
Andy Hung2098f272014-02-27 14:00:06 -08004122 memset(mSinkBuffer, 0, mFrameCount * mFrameSize);
Eric Laurent81784c32012-11-19 14:55:58 -08004123 sleepTime = 0;
4124 }
4125}
4126
4127// getTrackName_l() must be called with ThreadBase::mLock held
Glenn Kasten0f11b512014-01-31 16:18:54 -08004128int AudioFlinger::DirectOutputThread::getTrackName_l(audio_channel_mask_t channelMask __unused,
Andy Hunge8a1ced2014-05-09 15:02:21 -07004129 audio_format_t format __unused, int sessionId __unused)
Eric Laurent81784c32012-11-19 14:55:58 -08004130{
4131 return 0;
4132}
4133
4134// deleteTrackName_l() must be called with ThreadBase::mLock held
Glenn Kasten0f11b512014-01-31 16:18:54 -08004135void AudioFlinger::DirectOutputThread::deleteTrackName_l(int name __unused)
Eric Laurent81784c32012-11-19 14:55:58 -08004136{
4137}
4138
Eric Laurent10351942014-05-08 18:49:52 -07004139// checkForNewParameter_l() must be called with ThreadBase::mLock held
4140bool AudioFlinger::DirectOutputThread::checkForNewParameter_l(const String8& keyValuePair,
4141 status_t& status)
Eric Laurent81784c32012-11-19 14:55:58 -08004142{
4143 bool reconfig = false;
4144
Eric Laurent10351942014-05-08 18:49:52 -07004145 status = NO_ERROR;
Eric Laurent81784c32012-11-19 14:55:58 -08004146
Eric Laurent10351942014-05-08 18:49:52 -07004147 AudioParameter param = AudioParameter(keyValuePair);
4148 int value;
4149 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
4150 // forward device change to effects that have requested to be
4151 // aware of attached audio device.
4152 if (value != AUDIO_DEVICE_NONE) {
4153 mOutDevice = value;
4154 for (size_t i = 0; i < mEffectChains.size(); i++) {
4155 mEffectChains[i]->setDevice_l(mOutDevice);
Glenn Kastenc125f382014-04-11 18:37:33 -07004156 }
4157 }
Eric Laurent81784c32012-11-19 14:55:58 -08004158 }
Eric Laurent10351942014-05-08 18:49:52 -07004159 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
4160 // do not accept frame count changes if tracks are open as the track buffer
4161 // size depends on frame count and correct behavior would not be garantied
4162 // if frame count is changed after track creation
4163 if (!mTracks.isEmpty()) {
4164 status = INVALID_OPERATION;
4165 } else {
4166 reconfig = true;
4167 }
4168 }
4169 if (status == NO_ERROR) {
4170 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
4171 keyValuePair.string());
4172 if (!mStandby && status == INVALID_OPERATION) {
4173 mOutput->stream->common.standby(&mOutput->stream->common);
4174 mStandby = true;
4175 mBytesWritten = 0;
4176 status = mOutput->stream->common.set_parameters(&mOutput->stream->common,
4177 keyValuePair.string());
4178 }
4179 if (status == NO_ERROR && reconfig) {
4180 readOutputParameters_l();
4181 sendIoConfigEvent_l(AudioSystem::OUTPUT_CONFIG_CHANGED);
4182 }
4183 }
4184
Eric Laurent81784c32012-11-19 14:55:58 -08004185 return reconfig;
4186}
4187
4188uint32_t AudioFlinger::DirectOutputThread::activeSleepTimeUs() const
4189{
4190 uint32_t time;
4191 if (audio_is_linear_pcm(mFormat)) {
4192 time = PlaybackThread::activeSleepTimeUs();
4193 } else {
4194 time = 10000;
4195 }
4196 return time;
4197}
4198
4199uint32_t AudioFlinger::DirectOutputThread::idleSleepTimeUs() const
4200{
4201 uint32_t time;
4202 if (audio_is_linear_pcm(mFormat)) {
4203 time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000) / 2;
4204 } else {
4205 time = 10000;
4206 }
4207 return time;
4208}
4209
4210uint32_t AudioFlinger::DirectOutputThread::suspendSleepTimeUs() const
4211{
4212 uint32_t time;
4213 if (audio_is_linear_pcm(mFormat)) {
4214 time = (uint32_t)(((mFrameCount * 1000) / mSampleRate) * 1000);
4215 } else {
4216 time = 10000;
4217 }
4218 return time;
4219}
4220
4221void AudioFlinger::DirectOutputThread::cacheParameters_l()
4222{
4223 PlaybackThread::cacheParameters_l();
4224
4225 // use shorter standby delay as on normal output to release
4226 // hardware resources as soon as possible
Eric Laurent972a1732013-09-04 09:42:59 -07004227 if (audio_is_linear_pcm(mFormat)) {
4228 standbyDelay = microseconds(activeSleepTime*2);
4229 } else {
4230 standbyDelay = kOffloadStandbyDelayNs;
4231 }
Eric Laurent81784c32012-11-19 14:55:58 -08004232}
4233
Eric Laurente659ef42014-09-29 13:06:46 -07004234void AudioFlinger::DirectOutputThread::flushHw_l()
4235{
4236 if (mOutput->stream->flush != NULL)
4237 mOutput->stream->flush(mOutput->stream);
4238}
4239
Eric Laurent81784c32012-11-19 14:55:58 -08004240// ----------------------------------------------------------------------------
4241
Eric Laurentbfb1b832013-01-07 09:53:42 -08004242AudioFlinger::AsyncCallbackThread::AsyncCallbackThread(
Eric Laurent4de95592013-09-26 15:28:21 -07004243 const wp<AudioFlinger::PlaybackThread>& playbackThread)
Eric Laurentbfb1b832013-01-07 09:53:42 -08004244 : Thread(false /*canCallJava*/),
Eric Laurent4de95592013-09-26 15:28:21 -07004245 mPlaybackThread(playbackThread),
Eric Laurent3b4529e2013-09-05 18:09:19 -07004246 mWriteAckSequence(0),
4247 mDrainSequence(0)
Eric Laurentbfb1b832013-01-07 09:53:42 -08004248{
4249}
4250
4251AudioFlinger::AsyncCallbackThread::~AsyncCallbackThread()
4252{
4253}
4254
4255void AudioFlinger::AsyncCallbackThread::onFirstRef()
4256{
4257 run("Offload Cbk", ANDROID_PRIORITY_URGENT_AUDIO);
4258}
4259
4260bool AudioFlinger::AsyncCallbackThread::threadLoop()
4261{
4262 while (!exitPending()) {
Eric Laurent3b4529e2013-09-05 18:09:19 -07004263 uint32_t writeAckSequence;
4264 uint32_t drainSequence;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004265
4266 {
4267 Mutex::Autolock _l(mLock);
Haynes Mathew George24a325d2013-12-03 21:26:02 -08004268 while (!((mWriteAckSequence & 1) ||
4269 (mDrainSequence & 1) ||
4270 exitPending())) {
4271 mWaitWorkCV.wait(mLock);
4272 }
4273
Eric Laurentbfb1b832013-01-07 09:53:42 -08004274 if (exitPending()) {
4275 break;
4276 }
Eric Laurent3b4529e2013-09-05 18:09:19 -07004277 ALOGV("AsyncCallbackThread mWriteAckSequence %d mDrainSequence %d",
4278 mWriteAckSequence, mDrainSequence);
4279 writeAckSequence = mWriteAckSequence;
4280 mWriteAckSequence &= ~1;
4281 drainSequence = mDrainSequence;
4282 mDrainSequence &= ~1;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004283 }
4284 {
Eric Laurent4de95592013-09-26 15:28:21 -07004285 sp<AudioFlinger::PlaybackThread> playbackThread = mPlaybackThread.promote();
4286 if (playbackThread != 0) {
Eric Laurent3b4529e2013-09-05 18:09:19 -07004287 if (writeAckSequence & 1) {
Eric Laurent4de95592013-09-26 15:28:21 -07004288 playbackThread->resetWriteBlocked(writeAckSequence >> 1);
Eric Laurentbfb1b832013-01-07 09:53:42 -08004289 }
Eric Laurent3b4529e2013-09-05 18:09:19 -07004290 if (drainSequence & 1) {
Eric Laurent4de95592013-09-26 15:28:21 -07004291 playbackThread->resetDraining(drainSequence >> 1);
Eric Laurentbfb1b832013-01-07 09:53:42 -08004292 }
4293 }
4294 }
4295 }
4296 return false;
4297}
4298
4299void AudioFlinger::AsyncCallbackThread::exit()
4300{
4301 ALOGV("AsyncCallbackThread::exit");
4302 Mutex::Autolock _l(mLock);
4303 requestExit();
4304 mWaitWorkCV.broadcast();
4305}
4306
Eric Laurent3b4529e2013-09-05 18:09:19 -07004307void AudioFlinger::AsyncCallbackThread::setWriteBlocked(uint32_t sequence)
Eric Laurentbfb1b832013-01-07 09:53:42 -08004308{
4309 Mutex::Autolock _l(mLock);
Eric Laurent3b4529e2013-09-05 18:09:19 -07004310 // bit 0 is cleared
4311 mWriteAckSequence = sequence << 1;
4312}
4313
4314void AudioFlinger::AsyncCallbackThread::resetWriteBlocked()
4315{
4316 Mutex::Autolock _l(mLock);
4317 // ignore unexpected callbacks
4318 if (mWriteAckSequence & 2) {
4319 mWriteAckSequence |= 1;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004320 mWaitWorkCV.signal();
4321 }
4322}
4323
Eric Laurent3b4529e2013-09-05 18:09:19 -07004324void AudioFlinger::AsyncCallbackThread::setDraining(uint32_t sequence)
Eric Laurentbfb1b832013-01-07 09:53:42 -08004325{
4326 Mutex::Autolock _l(mLock);
Eric Laurent3b4529e2013-09-05 18:09:19 -07004327 // bit 0 is cleared
4328 mDrainSequence = sequence << 1;
4329}
4330
4331void AudioFlinger::AsyncCallbackThread::resetDraining()
4332{
4333 Mutex::Autolock _l(mLock);
4334 // ignore unexpected callbacks
4335 if (mDrainSequence & 2) {
4336 mDrainSequence |= 1;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004337 mWaitWorkCV.signal();
4338 }
4339}
4340
4341
4342// ----------------------------------------------------------------------------
4343AudioFlinger::OffloadThread::OffloadThread(const sp<AudioFlinger>& audioFlinger,
4344 AudioStreamOut* output, audio_io_handle_t id, uint32_t device)
4345 : DirectOutputThread(audioFlinger, output, id, device, OFFLOAD),
4346 mHwPaused(false),
Eric Laurentea0fade2013-10-04 16:23:48 -07004347 mFlushPending(false),
Eric Laurentd7e59222013-11-15 12:02:28 -08004348 mPausedBytesRemaining(0)
Eric Laurentbfb1b832013-01-07 09:53:42 -08004349{
Eric Laurentfd477972013-10-25 18:10:40 -07004350 //FIXME: mStandby should be set to true by ThreadBase constructor
4351 mStandby = true;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004352}
4353
Eric Laurentbfb1b832013-01-07 09:53:42 -08004354void AudioFlinger::OffloadThread::threadLoop_exit()
4355{
4356 if (mFlushPending || mHwPaused) {
4357 // If a flush is pending or track was paused, just discard buffered data
4358 flushHw_l();
4359 } else {
4360 mMixerStatus = MIXER_DRAIN_ALL;
4361 threadLoop_drain();
4362 }
Uday Gupta56604aa2014-05-13 11:19:17 -07004363 if (mUseAsyncWrite) {
4364 ALOG_ASSERT(mCallbackThread != 0);
4365 mCallbackThread->exit();
4366 }
Eric Laurentbfb1b832013-01-07 09:53:42 -08004367 PlaybackThread::threadLoop_exit();
4368}
4369
4370AudioFlinger::PlaybackThread::mixer_state AudioFlinger::OffloadThread::prepareTracks_l(
4371 Vector< sp<Track> > *tracksToRemove
4372)
4373{
Eric Laurentbfb1b832013-01-07 09:53:42 -08004374 size_t count = mActiveTracks.size();
4375
4376 mixer_state mixerStatus = MIXER_IDLE;
Eric Laurent972a1732013-09-04 09:42:59 -07004377 bool doHwPause = false;
4378 bool doHwResume = false;
4379
Eric Laurentede6c3b2013-09-19 14:37:46 -07004380 ALOGV("OffloadThread::prepareTracks_l active tracks %d", count);
4381
Eric Laurentbfb1b832013-01-07 09:53:42 -08004382 // find out which tracks need to be processed
4383 for (size_t i = 0; i < count; i++) {
4384 sp<Track> t = mActiveTracks[i].promote();
4385 // The track died recently
4386 if (t == 0) {
4387 continue;
4388 }
4389 Track* const track = t.get();
4390 audio_track_cblk_t* cblk = track->cblk();
Eric Laurentfd477972013-10-25 18:10:40 -07004391 // Only consider last track started for volume and mixer state control.
4392 // In theory an older track could underrun and restart after the new one starts
4393 // but as we only care about the transition phase between two tracks on a
4394 // direct output, it is not a problem to ignore the underrun case.
4395 sp<Track> l = mLatestActiveTrack.promote();
4396 bool last = l.get() == track;
4397
Haynes Mathew George7844f672014-01-15 12:32:55 -08004398 if (track->isInvalid()) {
4399 ALOGW("An invalidated track shouldn't be in active list");
4400 tracksToRemove->add(track);
4401 continue;
4402 }
4403
4404 if (track->mState == TrackBase::IDLE) {
4405 ALOGW("An idle track shouldn't be in active list");
4406 continue;
4407 }
4408
Eric Laurentbfb1b832013-01-07 09:53:42 -08004409 if (track->isPausing()) {
4410 track->setPaused();
4411 if (last) {
4412 if (!mHwPaused) {
Eric Laurent972a1732013-09-04 09:42:59 -07004413 doHwPause = true;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004414 mHwPaused = true;
4415 }
4416 // If we were part way through writing the mixbuffer to
4417 // the HAL we must save this until we resume
4418 // BUG - this will be wrong if a different track is made active,
4419 // in that case we want to discard the pending data in the
4420 // mixbuffer and tell the client to present it again when the
4421 // track is resumed
4422 mPausedWriteLength = mCurrentWriteLength;
4423 mPausedBytesRemaining = mBytesRemaining;
4424 mBytesRemaining = 0; // stop writing
4425 }
4426 tracksToRemove->add(track);
Haynes Mathew George7844f672014-01-15 12:32:55 -08004427 } else if (track->isFlushPending()) {
4428 track->flushAck();
4429 if (last) {
4430 mFlushPending = true;
4431 }
Haynes Mathew George2d3ca682014-03-07 13:43:49 -08004432 } else if (track->isResumePending()){
4433 track->resumeAck();
4434 if (last) {
4435 if (mPausedBytesRemaining) {
4436 // Need to continue write that was interrupted
4437 mCurrentWriteLength = mPausedWriteLength;
4438 mBytesRemaining = mPausedBytesRemaining;
4439 mPausedBytesRemaining = 0;
4440 }
4441 if (mHwPaused) {
4442 doHwResume = true;
4443 mHwPaused = false;
4444 // threadLoop_mix() will handle the case that we need to
4445 // resume an interrupted write
4446 }
4447 // enable write to audio HAL
4448 sleepTime = 0;
4449
4450 // Do not handle new data in this iteration even if track->framesReady()
4451 mixerStatus = MIXER_TRACKS_ENABLED;
4452 }
4453 } else if (track->framesReady() && track->isReady() &&
Eric Laurent3b4529e2013-09-05 18:09:19 -07004454 !track->isPaused() && !track->isTerminated() && !track->isStopping_2()) {
Glenn Kastenf20e1d82013-07-12 09:45:18 -07004455 ALOGVV("OffloadThread: track %d s=%08x [OK]", track->name(), cblk->mServer);
Eric Laurentbfb1b832013-01-07 09:53:42 -08004456 if (track->mFillingUpStatus == Track::FS_FILLED) {
4457 track->mFillingUpStatus = Track::FS_ACTIVE;
Eric Laurent1abbdb42013-09-13 17:00:08 -07004458 // make sure processVolume_l() will apply new volume even if 0
4459 mLeftVolFloat = mRightVolFloat = -1.0;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004460 }
4461
4462 if (last) {
Eric Laurentd7e59222013-11-15 12:02:28 -08004463 sp<Track> previousTrack = mPreviousTrack.promote();
4464 if (previousTrack != 0) {
4465 if (track != previousTrack.get()) {
Eric Laurent9da3d952013-11-12 19:25:43 -08004466 // Flush any data still being written from last track
4467 mBytesRemaining = 0;
4468 if (mPausedBytesRemaining) {
4469 // Last track was paused so we also need to flush saved
4470 // mixbuffer state and invalidate track so that it will
4471 // re-submit that unwritten data when it is next resumed
4472 mPausedBytesRemaining = 0;
4473 // Invalidate is a bit drastic - would be more efficient
4474 // to have a flag to tell client that some of the
4475 // previously written data was lost
Eric Laurentd7e59222013-11-15 12:02:28 -08004476 previousTrack->invalidate();
Eric Laurent9da3d952013-11-12 19:25:43 -08004477 }
4478 // flush data already sent to the DSP if changing audio session as audio
4479 // comes from a different source. Also invalidate previous track to force a
4480 // seek when resuming.
Eric Laurentd7e59222013-11-15 12:02:28 -08004481 if (previousTrack->sessionId() != track->sessionId()) {
4482 previousTrack->invalidate();
Eric Laurent9da3d952013-11-12 19:25:43 -08004483 }
4484 }
4485 }
4486 mPreviousTrack = track;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004487 // reset retry count
4488 track->mRetryCount = kMaxTrackRetriesOffload;
4489 mActiveTrack = t;
4490 mixerStatus = MIXER_TRACKS_READY;
4491 }
4492 } else {
Glenn Kastenf20e1d82013-07-12 09:45:18 -07004493 ALOGVV("OffloadThread: track %d s=%08x [NOT READY]", track->name(), cblk->mServer);
Eric Laurentbfb1b832013-01-07 09:53:42 -08004494 if (track->isStopping_1()) {
4495 // Hardware buffer can hold a large amount of audio so we must
4496 // wait for all current track's data to drain before we say
4497 // that the track is stopped.
4498 if (mBytesRemaining == 0) {
4499 // Only start draining when all data in mixbuffer
4500 // has been written
4501 ALOGV("OffloadThread: underrun and STOPPING_1 -> draining, STOPPING_2");
4502 track->mState = TrackBase::STOPPING_2; // so presentation completes after drain
Eric Laurent6a51d7e2013-10-17 18:59:26 -07004503 // do not drain if no data was ever sent to HAL (mStandby == true)
4504 if (last && !mStandby) {
Eric Laurent1b9f9b12013-11-12 19:10:17 -08004505 // do not modify drain sequence if we are already draining. This happens
4506 // when resuming from pause after drain.
4507 if ((mDrainSequence & 1) == 0) {
4508 sleepTime = 0;
4509 standbyTime = systemTime() + standbyDelay;
4510 mixerStatus = MIXER_DRAIN_TRACK;
4511 mDrainSequence += 2;
4512 }
Eric Laurentbfb1b832013-01-07 09:53:42 -08004513 if (mHwPaused) {
4514 // It is possible to move from PAUSED to STOPPING_1 without
4515 // a resume so we must ensure hardware is running
Eric Laurent1b9f9b12013-11-12 19:10:17 -08004516 doHwResume = true;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004517 mHwPaused = false;
4518 }
4519 }
4520 }
4521 } else if (track->isStopping_2()) {
Eric Laurent6a51d7e2013-10-17 18:59:26 -07004522 // Drain has completed or we are in standby, signal presentation complete
4523 if (!(mDrainSequence & 1) || !last || mStandby) {
Eric Laurentbfb1b832013-01-07 09:53:42 -08004524 track->mState = TrackBase::STOPPED;
4525 size_t audioHALFrames =
4526 (mOutput->stream->get_latency(mOutput->stream)*mSampleRate) / 1000;
4527 size_t framesWritten =
Eric Laurent665470b2014-07-03 16:37:08 -07004528 mBytesWritten / audio_stream_out_frame_size(mOutput->stream);
Eric Laurentbfb1b832013-01-07 09:53:42 -08004529 track->presentationComplete(framesWritten, audioHALFrames);
4530 track->reset();
4531 tracksToRemove->add(track);
4532 }
4533 } else {
4534 // No buffers for this track. Give it a few chances to
4535 // fill a buffer, then remove it from active list.
4536 if (--(track->mRetryCount) <= 0) {
4537 ALOGV("OffloadThread: BUFFER TIMEOUT: remove(%d) from active list",
4538 track->name());
4539 tracksToRemove->add(track);
Eric Laurenta23f17a2013-11-05 18:22:08 -08004540 // indicate to client process that the track was disabled because of underrun;
4541 // it will then automatically call start() when data is available
4542 android_atomic_or(CBLK_DISABLED, &cblk->mFlags);
Eric Laurentbfb1b832013-01-07 09:53:42 -08004543 } else if (last){
4544 mixerStatus = MIXER_TRACKS_ENABLED;
4545 }
4546 }
4547 }
4548 // compute volume for this track
4549 processVolume_l(track, last);
4550 }
Eric Laurent6bf9ae22013-08-30 15:12:37 -07004551
Eric Laurentea0fade2013-10-04 16:23:48 -07004552 // make sure the pause/flush/resume sequence is executed in the right order.
4553 // If a flush is pending and a track is active but the HW is not paused, force a HW pause
4554 // before flush and then resume HW. This can happen in case of pause/flush/resume
4555 // if resume is received before pause is executed.
Eric Laurentfd477972013-10-25 18:10:40 -07004556 if (!mStandby && (doHwPause || (mFlushPending && !mHwPaused && (count != 0)))) {
Eric Laurent972a1732013-09-04 09:42:59 -07004557 mOutput->stream->pause(mOutput->stream);
4558 }
Eric Laurent6bf9ae22013-08-30 15:12:37 -07004559 if (mFlushPending) {
4560 flushHw_l();
4561 mFlushPending = false;
4562 }
Eric Laurentfd477972013-10-25 18:10:40 -07004563 if (!mStandby && doHwResume) {
Eric Laurent972a1732013-09-04 09:42:59 -07004564 mOutput->stream->resume(mOutput->stream);
4565 }
Eric Laurent6bf9ae22013-08-30 15:12:37 -07004566
Eric Laurentbfb1b832013-01-07 09:53:42 -08004567 // remove all the tracks that need to be...
4568 removeTracks_l(*tracksToRemove);
4569
4570 return mixerStatus;
4571}
4572
Eric Laurentbfb1b832013-01-07 09:53:42 -08004573// must be called with thread mutex locked
4574bool AudioFlinger::OffloadThread::waitingAsyncCallback_l()
4575{
Eric Laurent3b4529e2013-09-05 18:09:19 -07004576 ALOGVV("waitingAsyncCallback_l mWriteAckSequence %d mDrainSequence %d",
4577 mWriteAckSequence, mDrainSequence);
4578 if (mUseAsyncWrite && ((mWriteAckSequence & 1) || (mDrainSequence & 1))) {
Eric Laurentbfb1b832013-01-07 09:53:42 -08004579 return true;
4580 }
4581 return false;
4582}
4583
4584// must be called with thread mutex locked
4585bool AudioFlinger::OffloadThread::shouldStandby_l()
4586{
Glenn Kastene6f35b12013-08-19 09:58:50 -07004587 bool trackPaused = false;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004588
4589 // do not put the HAL in standby when paused. AwesomePlayer clear the offloaded AudioTrack
4590 // after a timeout and we will enter standby then.
4591 if (mTracks.size() > 0) {
Glenn Kastene6f35b12013-08-19 09:58:50 -07004592 trackPaused = mTracks[mTracks.size() - 1]->isPaused();
Eric Laurentbfb1b832013-01-07 09:53:42 -08004593 }
4594
Glenn Kastene6f35b12013-08-19 09:58:50 -07004595 return !mStandby && !trackPaused;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004596}
4597
4598
4599bool AudioFlinger::OffloadThread::waitingAsyncCallback()
4600{
4601 Mutex::Autolock _l(mLock);
4602 return waitingAsyncCallback_l();
4603}
4604
4605void AudioFlinger::OffloadThread::flushHw_l()
4606{
Eric Laurente659ef42014-09-29 13:06:46 -07004607 DirectOutputThread::flushHw_l();
Eric Laurentbfb1b832013-01-07 09:53:42 -08004608 // Flush anything still waiting in the mixbuffer
4609 mCurrentWriteLength = 0;
4610 mBytesRemaining = 0;
4611 mPausedWriteLength = 0;
4612 mPausedBytesRemaining = 0;
Haynes Mathew George0f02f262014-01-11 13:03:57 -08004613 mHwPaused = false;
4614
Eric Laurentbfb1b832013-01-07 09:53:42 -08004615 if (mUseAsyncWrite) {
Eric Laurent3b4529e2013-09-05 18:09:19 -07004616 // discard any pending drain or write ack by incrementing sequence
4617 mWriteAckSequence = (mWriteAckSequence + 2) & ~1;
4618 mDrainSequence = (mDrainSequence + 2) & ~1;
Eric Laurentbfb1b832013-01-07 09:53:42 -08004619 ALOG_ASSERT(mCallbackThread != 0);
Eric Laurent3b4529e2013-09-05 18:09:19 -07004620 mCallbackThread->setWriteBlocked(mWriteAckSequence);
4621 mCallbackThread->setDraining(mDrainSequence);
Eric Laurentbfb1b832013-01-07 09:53:42 -08004622 }
4623}
4624
Haynes Mathew George4c6a4332014-01-15 12:31:39 -08004625void AudioFlinger::OffloadThread::onAddNewTrack_l()
4626{
4627 sp<Track> previousTrack = mPreviousTrack.promote();
4628 sp<Track> latestTrack = mLatestActiveTrack.promote();
4629
4630 if (previousTrack != 0 && latestTrack != 0 &&
4631 (previousTrack->sessionId() != latestTrack->sessionId())) {
4632 mFlushPending = true;
4633 }
4634 PlaybackThread::onAddNewTrack_l();
4635}
4636
Eric Laurentbfb1b832013-01-07 09:53:42 -08004637// ----------------------------------------------------------------------------
4638
Eric Laurent81784c32012-11-19 14:55:58 -08004639AudioFlinger::DuplicatingThread::DuplicatingThread(const sp<AudioFlinger>& audioFlinger,
4640 AudioFlinger::MixerThread* mainThread, audio_io_handle_t id)
4641 : MixerThread(audioFlinger, mainThread->getOutput(), id, mainThread->outDevice(),
4642 DUPLICATING),
4643 mWaitTimeMs(UINT_MAX)
4644{
4645 addOutputTrack(mainThread);
4646}
4647
4648AudioFlinger::DuplicatingThread::~DuplicatingThread()
4649{
4650 for (size_t i = 0; i < mOutputTracks.size(); i++) {
4651 mOutputTracks[i]->destroy();
4652 }
4653}
4654
4655void AudioFlinger::DuplicatingThread::threadLoop_mix()
4656{
4657 // mix buffers...
4658 if (outputsReady(outputTracks)) {
4659 mAudioMixer->process(AudioBufferProvider::kInvalidPTS);
4660 } else {
Andy Hung25c2dac2014-02-27 14:56:00 -08004661 memset(mSinkBuffer, 0, mSinkBufferSize);
Eric Laurent81784c32012-11-19 14:55:58 -08004662 }
4663 sleepTime = 0;
4664 writeFrames = mNormalFrameCount;
Andy Hung25c2dac2014-02-27 14:56:00 -08004665 mCurrentWriteLength = mSinkBufferSize;
Eric Laurent81784c32012-11-19 14:55:58 -08004666 standbyTime = systemTime() + standbyDelay;
4667}
4668
4669void AudioFlinger::DuplicatingThread::threadLoop_sleepTime()
4670{
4671 if (sleepTime == 0) {
4672 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
4673 sleepTime = activeSleepTime;
4674 } else {
4675 sleepTime = idleSleepTime;
4676 }
4677 } else if (mBytesWritten != 0) {
4678 if (mMixerStatus == MIXER_TRACKS_ENABLED) {
4679 writeFrames = mNormalFrameCount;
Andy Hung25c2dac2014-02-27 14:56:00 -08004680 memset(mSinkBuffer, 0, mSinkBufferSize);
Eric Laurent81784c32012-11-19 14:55:58 -08004681 } else {
4682 // flush remaining overflow buffers in output tracks
4683 writeFrames = 0;
4684 }
4685 sleepTime = 0;
4686 }
4687}
4688
Eric Laurentbfb1b832013-01-07 09:53:42 -08004689ssize_t AudioFlinger::DuplicatingThread::threadLoop_write()
Eric Laurent81784c32012-11-19 14:55:58 -08004690{
4691 for (size_t i = 0; i < outputTracks.size(); i++) {
Andy Hung010a1a12014-03-13 13:57:33 -07004692 // We convert the duplicating thread format to AUDIO_FORMAT_PCM_16_BIT
4693 // for delivery downstream as needed. This in-place conversion is safe as
4694 // AUDIO_FORMAT_PCM_16_BIT is smaller than any other supported format
4695 // (AUDIO_FORMAT_PCM_8_BIT is not allowed here).
4696 if (mFormat != AUDIO_FORMAT_PCM_16_BIT) {
4697 memcpy_by_audio_format(mSinkBuffer, AUDIO_FORMAT_PCM_16_BIT,
4698 mSinkBuffer, mFormat, writeFrames * mChannelCount);
4699 }
4700 outputTracks[i]->write(reinterpret_cast<int16_t*>(mSinkBuffer), writeFrames);
Eric Laurent81784c32012-11-19 14:55:58 -08004701 }
Eric Laurent2c3740f2013-10-30 16:57:06 -07004702 mStandby = false;
Andy Hung25c2dac2014-02-27 14:56:00 -08004703 return (ssize_t)mSinkBufferSize;
Eric Laurent81784c32012-11-19 14:55:58 -08004704}
4705
4706void AudioFlinger::DuplicatingThread::threadLoop_standby()
4707{
4708 // DuplicatingThread implements standby by stopping all tracks
4709 for (size_t i = 0; i < outputTracks.size(); i++) {
4710 outputTracks[i]->stop();
4711 }
4712}
4713
4714void AudioFlinger::DuplicatingThread::saveOutputTracks()
4715{
4716 outputTracks = mOutputTracks;
4717}
4718
4719void AudioFlinger::DuplicatingThread::clearOutputTracks()
4720{
4721 outputTracks.clear();
4722}
4723
4724void AudioFlinger::DuplicatingThread::addOutputTrack(MixerThread *thread)
4725{
4726 Mutex::Autolock _l(mLock);
4727 // FIXME explain this formula
4728 size_t frameCount = (3 * mNormalFrameCount * mSampleRate) / thread->sampleRate();
Andy Hung010a1a12014-03-13 13:57:33 -07004729 // OutputTrack is forced to AUDIO_FORMAT_PCM_16_BIT regardless of mFormat
4730 // due to current usage case and restrictions on the AudioBufferProvider.
4731 // Actual buffer conversion is done in threadLoop_write().
4732 //
4733 // TODO: This may change in the future, depending on multichannel
4734 // (and non int16_t*) support on AF::PlaybackThread::OutputTrack
Eric Laurent81784c32012-11-19 14:55:58 -08004735 OutputTrack *outputTrack = new OutputTrack(thread,
4736 this,
4737 mSampleRate,
Andy Hung010a1a12014-03-13 13:57:33 -07004738 AUDIO_FORMAT_PCM_16_BIT,
Eric Laurent81784c32012-11-19 14:55:58 -08004739 mChannelMask,
Marco Nelissen462fd2f2013-01-14 14:12:05 -08004740 frameCount,
4741 IPCThreadState::self()->getCallingUid());
Eric Laurent81784c32012-11-19 14:55:58 -08004742 if (outputTrack->cblk() != NULL) {
4743 thread->setStreamVolume(AUDIO_STREAM_CNT, 1.0f);
4744 mOutputTracks.add(outputTrack);
4745 ALOGV("addOutputTrack() track %p, on thread %p", outputTrack, thread);
4746 updateWaitTime_l();
4747 }
4748}
4749
4750void AudioFlinger::DuplicatingThread::removeOutputTrack(MixerThread *thread)
4751{
4752 Mutex::Autolock _l(mLock);
4753 for (size_t i = 0; i < mOutputTracks.size(); i++) {
4754 if (mOutputTracks[i]->thread() == thread) {
4755 mOutputTracks[i]->destroy();
4756 mOutputTracks.removeAt(i);
4757 updateWaitTime_l();
4758 return;
4759 }
4760 }
4761 ALOGV("removeOutputTrack(): unkonwn thread: %p", thread);
4762}
4763
4764// caller must hold mLock
4765void AudioFlinger::DuplicatingThread::updateWaitTime_l()
4766{
4767 mWaitTimeMs = UINT_MAX;
4768 for (size_t i = 0; i < mOutputTracks.size(); i++) {
4769 sp<ThreadBase> strong = mOutputTracks[i]->thread().promote();
4770 if (strong != 0) {
4771 uint32_t waitTimeMs = (strong->frameCount() * 2 * 1000) / strong->sampleRate();
4772 if (waitTimeMs < mWaitTimeMs) {
4773 mWaitTimeMs = waitTimeMs;
4774 }
4775 }
4776 }
4777}
4778
4779
4780bool AudioFlinger::DuplicatingThread::outputsReady(
4781 const SortedVector< sp<OutputTrack> > &outputTracks)
4782{
4783 for (size_t i = 0; i < outputTracks.size(); i++) {
4784 sp<ThreadBase> thread = outputTracks[i]->thread().promote();
4785 if (thread == 0) {
4786 ALOGW("DuplicatingThread::outputsReady() could not promote thread on output track %p",
4787 outputTracks[i].get());
4788 return false;
4789 }
4790 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
4791 // see note at standby() declaration
4792 if (playbackThread->standby() && !playbackThread->isSuspended()) {
4793 ALOGV("DuplicatingThread output track %p on thread %p Not Ready", outputTracks[i].get(),
4794 thread.get());
4795 return false;
4796 }
4797 }
4798 return true;
4799}
4800
4801uint32_t AudioFlinger::DuplicatingThread::activeSleepTimeUs() const
4802{
4803 return (mWaitTimeMs * 1000) / 2;
4804}
4805
4806void AudioFlinger::DuplicatingThread::cacheParameters_l()
4807{
4808 // updateWaitTime_l() sets mWaitTimeMs, which affects activeSleepTimeUs(), so call it first
4809 updateWaitTime_l();
4810
4811 MixerThread::cacheParameters_l();
4812}
4813
4814// ----------------------------------------------------------------------------
4815// Record
4816// ----------------------------------------------------------------------------
4817
4818AudioFlinger::RecordThread::RecordThread(const sp<AudioFlinger>& audioFlinger,
4819 AudioStreamIn *input,
Eric Laurent81784c32012-11-19 14:55:58 -08004820 audio_io_handle_t id,
Eric Laurentd3922f72013-02-01 17:57:04 -08004821 audio_devices_t outDevice,
Glenn Kasten46909e72013-02-26 09:20:22 -08004822 audio_devices_t inDevice
4823#ifdef TEE_SINK
4824 , const sp<NBAIO_Sink>& teeSink
4825#endif
4826 ) :
Eric Laurentd3922f72013-02-01 17:57:04 -08004827 ThreadBase(audioFlinger, id, outDevice, inDevice, RECORD),
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08004828 mInput(input), mActiveTracksGen(0), mRsmpInBuffer(NULL),
Glenn Kastendeca2ae2014-02-07 10:25:56 -08004829 // mRsmpInFrames and mRsmpInFramesP2 are set by readInputParameters_l()
Glenn Kasten4cc0a6a2014-02-17 14:31:46 -08004830 mRsmpInRear(0)
Glenn Kasten46909e72013-02-26 09:20:22 -08004831#ifdef TEE_SINK
4832 , mTeeSink(teeSink)
4833#endif
Glenn Kastenb880f5e2014-05-07 08:43:45 -07004834 , mReadOnlyHeap(new MemoryDealer(kRecordThreadReadOnlyHeapSize,
4835 "RecordThreadRO", MemoryHeapBase::READ_ONLY))
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07004836 // mFastCapture below
4837 , mFastCaptureFutex(0)
4838 // mInputSource
4839 // mPipeSink
4840 // mPipeSource
4841 , mPipeFramesP2(0)
4842 // mPipeMemory
4843 // mFastCaptureNBLogWriter
Glenn Kasten6e6704c2014-07-03 10:20:00 -07004844 , mFastTrackAvail(false)
Eric Laurent81784c32012-11-19 14:55:58 -08004845{
4846 snprintf(mName, kNameLength, "AudioIn_%X", id);
Glenn Kasten481fb672013-09-30 14:39:28 -07004847 mNBLogWriter = audioFlinger->newWriter_l(kLogSize, mName);
Eric Laurent81784c32012-11-19 14:55:58 -08004848
Glenn Kastendeca2ae2014-02-07 10:25:56 -08004849 readInputParameters_l();
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07004850
4851 // create an NBAIO source for the HAL input stream, and negotiate
4852 mInputSource = new AudioStreamInSource(input->stream);
4853 size_t numCounterOffers = 0;
4854 const NBAIO_Format offers[1] = {Format_from_SR_C(mSampleRate, mChannelCount, mFormat)};
4855 ssize_t index = mInputSource->negotiate(offers, 1, NULL, numCounterOffers);
4856 ALOG_ASSERT(index == 0);
4857
4858 // initialize fast capture depending on configuration
4859 bool initFastCapture;
4860 switch (kUseFastCapture) {
4861 case FastCapture_Never:
4862 initFastCapture = false;
4863 break;
4864 case FastCapture_Always:
4865 initFastCapture = true;
4866 break;
4867 case FastCapture_Static:
4868 uint32_t primaryOutputSampleRate;
4869 {
4870 AutoMutex _l(audioFlinger->mHardwareLock);
4871 primaryOutputSampleRate = audioFlinger->mPrimaryOutputSampleRate;
4872 }
4873 initFastCapture =
4874 // either capture sample rate is same as (a reasonable) primary output sample rate
4875 (((primaryOutputSampleRate == 44100 || primaryOutputSampleRate == 48000) &&
4876 (mSampleRate == primaryOutputSampleRate)) ||
4877 // or primary output sample rate is unknown, and capture sample rate is reasonable
4878 ((primaryOutputSampleRate == 0) &&
4879 ((mSampleRate == 44100 || mSampleRate == 48000)))) &&
Glenn Kasten9f81de32014-07-27 15:02:23 -07004880 // and the buffer size is < 12 ms
4881 (mFrameCount * 1000) / mSampleRate < 12;
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07004882 break;
4883 // case FastCapture_Dynamic:
4884 }
4885
4886 if (initFastCapture) {
4887 // create a Pipe for FastMixer to write to, and for us and fast tracks to read from
4888 NBAIO_Format format = mInputSource->format();
Glenn Kasten49d00ad2014-07-21 11:22:03 -07004889 size_t pipeFramesP2 = roundup(mSampleRate / 25); // double-buffering of 20 ms each
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07004890 size_t pipeSize = pipeFramesP2 * Format_frameSize(format);
4891 void *pipeBuffer;
4892 const sp<MemoryDealer> roHeap(readOnlyHeap());
4893 sp<IMemory> pipeMemory;
4894 if ((roHeap == 0) ||
4895 (pipeMemory = roHeap->allocate(pipeSize)) == 0 ||
4896 (pipeBuffer = pipeMemory->pointer()) == NULL) {
4897 ALOGE("not enough memory for pipe buffer size=%zu", pipeSize);
4898 goto failed;
4899 }
4900 // pipe will be shared directly with fast clients, so clear to avoid leaking old information
4901 memset(pipeBuffer, 0, pipeSize);
4902 Pipe *pipe = new Pipe(pipeFramesP2, format, pipeBuffer);
4903 const NBAIO_Format offers[1] = {format};
4904 size_t numCounterOffers = 0;
4905 ssize_t index = pipe->negotiate(offers, 1, NULL, numCounterOffers);
4906 ALOG_ASSERT(index == 0);
4907 mPipeSink = pipe;
4908 PipeReader *pipeReader = new PipeReader(*pipe);
4909 numCounterOffers = 0;
4910 index = pipeReader->negotiate(offers, 1, NULL, numCounterOffers);
4911 ALOG_ASSERT(index == 0);
4912 mPipeSource = pipeReader;
4913 mPipeFramesP2 = pipeFramesP2;
4914 mPipeMemory = pipeMemory;
4915
4916 // create fast capture
4917 mFastCapture = new FastCapture();
4918 FastCaptureStateQueue *sq = mFastCapture->sq();
4919#ifdef STATE_QUEUE_DUMP
4920 // FIXME
4921#endif
4922 FastCaptureState *state = sq->begin();
4923 state->mCblk = NULL;
4924 state->mInputSource = mInputSource.get();
4925 state->mInputSourceGen++;
4926 state->mPipeSink = pipe;
4927 state->mPipeSinkGen++;
4928 state->mFrameCount = mFrameCount;
4929 state->mCommand = FastCaptureState::COLD_IDLE;
4930 // already done in constructor initialization list
4931 //mFastCaptureFutex = 0;
4932 state->mColdFutexAddr = &mFastCaptureFutex;
4933 state->mColdGen++;
4934 state->mDumpState = &mFastCaptureDumpState;
4935#ifdef TEE_SINK
4936 // FIXME
4937#endif
4938 mFastCaptureNBLogWriter = audioFlinger->newWriter_l(kFastCaptureLogSize, "FastCapture");
4939 state->mNBLogWriter = mFastCaptureNBLogWriter.get();
4940 sq->end();
4941 sq->push(FastCaptureStateQueue::BLOCK_UNTIL_PUSHED);
4942
4943 // start the fast capture
4944 mFastCapture->run("FastCapture", ANDROID_PRIORITY_URGENT_AUDIO);
4945 pid_t tid = mFastCapture->getTid();
4946 int err = requestPriority(getpid_cached, tid, kPriorityFastMixer);
4947 if (err != 0) {
4948 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
4949 kPriorityFastCapture, getpid_cached, tid, err);
4950 }
4951
4952#ifdef AUDIO_WATCHDOG
4953 // FIXME
4954#endif
4955
Glenn Kasten6e6704c2014-07-03 10:20:00 -07004956 mFastTrackAvail = true;
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07004957 }
4958failed: ;
4959
4960 // FIXME mNormalSource
Eric Laurent81784c32012-11-19 14:55:58 -08004961}
4962
4963
4964AudioFlinger::RecordThread::~RecordThread()
4965{
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07004966 if (mFastCapture != 0) {
4967 FastCaptureStateQueue *sq = mFastCapture->sq();
4968 FastCaptureState *state = sq->begin();
4969 if (state->mCommand == FastCaptureState::COLD_IDLE) {
4970 int32_t old = android_atomic_inc(&mFastCaptureFutex);
4971 if (old == -1) {
4972 (void) syscall(__NR_futex, &mFastCaptureFutex, FUTEX_WAKE_PRIVATE, 1);
4973 }
4974 }
4975 state->mCommand = FastCaptureState::EXIT;
4976 sq->end();
4977 sq->push(FastCaptureStateQueue::BLOCK_UNTIL_PUSHED);
4978 mFastCapture->join();
4979 mFastCapture.clear();
4980 }
4981 mAudioFlinger->unregisterWriter(mFastCaptureNBLogWriter);
Glenn Kasten481fb672013-09-30 14:39:28 -07004982 mAudioFlinger->unregisterWriter(mNBLogWriter);
Eric Laurent81784c32012-11-19 14:55:58 -08004983 delete[] mRsmpInBuffer;
Eric Laurent81784c32012-11-19 14:55:58 -08004984}
4985
4986void AudioFlinger::RecordThread::onFirstRef()
4987{
4988 run(mName, PRIORITY_URGENT_AUDIO);
4989}
4990
Eric Laurent81784c32012-11-19 14:55:58 -08004991bool AudioFlinger::RecordThread::threadLoop()
4992{
Eric Laurent81784c32012-11-19 14:55:58 -08004993 nsecs_t lastWarning = 0;
4994
4995 inputStandBy();
Eric Laurent81784c32012-11-19 14:55:58 -08004996
Glenn Kastenf10ffec2013-11-20 16:40:08 -08004997reacquire_wakelock:
4998 sp<RecordTrack> activeTrack;
Glenn Kasten2b806402013-11-20 16:37:38 -08004999 int activeTracksGen;
Glenn Kastenf10ffec2013-11-20 16:40:08 -08005000 {
5001 Mutex::Autolock _l(mLock);
Glenn Kasten2b806402013-11-20 16:37:38 -08005002 size_t size = mActiveTracks.size();
5003 activeTracksGen = mActiveTracksGen;
5004 if (size > 0) {
5005 // FIXME an arbitrary choice
5006 activeTrack = mActiveTracks[0];
5007 acquireWakeLock_l(activeTrack->uid());
5008 if (size > 1) {
5009 SortedVector<int> tmp;
5010 for (size_t i = 0; i < size; i++) {
5011 tmp.add(mActiveTracks[i]->uid());
5012 }
5013 updateWakeLockUids_l(tmp);
5014 }
5015 } else {
5016 acquireWakeLock_l(-1);
5017 }
Glenn Kastenf10ffec2013-11-20 16:40:08 -08005018 }
5019
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005020 // used to request a deferred sleep, to be executed later while mutex is unlocked
5021 uint32_t sleepUs = 0;
5022
5023 // loop while there is work to do
Glenn Kasten4ef0b462013-08-14 13:52:27 -07005024 for (;;) {
Glenn Kastenc527a7c2013-08-13 15:43:49 -07005025 Vector< sp<EffectChain> > effectChains;
Glenn Kasten2cfbf882013-08-14 13:12:11 -07005026
Glenn Kasten5edadd42013-08-14 16:30:49 -07005027 // sleep with mutex unlocked
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005028 if (sleepUs > 0) {
5029 usleep(sleepUs);
5030 sleepUs = 0;
Glenn Kasten5edadd42013-08-14 16:30:49 -07005031 }
5032
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005033 // activeTracks accumulates a copy of a subset of mActiveTracks
5034 Vector< sp<RecordTrack> > activeTracks;
5035
Glenn Kasten735f45f2014-08-18 15:51:59 -07005036 // reference to the (first and only) active fast track
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005037 sp<RecordTrack> fastTrack;
Eric Laurent10351942014-05-08 18:49:52 -07005038
Glenn Kasten735f45f2014-08-18 15:51:59 -07005039 // reference to a fast track which is about to be removed
5040 sp<RecordTrack> fastTrackToRemove;
5041
Eric Laurent81784c32012-11-19 14:55:58 -08005042 { // scope for mLock
5043 Mutex::Autolock _l(mLock);
Eric Laurent000a4192014-01-29 15:17:32 -08005044
Eric Laurent021cf962014-05-13 10:18:14 -07005045 processConfigEvents_l();
Glenn Kastenf10ffec2013-11-20 16:40:08 -08005046
Eric Laurent000a4192014-01-29 15:17:32 -08005047 // check exitPending here because checkForNewParameters_l() and
5048 // checkForNewParameters_l() can temporarily release mLock
5049 if (exitPending()) {
5050 break;
5051 }
5052
Glenn Kasten2b806402013-11-20 16:37:38 -08005053 // if no active track(s), then standby and release wakelock
5054 size_t size = mActiveTracks.size();
5055 if (size == 0) {
Glenn Kasten93e471f2013-08-19 08:40:07 -07005056 standbyIfNotAlreadyInStandby();
Glenn Kasten4ef0b462013-08-14 13:52:27 -07005057 // exitPending() can't become true here
Eric Laurent81784c32012-11-19 14:55:58 -08005058 releaseWakeLock_l();
5059 ALOGV("RecordThread: loop stopping");
5060 // go to sleep
5061 mWaitWorkCV.wait(mLock);
5062 ALOGV("RecordThread: loop starting");
Glenn Kastenf10ffec2013-11-20 16:40:08 -08005063 goto reacquire_wakelock;
5064 }
5065
Glenn Kasten2b806402013-11-20 16:37:38 -08005066 if (mActiveTracksGen != activeTracksGen) {
5067 activeTracksGen = mActiveTracksGen;
Glenn Kastenf10ffec2013-11-20 16:40:08 -08005068 SortedVector<int> tmp;
Glenn Kasten2b806402013-11-20 16:37:38 -08005069 for (size_t i = 0; i < size; i++) {
5070 tmp.add(mActiveTracks[i]->uid());
5071 }
Glenn Kastenf10ffec2013-11-20 16:40:08 -08005072 updateWakeLockUids_l(tmp);
Eric Laurent81784c32012-11-19 14:55:58 -08005073 }
Glenn Kasten9e982352013-08-14 14:39:50 -07005074
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005075 bool doBroadcast = false;
5076 for (size_t i = 0; i < size; ) {
Glenn Kasten9e982352013-08-14 14:39:50 -07005077
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005078 activeTrack = mActiveTracks[i];
5079 if (activeTrack->isTerminated()) {
Glenn Kasten735f45f2014-08-18 15:51:59 -07005080 if (activeTrack->isFastTrack()) {
5081 ALOG_ASSERT(fastTrackToRemove == 0);
5082 fastTrackToRemove = activeTrack;
5083 }
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005084 removeTrack_l(activeTrack);
Glenn Kasten2b806402013-11-20 16:37:38 -08005085 mActiveTracks.remove(activeTrack);
5086 mActiveTracksGen++;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005087 size--;
Glenn Kasten9e982352013-08-14 14:39:50 -07005088 continue;
5089 }
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005090
5091 TrackBase::track_state activeTrackState = activeTrack->mState;
5092 switch (activeTrackState) {
5093
5094 case TrackBase::PAUSING:
5095 mActiveTracks.remove(activeTrack);
5096 mActiveTracksGen++;
5097 doBroadcast = true;
5098 size--;
5099 continue;
5100
5101 case TrackBase::STARTING_1:
5102 sleepUs = 10000;
5103 i++;
5104 continue;
5105
5106 case TrackBase::STARTING_2:
5107 doBroadcast = true;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005108 mStandby = false;
Glenn Kasten9e982352013-08-14 14:39:50 -07005109 activeTrack->mState = TrackBase::ACTIVE;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005110 break;
5111
5112 case TrackBase::ACTIVE:
5113 break;
5114
5115 case TrackBase::IDLE:
5116 i++;
5117 continue;
5118
5119 default:
Glenn Kastenadad3d72014-02-21 14:51:43 -08005120 LOG_ALWAYS_FATAL("Unexpected activeTrackState %d", activeTrackState);
Glenn Kasten9e982352013-08-14 14:39:50 -07005121 }
Glenn Kasten9e982352013-08-14 14:39:50 -07005122
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005123 activeTracks.add(activeTrack);
5124 i++;
Glenn Kasten9e982352013-08-14 14:39:50 -07005125
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005126 if (activeTrack->isFastTrack()) {
5127 ALOG_ASSERT(!mFastTrackAvail);
5128 ALOG_ASSERT(fastTrack == 0);
5129 fastTrack = activeTrack;
5130 }
Glenn Kasten9e982352013-08-14 14:39:50 -07005131 }
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005132 if (doBroadcast) {
5133 mStartStopCond.broadcast();
5134 }
5135
5136 // sleep if there are no active tracks to process
5137 if (activeTracks.size() == 0) {
5138 if (sleepUs == 0) {
5139 sleepUs = kRecordThreadSleepUs;
5140 }
5141 continue;
5142 }
5143 sleepUs = 0;
Glenn Kasten9e982352013-08-14 14:39:50 -07005144
Eric Laurent81784c32012-11-19 14:55:58 -08005145 lockEffectChains_l(effectChains);
5146 }
5147
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005148 // thread mutex is now unlocked, mActiveTracks unknown, activeTracks.size() > 0
Glenn Kasten71652682013-08-14 15:17:55 -07005149
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005150 size_t size = effectChains.size();
5151 for (size_t i = 0; i < size; i++) {
Glenn Kasten1ba19cd2013-08-14 14:02:21 -07005152 // thread mutex is not locked, but effect chain is locked
5153 effectChains[i]->process_l();
5154 }
5155
Glenn Kasten735f45f2014-08-18 15:51:59 -07005156 // Push a new fast capture state if fast capture is not already running, or cblk change
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005157 if (mFastCapture != 0) {
5158 FastCaptureStateQueue *sq = mFastCapture->sq();
5159 FastCaptureState *state = sq->begin();
Glenn Kasten735f45f2014-08-18 15:51:59 -07005160 bool didModify = false;
5161 FastCaptureStateQueue::block_t block = FastCaptureStateQueue::BLOCK_UNTIL_PUSHED;
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005162 if (state->mCommand != FastCaptureState::READ_WRITE /* FIXME &&
5163 (kUseFastMixer != FastMixer_Dynamic || state->mTrackMask > 1)*/) {
5164 if (state->mCommand == FastCaptureState::COLD_IDLE) {
5165 int32_t old = android_atomic_inc(&mFastCaptureFutex);
5166 if (old == -1) {
5167 (void) syscall(__NR_futex, &mFastCaptureFutex, FUTEX_WAKE_PRIVATE, 1);
5168 }
5169 }
5170 state->mCommand = FastCaptureState::READ_WRITE;
5171#if 0 // FIXME
5172 mFastCaptureDumpState.increaseSamplingN(mAudioFlinger->isLowRamDevice() ?
5173 FastCaptureDumpState::kSamplingNforLowRamDevice : FastMixerDumpState::kSamplingN);
5174#endif
Glenn Kasten735f45f2014-08-18 15:51:59 -07005175 didModify = true;
5176 }
5177 audio_track_cblk_t *cblkOld = state->mCblk;
5178 audio_track_cblk_t *cblkNew = fastTrack != 0 ? fastTrack->cblk() : NULL;
5179 if (cblkNew != cblkOld) {
5180 state->mCblk = cblkNew;
5181 // block until acked if removing a fast track
5182 if (cblkOld != NULL) {
5183 block = FastCaptureStateQueue::BLOCK_UNTIL_ACKED;
5184 }
5185 didModify = true;
5186 }
5187 sq->end(didModify);
5188 if (didModify) {
5189 sq->push(block);
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005190#if 0
5191 if (kUseFastCapture == FastCapture_Dynamic) {
5192 mNormalSource = mPipeSource;
5193 }
5194#endif
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005195 }
5196 }
5197
Glenn Kasten735f45f2014-08-18 15:51:59 -07005198 // now run the fast track destructor with thread mutex unlocked
5199 fastTrackToRemove.clear();
5200
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005201 // Read from HAL to keep up with fastest client if multiple active tracks, not slowest one.
5202 // Only the client(s) that are too slow will overrun. But if even the fastest client is too
5203 // slow, then this RecordThread will overrun by not calling HAL read often enough.
5204 // If destination is non-contiguous, first read past the nominal end of buffer, then
5205 // copy to the right place. Permitted because mRsmpInBuffer was over-allocated.
Glenn Kasten1ba19cd2013-08-14 14:02:21 -07005206
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005207 int32_t rear = mRsmpInRear & (mRsmpInFramesP2 - 1);
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005208 ssize_t framesRead;
5209
5210 // If an NBAIO source is present, use it to read the normal capture's data
5211 if (mPipeSource != 0) {
5212 size_t framesToRead = mBufferSize / mFrameSize;
5213 framesRead = mPipeSource->read(&mRsmpInBuffer[rear * mChannelCount],
5214 framesToRead, AudioBufferProvider::kInvalidPTS);
5215 if (framesRead == 0) {
5216 // since pipe is non-blocking, simulate blocking input
5217 sleepUs = (framesToRead * 1000000LL) / mSampleRate;
5218 }
5219 // otherwise use the HAL / AudioStreamIn directly
5220 } else {
5221 ssize_t bytesRead = mInput->stream->read(mInput->stream,
5222 &mRsmpInBuffer[rear * mChannelCount], mBufferSize);
5223 if (bytesRead < 0) {
5224 framesRead = bytesRead;
5225 } else {
5226 framesRead = bytesRead / mFrameSize;
5227 }
5228 }
5229
5230 if (framesRead < 0 || (framesRead == 0 && mPipeSource == 0)) {
5231 ALOGE("read failed: framesRead=%d", framesRead);
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005232 // Force input into standby so that it tries to recover at next read attempt
5233 inputStandBy();
5234 sleepUs = kRecordThreadSleepUs;
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005235 }
5236 if (framesRead <= 0) {
Glenn Kasten3d61bc12014-06-16 10:25:20 -07005237 goto unlock;
Glenn Kasten1ba19cd2013-08-14 14:02:21 -07005238 }
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005239 ALOG_ASSERT(framesRead > 0);
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005240
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005241 if (mTeeSink != 0) {
5242 (void) mTeeSink->write(&mRsmpInBuffer[rear * mChannelCount], framesRead);
5243 }
5244 // If destination is non-contiguous, we now correct for reading past end of buffer.
Glenn Kasten3d61bc12014-06-16 10:25:20 -07005245 {
5246 size_t part1 = mRsmpInFramesP2 - rear;
5247 if ((size_t) framesRead > part1) {
5248 memcpy(mRsmpInBuffer, &mRsmpInBuffer[mRsmpInFramesP2 * mChannelCount],
5249 (framesRead - part1) * mFrameSize);
5250 }
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005251 }
5252 rear = mRsmpInRear += framesRead;
5253
5254 size = activeTracks.size();
5255 // loop over each active track
5256 for (size_t i = 0; i < size; i++) {
5257 activeTrack = activeTracks[i];
5258
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005259 // skip fast tracks, as those are handled directly by FastCapture
5260 if (activeTrack->isFastTrack()) {
5261 continue;
5262 }
5263
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005264 enum {
5265 OVERRUN_UNKNOWN,
5266 OVERRUN_TRUE,
5267 OVERRUN_FALSE
5268 } overrun = OVERRUN_UNKNOWN;
5269
5270 // loop over getNextBuffer to handle circular sink
5271 for (;;) {
5272
5273 activeTrack->mSink.frameCount = ~0;
5274 status_t status = activeTrack->getNextBuffer(&activeTrack->mSink);
5275 size_t framesOut = activeTrack->mSink.frameCount;
5276 LOG_ALWAYS_FATAL_IF((status == OK) != (framesOut > 0));
5277
5278 int32_t front = activeTrack->mRsmpInFront;
5279 ssize_t filled = rear - front;
5280 size_t framesIn;
5281
5282 if (filled < 0) {
5283 // should not happen, but treat like a massive overrun and re-sync
5284 framesIn = 0;
5285 activeTrack->mRsmpInFront = rear;
5286 overrun = OVERRUN_TRUE;
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005287 } else if ((size_t) filled <= mRsmpInFrames) {
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005288 framesIn = (size_t) filled;
5289 } else {
5290 // client is not keeping up with server, but give it latest data
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005291 framesIn = mRsmpInFrames;
5292 activeTrack->mRsmpInFront = front = rear - framesIn;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005293 overrun = OVERRUN_TRUE;
5294 }
5295
Glenn Kasten4cc0a6a2014-02-17 14:31:46 -08005296 if (framesOut == 0 || framesIn == 0) {
5297 break;
5298 }
5299
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005300 if (activeTrack->mResampler == NULL) {
5301 // no resampling
5302 if (framesIn > framesOut) {
5303 framesIn = framesOut;
5304 } else {
5305 framesOut = framesIn;
5306 }
5307 int8_t *dst = activeTrack->mSink.i8;
5308 while (framesIn > 0) {
5309 front &= mRsmpInFramesP2 - 1;
5310 size_t part1 = mRsmpInFramesP2 - front;
5311 if (part1 > framesIn) {
5312 part1 = framesIn;
5313 }
5314 int8_t *src = (int8_t *)mRsmpInBuffer + (front * mFrameSize);
Glenn Kasten4cc0a6a2014-02-17 14:31:46 -08005315 if (mChannelCount == activeTrack->mChannelCount) {
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005316 memcpy(dst, src, part1 * mFrameSize);
5317 } else if (mChannelCount == 1) {
Glenn Kastencd704212014-07-14 17:26:36 -07005318 upmix_to_stereo_i16_from_mono_i16((int16_t *)dst, (const int16_t *)src,
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005319 part1);
5320 } else {
Glenn Kastencd704212014-07-14 17:26:36 -07005321 downmix_to_mono_i16_from_stereo_i16((int16_t *)dst, (const int16_t *)src,
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005322 part1);
5323 }
5324 dst += part1 * activeTrack->mFrameSize;
5325 front += part1;
5326 framesIn -= part1;
5327 }
5328 activeTrack->mRsmpInFront += framesOut;
5329
5330 } else {
5331 // resampling
5332 // FIXME framesInNeeded should really be part of resampler API, and should
5333 // depend on the SRC ratio
5334 // to keep mRsmpInBuffer full so resampler always has sufficient input
5335 size_t framesInNeeded;
5336 // FIXME only re-calculate when it changes, and optimize for common ratios
Andy Hung8661aaf2014-07-28 14:38:41 -07005337 // Do not precompute in/out because floating point is not associative
5338 // e.g. a*b/c != a*(b/c).
5339 const double in(mSampleRate);
5340 const double out(activeTrack->mSampleRate);
5341 framesInNeeded = ceil(framesOut * in / out) + 1;
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005342 ALOGV("need %u frames in to produce %u out given in/out ratio of %.4g",
Andy Hung8661aaf2014-07-28 14:38:41 -07005343 framesInNeeded, framesOut, in / out);
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005344 // Although we theoretically have framesIn in circular buffer, some of those are
5345 // unreleased frames, and thus must be discounted for purpose of budgeting.
5346 size_t unreleased = activeTrack->mRsmpInUnrel;
5347 framesIn = framesIn > unreleased ? framesIn - unreleased : 0;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005348 if (framesIn < framesInNeeded) {
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005349 ALOGV("not enough to resample: have %u frames in but need %u in to "
5350 "produce %u out given in/out ratio of %.4g",
Andy Hung8661aaf2014-07-28 14:38:41 -07005351 framesIn, framesInNeeded, framesOut, in / out);
5352 size_t newFramesOut = framesIn > 0 ? floor((framesIn - 1) * out / in) : 0;
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005353 LOG_ALWAYS_FATAL_IF(newFramesOut >= framesOut);
5354 if (newFramesOut == 0) {
5355 break;
Glenn Kasten4cc0a6a2014-02-17 14:31:46 -08005356 }
Andy Hung8661aaf2014-07-28 14:38:41 -07005357 framesInNeeded = ceil(newFramesOut * in / out) + 1;
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005358 ALOGV("now need %u frames in to produce %u out given out/in ratio of %.4g",
Andy Hung8661aaf2014-07-28 14:38:41 -07005359 framesInNeeded, newFramesOut, out / in);
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005360 LOG_ALWAYS_FATAL_IF(framesIn < framesInNeeded);
5361 ALOGV("success 2: have %u frames in and need %u in to produce %u out "
5362 "given in/out ratio of %.4g",
Andy Hung8661aaf2014-07-28 14:38:41 -07005363 framesIn, framesInNeeded, newFramesOut, in / out);
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005364 framesOut = newFramesOut;
Glenn Kasten4cc0a6a2014-02-17 14:31:46 -08005365 } else {
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005366 ALOGV("success 1: have %u in and need %u in to produce %u out "
Glenn Kasten4cc0a6a2014-02-17 14:31:46 -08005367 "given in/out ratio of %.4g",
Andy Hung8661aaf2014-07-28 14:38:41 -07005368 framesIn, framesInNeeded, framesOut, in / out);
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005369 }
5370
5371 // reallocate mRsmpOutBuffer as needed; we will grow but never shrink
5372 if (activeTrack->mRsmpOutFrameCount < framesOut) {
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005373 // FIXME why does each track need it's own mRsmpOutBuffer? can't they share?
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005374 delete[] activeTrack->mRsmpOutBuffer;
5375 // resampler always outputs stereo
5376 activeTrack->mRsmpOutBuffer = new int32_t[framesOut * FCC_2];
5377 activeTrack->mRsmpOutFrameCount = framesOut;
5378 }
5379
5380 // resampler accumulates, but we only have one source track
5381 memset(activeTrack->mRsmpOutBuffer, 0, framesOut * FCC_2 * sizeof(int32_t));
5382 activeTrack->mResampler->resample(activeTrack->mRsmpOutBuffer, framesOut,
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005383 // FIXME how about having activeTrack implement this interface itself?
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005384 activeTrack->mResamplerBufferProvider
5385 /*this*/ /* AudioBufferProvider* */);
5386 // ditherAndClamp() works as long as all buffers returned by
5387 // activeTrack->getNextBuffer() are 32 bit aligned which should be always true.
Glenn Kasten4cc0a6a2014-02-17 14:31:46 -08005388 if (activeTrack->mChannelCount == 1) {
Andy Hung84a0c6e2014-04-02 11:24:53 -07005389 // temporarily type pun mRsmpOutBuffer from Q4.27 to int16_t
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005390 ditherAndClamp(activeTrack->mRsmpOutBuffer, activeTrack->mRsmpOutBuffer,
5391 framesOut);
5392 // the resampler always outputs stereo samples:
5393 // do post stereo to mono conversion
5394 downmix_to_mono_i16_from_stereo_i16(activeTrack->mSink.i16,
Glenn Kastencd704212014-07-14 17:26:36 -07005395 (const int16_t *)activeTrack->mRsmpOutBuffer, framesOut);
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005396 } else {
5397 ditherAndClamp((int32_t *)activeTrack->mSink.raw,
5398 activeTrack->mRsmpOutBuffer, framesOut);
5399 }
5400 // now done with mRsmpOutBuffer
5401
5402 }
5403
5404 if (framesOut > 0 && (overrun == OVERRUN_UNKNOWN)) {
5405 overrun = OVERRUN_FALSE;
5406 }
5407
5408 if (activeTrack->mFramesToDrop == 0) {
5409 if (framesOut > 0) {
5410 activeTrack->mSink.frameCount = framesOut;
5411 activeTrack->releaseBuffer(&activeTrack->mSink);
5412 }
5413 } else {
5414 // FIXME could do a partial drop of framesOut
5415 if (activeTrack->mFramesToDrop > 0) {
5416 activeTrack->mFramesToDrop -= framesOut;
5417 if (activeTrack->mFramesToDrop <= 0) {
Glenn Kasten25f4aa82014-02-07 10:50:43 -08005418 activeTrack->clearSyncStartEvent();
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005419 }
5420 } else {
5421 activeTrack->mFramesToDrop += framesOut;
5422 if (activeTrack->mFramesToDrop >= 0 || activeTrack->mSyncStartEvent == 0 ||
5423 activeTrack->mSyncStartEvent->isCancelled()) {
5424 ALOGW("Synced record %s, session %d, trigger session %d",
5425 (activeTrack->mFramesToDrop >= 0) ? "timed out" : "cancelled",
5426 activeTrack->sessionId(),
5427 (activeTrack->mSyncStartEvent != 0) ?
5428 activeTrack->mSyncStartEvent->triggerSession() : 0);
Glenn Kasten25f4aa82014-02-07 10:50:43 -08005429 activeTrack->clearSyncStartEvent();
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005430 }
5431 }
5432 }
5433
5434 if (framesOut == 0) {
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005435 break;
Glenn Kasten1ba19cd2013-08-14 14:02:21 -07005436 }
5437 }
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005438
5439 switch (overrun) {
5440 case OVERRUN_TRUE:
5441 // client isn't retrieving buffers fast enough
5442 if (!activeTrack->setOverflow()) {
5443 nsecs_t now = systemTime();
5444 // FIXME should lastWarning per track?
5445 if ((now - lastWarning) > kWarningThrottleNs) {
5446 ALOGW("RecordThread: buffer overflow");
5447 lastWarning = now;
5448 }
5449 }
5450 break;
5451 case OVERRUN_FALSE:
5452 activeTrack->clearOverflow();
5453 break;
5454 case OVERRUN_UNKNOWN:
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005455 break;
5456 }
5457
Glenn Kasten1ba19cd2013-08-14 14:02:21 -07005458 }
5459
Glenn Kasten3d61bc12014-06-16 10:25:20 -07005460unlock:
Eric Laurent81784c32012-11-19 14:55:58 -08005461 // enable changes in effect chain
5462 unlockEffectChains(effectChains);
Glenn Kastenc527a7c2013-08-13 15:43:49 -07005463 // effectChains doesn't need to be cleared, since it is cleared by destructor at scope end
Eric Laurent81784c32012-11-19 14:55:58 -08005464 }
5465
Glenn Kasten93e471f2013-08-19 08:40:07 -07005466 standbyIfNotAlreadyInStandby();
Eric Laurent81784c32012-11-19 14:55:58 -08005467
5468 {
5469 Mutex::Autolock _l(mLock);
Eric Laurent9a54bc22013-09-09 09:08:44 -07005470 for (size_t i = 0; i < mTracks.size(); i++) {
5471 sp<RecordTrack> track = mTracks[i];
5472 track->invalidate();
5473 }
Glenn Kasten2b806402013-11-20 16:37:38 -08005474 mActiveTracks.clear();
5475 mActiveTracksGen++;
Eric Laurent81784c32012-11-19 14:55:58 -08005476 mStartStopCond.broadcast();
5477 }
5478
5479 releaseWakeLock();
5480
5481 ALOGV("RecordThread %p exiting", this);
5482 return false;
5483}
5484
Glenn Kasten93e471f2013-08-19 08:40:07 -07005485void AudioFlinger::RecordThread::standbyIfNotAlreadyInStandby()
Eric Laurent81784c32012-11-19 14:55:58 -08005486{
5487 if (!mStandby) {
5488 inputStandBy();
5489 mStandby = true;
5490 }
5491}
5492
5493void AudioFlinger::RecordThread::inputStandBy()
5494{
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005495 // Idle the fast capture if it's currently running
5496 if (mFastCapture != 0) {
5497 FastCaptureStateQueue *sq = mFastCapture->sq();
5498 FastCaptureState *state = sq->begin();
5499 if (!(state->mCommand & FastCaptureState::IDLE)) {
5500 state->mCommand = FastCaptureState::COLD_IDLE;
5501 state->mColdFutexAddr = &mFastCaptureFutex;
5502 state->mColdGen++;
5503 mFastCaptureFutex = 0;
5504 sq->end();
5505 // BLOCK_UNTIL_PUSHED would be insufficient, as we need it to stop doing I/O now
5506 sq->push(FastCaptureStateQueue::BLOCK_UNTIL_ACKED);
5507#if 0
5508 if (kUseFastCapture == FastCapture_Dynamic) {
5509 // FIXME
5510 }
5511#endif
5512#ifdef AUDIO_WATCHDOG
5513 // FIXME
5514#endif
5515 } else {
5516 sq->end(false /*didModify*/);
5517 }
5518 }
Eric Laurent81784c32012-11-19 14:55:58 -08005519 mInput->stream->common.standby(&mInput->stream->common);
5520}
5521
Glenn Kasten05997e22014-03-13 15:08:33 -07005522// RecordThread::createRecordTrack_l() must be called with AudioFlinger::mLock held
Glenn Kastene198c362013-08-13 09:13:36 -07005523sp<AudioFlinger::RecordThread::RecordTrack> AudioFlinger::RecordThread::createRecordTrack_l(
Eric Laurent81784c32012-11-19 14:55:58 -08005524 const sp<AudioFlinger::Client>& client,
5525 uint32_t sampleRate,
5526 audio_format_t format,
5527 audio_channel_mask_t channelMask,
Glenn Kasten74935e42013-12-19 08:56:45 -08005528 size_t *pFrameCount,
Eric Laurent81784c32012-11-19 14:55:58 -08005529 int sessionId,
Glenn Kasten7df8c0b2014-07-03 12:23:29 -07005530 size_t *notificationFrames,
Marco Nelissen462fd2f2013-01-14 14:12:05 -08005531 int uid,
Glenn Kastenddb0ccf2013-07-31 16:14:50 -07005532 IAudioFlinger::track_flags_t *flags,
Eric Laurent81784c32012-11-19 14:55:58 -08005533 pid_t tid,
5534 status_t *status)
5535{
Glenn Kasten74935e42013-12-19 08:56:45 -08005536 size_t frameCount = *pFrameCount;
Eric Laurent81784c32012-11-19 14:55:58 -08005537 sp<RecordTrack> track;
5538 status_t lStatus;
5539
Glenn Kasten90e58b12013-07-31 16:16:02 -07005540 // client expresses a preference for FAST, but we get the final say
5541 if (*flags & IAudioFlinger::TRACK_FAST) {
5542 if (
Glenn Kasten74105912014-07-03 12:28:53 -07005543 // use case: callback handler
5544 (tid != -1) &&
5545 // frame count is not specified, or is exactly the pipe depth
5546 ((frameCount == 0) || (frameCount == mPipeFramesP2)) &&
Glenn Kasten3a6c90a2014-03-13 15:07:51 -07005547 // PCM data
5548 audio_is_linear_pcm(format) &&
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005549 // native format
5550 (format == mFormat) &&
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005551 // native channel mask
5552 (channelMask == mChannelMask) &&
5553 // native hardware sample rate
Glenn Kasten90e58b12013-07-31 16:16:02 -07005554 (sampleRate == mSampleRate) &&
Glenn Kasten3a6c90a2014-03-13 15:07:51 -07005555 // record thread has an associated fast capture
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005556 hasFastCapture() &&
5557 // there are sufficient fast track slots available
5558 mFastTrackAvail
Glenn Kasten90e58b12013-07-31 16:16:02 -07005559 ) {
Glenn Kasten74105912014-07-03 12:28:53 -07005560 ALOGV("AUDIO_INPUT_FLAG_FAST accepted: frameCount=%u mFrameCount=%u",
Glenn Kasten90e58b12013-07-31 16:16:02 -07005561 frameCount, mFrameCount);
5562 } else {
Glenn Kasten74105912014-07-03 12:28:53 -07005563 ALOGV("AUDIO_INPUT_FLAG_FAST denied: frameCount=%u mFrameCount=%u mPipeFramesP2=%u "
5564 "format=%#x isLinear=%d channelMask=%#x sampleRate=%u mSampleRate=%u "
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005565 "hasFastCapture=%d tid=%d mFastTrackAvail=%d",
Glenn Kasten74105912014-07-03 12:28:53 -07005566 frameCount, mFrameCount, mPipeFramesP2,
5567 format, audio_is_linear_pcm(format), channelMask, sampleRate, mSampleRate,
5568 hasFastCapture(), tid, mFastTrackAvail);
Glenn Kasten90e58b12013-07-31 16:16:02 -07005569 *flags &= ~IAudioFlinger::TRACK_FAST;
Glenn Kasten74105912014-07-03 12:28:53 -07005570 }
5571 }
5572
5573 // compute track buffer size in frames, and suggest the notification frame count
5574 if (*flags & IAudioFlinger::TRACK_FAST) {
5575 // fast track: frame count is exactly the pipe depth
5576 frameCount = mPipeFramesP2;
5577 // ignore requested notificationFrames, and always notify exactly once every HAL buffer
5578 *notificationFrames = mFrameCount;
5579 } else {
Glenn Kasten49d00ad2014-07-21 11:22:03 -07005580 // not fast track: max notification period is resampled equivalent of one HAL buffer time
5581 // or 20 ms if there is a fast capture
5582 // TODO This could be a roundupRatio inline, and const
5583 size_t maxNotificationFrames = ((int64_t) (hasFastCapture() ? mSampleRate/50 : mFrameCount)
5584 * sampleRate + mSampleRate - 1) / mSampleRate;
5585 // minimum number of notification periods is at least kMinNotifications,
5586 // and at least kMinMs rounded up to a whole notification period (minNotificationsByMs)
5587 static const size_t kMinNotifications = 3;
5588 static const uint32_t kMinMs = 30;
5589 // TODO This could be a roundupRatio inline
5590 const size_t minFramesByMs = (sampleRate * kMinMs + 1000 - 1) / 1000;
5591 // TODO This could be a roundupRatio inline
5592 const size_t minNotificationsByMs = (minFramesByMs + maxNotificationFrames - 1) /
5593 maxNotificationFrames;
5594 const size_t minFrameCount = maxNotificationFrames *
5595 max(kMinNotifications, minNotificationsByMs);
5596 frameCount = max(frameCount, minFrameCount);
5597 if (*notificationFrames == 0 || *notificationFrames > maxNotificationFrames) {
5598 *notificationFrames = maxNotificationFrames;
Glenn Kasten74105912014-07-03 12:28:53 -07005599 }
Glenn Kasten90e58b12013-07-31 16:16:02 -07005600 }
Glenn Kasten74935e42013-12-19 08:56:45 -08005601 *pFrameCount = frameCount;
Glenn Kasten90e58b12013-07-31 16:16:02 -07005602
Glenn Kasten15e57982013-09-24 11:52:37 -07005603 lStatus = initCheck();
5604 if (lStatus != NO_ERROR) {
5605 ALOGE("createRecordTrack_l() audio driver not initialized");
5606 goto Exit;
5607 }
Eric Laurent81784c32012-11-19 14:55:58 -08005608
5609 { // scope for mLock
5610 Mutex::Autolock _l(mLock);
5611
5612 track = new RecordTrack(this, client, sampleRate,
Eric Laurent83b88082014-06-20 18:31:16 -07005613 format, channelMask, frameCount, NULL, sessionId, uid,
5614 *flags, TrackBase::TYPE_DEFAULT);
Eric Laurent81784c32012-11-19 14:55:58 -08005615
Glenn Kasten03003332013-08-06 15:40:54 -07005616 lStatus = track->initCheck();
5617 if (lStatus != NO_ERROR) {
Glenn Kasten35295072013-10-07 09:27:06 -07005618 ALOGE("createRecordTrack_l() initCheck failed %d; no control block?", lStatus);
Haynes Mathew George03e9e832013-12-13 15:40:13 -08005619 // track must be cleared from the caller as the caller has the AF lock
Eric Laurent81784c32012-11-19 14:55:58 -08005620 goto Exit;
5621 }
5622 mTracks.add(track);
5623
5624 // disable AEC and NS if the device is a BT SCO headset supporting those pre processings
5625 bool suspend = audio_is_bluetooth_sco_device(mInDevice) &&
5626 mAudioFlinger->btNrecIsOff();
5627 setEffectSuspended_l(FX_IID_AEC, suspend, sessionId);
5628 setEffectSuspended_l(FX_IID_NS, suspend, sessionId);
Glenn Kasten90e58b12013-07-31 16:16:02 -07005629
5630 if ((*flags & IAudioFlinger::TRACK_FAST) && (tid != -1)) {
5631 pid_t callingPid = IPCThreadState::self()->getCallingPid();
5632 // we don't have CAP_SYS_NICE, nor do we want to have it as it's too powerful,
5633 // so ask activity manager to do this on our behalf
5634 sendPrioConfigEvent_l(callingPid, tid, kPriorityAudioApp);
5635 }
Eric Laurent81784c32012-11-19 14:55:58 -08005636 }
Glenn Kasten05997e22014-03-13 15:08:33 -07005637
Eric Laurent81784c32012-11-19 14:55:58 -08005638 lStatus = NO_ERROR;
5639
5640Exit:
Glenn Kasten9156ef32013-08-06 15:39:08 -07005641 *status = lStatus;
Eric Laurent81784c32012-11-19 14:55:58 -08005642 return track;
5643}
5644
5645status_t AudioFlinger::RecordThread::start(RecordThread::RecordTrack* recordTrack,
5646 AudioSystem::sync_event_t event,
5647 int triggerSession)
5648{
5649 ALOGV("RecordThread::start event %d, triggerSession %d", event, triggerSession);
5650 sp<ThreadBase> strongMe = this;
5651 status_t status = NO_ERROR;
5652
5653 if (event == AudioSystem::SYNC_EVENT_NONE) {
Glenn Kasten25f4aa82014-02-07 10:50:43 -08005654 recordTrack->clearSyncStartEvent();
Eric Laurent81784c32012-11-19 14:55:58 -08005655 } else if (event != AudioSystem::SYNC_EVENT_SAME) {
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005656 recordTrack->mSyncStartEvent = mAudioFlinger->createSyncEvent(event,
Eric Laurent81784c32012-11-19 14:55:58 -08005657 triggerSession,
5658 recordTrack->sessionId(),
5659 syncStartEventCallback,
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005660 recordTrack);
Eric Laurent81784c32012-11-19 14:55:58 -08005661 // Sync event can be cancelled by the trigger session if the track is not in a
5662 // compatible state in which case we start record immediately
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005663 if (recordTrack->mSyncStartEvent->isCancelled()) {
Glenn Kasten25f4aa82014-02-07 10:50:43 -08005664 recordTrack->clearSyncStartEvent();
Eric Laurent81784c32012-11-19 14:55:58 -08005665 } else {
5666 // do not wait for the event for more than AudioSystem::kSyncRecordStartTimeOutMs
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005667 recordTrack->mFramesToDrop = -
Glenn Kasten4cc0a6a2014-02-17 14:31:46 -08005668 ((AudioSystem::kSyncRecordStartTimeOutMs * recordTrack->mSampleRate) / 1000);
Eric Laurent81784c32012-11-19 14:55:58 -08005669 }
5670 }
5671
5672 {
Glenn Kasten47c20702013-08-13 15:37:35 -07005673 // This section is a rendezvous between binder thread executing start() and RecordThread
Eric Laurent81784c32012-11-19 14:55:58 -08005674 AutoMutex lock(mLock);
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005675 if (mActiveTracks.indexOf(recordTrack) >= 0) {
5676 if (recordTrack->mState == TrackBase::PAUSING) {
5677 ALOGV("active record track PAUSING -> ACTIVE");
Glenn Kastenf10ffec2013-11-20 16:40:08 -08005678 recordTrack->mState = TrackBase::ACTIVE;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005679 } else {
5680 ALOGV("active record track state %d", recordTrack->mState);
Eric Laurent81784c32012-11-19 14:55:58 -08005681 }
5682 return status;
5683 }
5684
Glenn Kasten4cc0a6a2014-02-17 14:31:46 -08005685 // TODO consider other ways of handling this, such as changing the state to :STARTING and
5686 // adding the track to mActiveTracks after returning from AudioSystem::startInput(),
5687 // or using a separate command thread
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005688 recordTrack->mState = TrackBase::STARTING_1;
Glenn Kasten2b806402013-11-20 16:37:38 -08005689 mActiveTracks.add(recordTrack);
5690 mActiveTracksGen++;
Eric Laurent83b88082014-06-20 18:31:16 -07005691 status_t status = NO_ERROR;
5692 if (recordTrack->isExternalTrack()) {
5693 mLock.unlock();
Eric Laurent4dc68062014-07-28 17:26:49 -07005694 status = AudioSystem::startInput(mId, (audio_session_t)recordTrack->sessionId());
Eric Laurent83b88082014-06-20 18:31:16 -07005695 mLock.lock();
5696 // FIXME should verify that recordTrack is still in mActiveTracks
5697 if (status != NO_ERROR) {
5698 mActiveTracks.remove(recordTrack);
5699 mActiveTracksGen++;
5700 recordTrack->clearSyncStartEvent();
5701 ALOGV("RecordThread::start error %d", status);
5702 return status;
5703 }
Eric Laurent81784c32012-11-19 14:55:58 -08005704 }
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005705 // Catch up with current buffer indices if thread is already running.
5706 // This is what makes a new client discard all buffered data. If the track's mRsmpInFront
5707 // was initialized to some value closer to the thread's mRsmpInFront, then the track could
5708 // see previously buffered data before it called start(), but with greater risk of overrun.
5709
5710 recordTrack->mRsmpInFront = mRsmpInRear;
5711 recordTrack->mRsmpInUnrel = 0;
5712 // FIXME why reset?
5713 if (recordTrack->mResampler != NULL) {
5714 recordTrack->mResampler->reset();
Eric Laurent81784c32012-11-19 14:55:58 -08005715 }
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005716 recordTrack->mState = TrackBase::STARTING_2;
Eric Laurent81784c32012-11-19 14:55:58 -08005717 // signal thread to start
Eric Laurent81784c32012-11-19 14:55:58 -08005718 mWaitWorkCV.broadcast();
Glenn Kasten2b806402013-11-20 16:37:38 -08005719 if (mActiveTracks.indexOf(recordTrack) < 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08005720 ALOGV("Record failed to start");
5721 status = BAD_VALUE;
5722 goto startError;
5723 }
Eric Laurent81784c32012-11-19 14:55:58 -08005724 return status;
5725 }
Glenn Kasten7c027242012-12-26 14:43:16 -08005726
Eric Laurent81784c32012-11-19 14:55:58 -08005727startError:
Eric Laurent83b88082014-06-20 18:31:16 -07005728 if (recordTrack->isExternalTrack()) {
Eric Laurent4dc68062014-07-28 17:26:49 -07005729 AudioSystem::stopInput(mId, (audio_session_t)recordTrack->sessionId());
Eric Laurent83b88082014-06-20 18:31:16 -07005730 }
Glenn Kasten25f4aa82014-02-07 10:50:43 -08005731 recordTrack->clearSyncStartEvent();
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005732 // FIXME I wonder why we do not reset the state here?
Eric Laurent81784c32012-11-19 14:55:58 -08005733 return status;
5734}
5735
Eric Laurent81784c32012-11-19 14:55:58 -08005736void AudioFlinger::RecordThread::syncStartEventCallback(const wp<SyncEvent>& event)
5737{
5738 sp<SyncEvent> strongEvent = event.promote();
5739
5740 if (strongEvent != 0) {
Eric Laurent8ea16e42014-02-20 16:26:11 -08005741 sp<RefBase> ptr = strongEvent->cookie().promote();
5742 if (ptr != 0) {
5743 RecordTrack *recordTrack = (RecordTrack *)ptr.get();
5744 recordTrack->handleSyncStartEvent(strongEvent);
5745 }
Eric Laurent81784c32012-11-19 14:55:58 -08005746 }
5747}
5748
Glenn Kastena8356f62013-07-25 14:37:52 -07005749bool AudioFlinger::RecordThread::stop(RecordThread::RecordTrack* recordTrack) {
Eric Laurent81784c32012-11-19 14:55:58 -08005750 ALOGV("RecordThread::stop");
Glenn Kastena8356f62013-07-25 14:37:52 -07005751 AutoMutex _l(mLock);
Glenn Kasten2b806402013-11-20 16:37:38 -08005752 if (mActiveTracks.indexOf(recordTrack) != 0 || recordTrack->mState == TrackBase::PAUSING) {
Eric Laurent81784c32012-11-19 14:55:58 -08005753 return false;
5754 }
Glenn Kasten47c20702013-08-13 15:37:35 -07005755 // note that threadLoop may still be processing the track at this point [without lock]
Eric Laurent81784c32012-11-19 14:55:58 -08005756 recordTrack->mState = TrackBase::PAUSING;
5757 // do not wait for mStartStopCond if exiting
5758 if (exitPending()) {
5759 return true;
5760 }
Glenn Kasten47c20702013-08-13 15:37:35 -07005761 // FIXME incorrect usage of wait: no explicit predicate or loop
Eric Laurent81784c32012-11-19 14:55:58 -08005762 mStartStopCond.wait(mLock);
Glenn Kasten2b806402013-11-20 16:37:38 -08005763 // if we have been restarted, recordTrack is in mActiveTracks here
5764 if (exitPending() || mActiveTracks.indexOf(recordTrack) != 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08005765 ALOGV("Record stopped OK");
5766 return true;
5767 }
5768 return false;
5769}
5770
Glenn Kasten0f11b512014-01-31 16:18:54 -08005771bool AudioFlinger::RecordThread::isValidSyncEvent(const sp<SyncEvent>& event __unused) const
Eric Laurent81784c32012-11-19 14:55:58 -08005772{
5773 return false;
5774}
5775
Glenn Kasten0f11b512014-01-31 16:18:54 -08005776status_t AudioFlinger::RecordThread::setSyncEvent(const sp<SyncEvent>& event __unused)
Eric Laurent81784c32012-11-19 14:55:58 -08005777{
5778#if 0 // This branch is currently dead code, but is preserved in case it will be needed in future
5779 if (!isValidSyncEvent(event)) {
5780 return BAD_VALUE;
5781 }
5782
5783 int eventSession = event->triggerSession();
5784 status_t ret = NAME_NOT_FOUND;
5785
5786 Mutex::Autolock _l(mLock);
5787
5788 for (size_t i = 0; i < mTracks.size(); i++) {
5789 sp<RecordTrack> track = mTracks[i];
5790 if (eventSession == track->sessionId()) {
5791 (void) track->setSyncEvent(event);
5792 ret = NO_ERROR;
5793 }
5794 }
5795 return ret;
5796#else
5797 return BAD_VALUE;
5798#endif
5799}
5800
5801// destroyTrack_l() must be called with ThreadBase::mLock held
5802void AudioFlinger::RecordThread::destroyTrack_l(const sp<RecordTrack>& track)
5803{
Eric Laurentbfb1b832013-01-07 09:53:42 -08005804 track->terminate();
5805 track->mState = TrackBase::STOPPED;
Eric Laurent81784c32012-11-19 14:55:58 -08005806 // active tracks are removed by threadLoop()
Glenn Kasten2b806402013-11-20 16:37:38 -08005807 if (mActiveTracks.indexOf(track) < 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08005808 removeTrack_l(track);
5809 }
5810}
5811
5812void AudioFlinger::RecordThread::removeTrack_l(const sp<RecordTrack>& track)
5813{
5814 mTracks.remove(track);
5815 // need anything related to effects here?
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005816 if (track->isFastTrack()) {
5817 ALOG_ASSERT(!mFastTrackAvail);
5818 mFastTrackAvail = true;
5819 }
Eric Laurent81784c32012-11-19 14:55:58 -08005820}
5821
5822void AudioFlinger::RecordThread::dump(int fd, const Vector<String16>& args)
5823{
5824 dumpInternals(fd, args);
5825 dumpTracks(fd, args);
5826 dumpEffectChains(fd, args);
5827}
5828
5829void AudioFlinger::RecordThread::dumpInternals(int fd, const Vector<String16>& args)
5830{
Elliott Hughes87cebad2014-05-22 10:14:43 -07005831 dprintf(fd, "\nInput thread %p:\n", this);
Eric Laurent81784c32012-11-19 14:55:58 -08005832
Glenn Kasten2b806402013-11-20 16:37:38 -08005833 if (mActiveTracks.size() > 0) {
Elliott Hughes87cebad2014-05-22 10:14:43 -07005834 dprintf(fd, " Buffer size: %zu bytes\n", mBufferSize);
Eric Laurent81784c32012-11-19 14:55:58 -08005835 } else {
Elliott Hughes87cebad2014-05-22 10:14:43 -07005836 dprintf(fd, " No active record clients\n");
Eric Laurent81784c32012-11-19 14:55:58 -08005837 }
Glenn Kasten6e6704c2014-07-03 10:20:00 -07005838 dprintf(fd, " Fast capture thread: %s\n", hasFastCapture() ? "yes" : "no");
Glenn Kasten6dbb5e32014-05-13 10:38:42 -07005839 dprintf(fd, " Fast track available: %s\n", mFastTrackAvail ? "yes" : "no");
Eric Laurent81784c32012-11-19 14:55:58 -08005840
Eric Laurent81784c32012-11-19 14:55:58 -08005841 dumpBase(fd, args);
5842}
5843
Glenn Kasten0f11b512014-01-31 16:18:54 -08005844void AudioFlinger::RecordThread::dumpTracks(int fd, const Vector<String16>& args __unused)
Eric Laurent81784c32012-11-19 14:55:58 -08005845{
5846 const size_t SIZE = 256;
5847 char buffer[SIZE];
5848 String8 result;
5849
Marco Nelissenb2208842014-02-07 14:00:50 -08005850 size_t numtracks = mTracks.size();
5851 size_t numactive = mActiveTracks.size();
5852 size_t numactiveseen = 0;
Elliott Hughes87cebad2014-05-22 10:14:43 -07005853 dprintf(fd, " %d Tracks", numtracks);
Marco Nelissenb2208842014-02-07 14:00:50 -08005854 if (numtracks) {
Elliott Hughes87cebad2014-05-22 10:14:43 -07005855 dprintf(fd, " of which %d are active\n", numactive);
Marco Nelissenb2208842014-02-07 14:00:50 -08005856 RecordTrack::appendDumpHeader(result);
5857 for (size_t i = 0; i < numtracks ; ++i) {
5858 sp<RecordTrack> track = mTracks[i];
5859 if (track != 0) {
5860 bool active = mActiveTracks.indexOf(track) >= 0;
5861 if (active) {
5862 numactiveseen++;
5863 }
5864 track->dump(buffer, SIZE, active);
5865 result.append(buffer);
5866 }
Eric Laurent81784c32012-11-19 14:55:58 -08005867 }
Marco Nelissenb2208842014-02-07 14:00:50 -08005868 } else {
Elliott Hughes87cebad2014-05-22 10:14:43 -07005869 dprintf(fd, "\n");
Eric Laurent81784c32012-11-19 14:55:58 -08005870 }
5871
Marco Nelissenb2208842014-02-07 14:00:50 -08005872 if (numactiveseen != numactive) {
5873 snprintf(buffer, SIZE, " The following tracks are in the active list but"
5874 " not in the track list\n");
Eric Laurent81784c32012-11-19 14:55:58 -08005875 result.append(buffer);
5876 RecordTrack::appendDumpHeader(result);
Marco Nelissenb2208842014-02-07 14:00:50 -08005877 for (size_t i = 0; i < numactive; ++i) {
Glenn Kasten2b806402013-11-20 16:37:38 -08005878 sp<RecordTrack> track = mActiveTracks[i];
Marco Nelissenb2208842014-02-07 14:00:50 -08005879 if (mTracks.indexOf(track) < 0) {
5880 track->dump(buffer, SIZE, true);
5881 result.append(buffer);
5882 }
Glenn Kasten2b806402013-11-20 16:37:38 -08005883 }
Eric Laurent81784c32012-11-19 14:55:58 -08005884
5885 }
5886 write(fd, result.string(), result.size());
5887}
5888
5889// AudioBufferProvider interface
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005890status_t AudioFlinger::RecordThread::ResamplerBufferProvider::getNextBuffer(
5891 AudioBufferProvider::Buffer* buffer, int64_t pts __unused)
Eric Laurent81784c32012-11-19 14:55:58 -08005892{
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005893 RecordTrack *activeTrack = mRecordTrack;
5894 sp<ThreadBase> threadBase = activeTrack->mThread.promote();
5895 if (threadBase == 0) {
5896 buffer->frameCount = 0;
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005897 buffer->raw = NULL;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005898 return NOT_ENOUGH_DATA;
5899 }
5900 RecordThread *recordThread = (RecordThread *) threadBase.get();
5901 int32_t rear = recordThread->mRsmpInRear;
5902 int32_t front = activeTrack->mRsmpInFront;
Glenn Kasten85948432013-08-19 12:09:05 -07005903 ssize_t filled = rear - front;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005904 // FIXME should not be P2 (don't want to increase latency)
5905 // FIXME if client not keeping up, discard
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005906 LOG_ALWAYS_FATAL_IF(!(0 <= filled && (size_t) filled <= recordThread->mRsmpInFrames));
Glenn Kasten85948432013-08-19 12:09:05 -07005907 // 'filled' may be non-contiguous, so return only the first contiguous chunk
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005908 front &= recordThread->mRsmpInFramesP2 - 1;
5909 size_t part1 = recordThread->mRsmpInFramesP2 - front;
Glenn Kasten85948432013-08-19 12:09:05 -07005910 if (part1 > (size_t) filled) {
5911 part1 = filled;
5912 }
5913 size_t ask = buffer->frameCount;
5914 ALOG_ASSERT(ask > 0);
5915 if (part1 > ask) {
5916 part1 = ask;
5917 }
5918 if (part1 == 0) {
5919 // Higher-level should keep mRsmpInBuffer full, and not call resampler if empty
Glenn Kasten607fa3e2014-02-21 14:24:58 -08005920 LOG_ALWAYS_FATAL("RecordThread::getNextBuffer() starved");
Glenn Kasten85948432013-08-19 12:09:05 -07005921 buffer->raw = NULL;
5922 buffer->frameCount = 0;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005923 activeTrack->mRsmpInUnrel = 0;
Glenn Kasten85948432013-08-19 12:09:05 -07005924 return NOT_ENOUGH_DATA;
Eric Laurent81784c32012-11-19 14:55:58 -08005925 }
5926
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005927 buffer->raw = recordThread->mRsmpInBuffer + front * recordThread->mChannelCount;
Glenn Kasten85948432013-08-19 12:09:05 -07005928 buffer->frameCount = part1;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005929 activeTrack->mRsmpInUnrel = part1;
Eric Laurent81784c32012-11-19 14:55:58 -08005930 return NO_ERROR;
5931}
5932
5933// AudioBufferProvider interface
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005934void AudioFlinger::RecordThread::ResamplerBufferProvider::releaseBuffer(
5935 AudioBufferProvider::Buffer* buffer)
Eric Laurent81784c32012-11-19 14:55:58 -08005936{
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005937 RecordTrack *activeTrack = mRecordTrack;
Glenn Kasten85948432013-08-19 12:09:05 -07005938 size_t stepCount = buffer->frameCount;
5939 if (stepCount == 0) {
5940 return;
5941 }
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08005942 ALOG_ASSERT(stepCount <= activeTrack->mRsmpInUnrel);
5943 activeTrack->mRsmpInUnrel -= stepCount;
5944 activeTrack->mRsmpInFront += stepCount;
Glenn Kasten85948432013-08-19 12:09:05 -07005945 buffer->raw = NULL;
Eric Laurent81784c32012-11-19 14:55:58 -08005946 buffer->frameCount = 0;
5947}
5948
Eric Laurent10351942014-05-08 18:49:52 -07005949bool AudioFlinger::RecordThread::checkForNewParameter_l(const String8& keyValuePair,
5950 status_t& status)
Eric Laurent81784c32012-11-19 14:55:58 -08005951{
5952 bool reconfig = false;
5953
Eric Laurent10351942014-05-08 18:49:52 -07005954 status = NO_ERROR;
Eric Laurent81784c32012-11-19 14:55:58 -08005955
Eric Laurent10351942014-05-08 18:49:52 -07005956 audio_format_t reqFormat = mFormat;
5957 uint32_t samplingRate = mSampleRate;
5958 audio_channel_mask_t channelMask = audio_channel_in_mask_from_count(mChannelCount);
5959
5960 AudioParameter param = AudioParameter(keyValuePair);
5961 int value;
5962 // TODO Investigate when this code runs. Check with audio policy when a sample rate and
5963 // channel count change can be requested. Do we mandate the first client defines the
5964 // HAL sampling rate and channel count or do we allow changes on the fly?
5965 if (param.getInt(String8(AudioParameter::keySamplingRate), value) == NO_ERROR) {
5966 samplingRate = value;
5967 reconfig = true;
5968 }
5969 if (param.getInt(String8(AudioParameter::keyFormat), value) == NO_ERROR) {
5970 if ((audio_format_t) value != AUDIO_FORMAT_PCM_16_BIT) {
5971 status = BAD_VALUE;
5972 } else {
5973 reqFormat = (audio_format_t) value;
Eric Laurent81784c32012-11-19 14:55:58 -08005974 reconfig = true;
5975 }
Eric Laurent10351942014-05-08 18:49:52 -07005976 }
5977 if (param.getInt(String8(AudioParameter::keyChannels), value) == NO_ERROR) {
5978 audio_channel_mask_t mask = (audio_channel_mask_t) value;
5979 if (mask != AUDIO_CHANNEL_IN_MONO && mask != AUDIO_CHANNEL_IN_STEREO) {
5980 status = BAD_VALUE;
5981 } else {
5982 channelMask = mask;
5983 reconfig = true;
Eric Laurent81784c32012-11-19 14:55:58 -08005984 }
Eric Laurent10351942014-05-08 18:49:52 -07005985 }
5986 if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
5987 // do not accept frame count changes if tracks are open as the track buffer
5988 // size depends on frame count and correct behavior would not be guaranteed
5989 // if frame count is changed after track creation
5990 if (mActiveTracks.size() > 0) {
5991 status = INVALID_OPERATION;
5992 } else {
5993 reconfig = true;
Eric Laurent81784c32012-11-19 14:55:58 -08005994 }
Eric Laurent10351942014-05-08 18:49:52 -07005995 }
5996 if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
5997 // forward device change to effects that have requested to be
5998 // aware of attached audio device.
5999 for (size_t i = 0; i < mEffectChains.size(); i++) {
6000 mEffectChains[i]->setDevice_l(value);
Eric Laurent81784c32012-11-19 14:55:58 -08006001 }
Eric Laurent81784c32012-11-19 14:55:58 -08006002
Eric Laurent10351942014-05-08 18:49:52 -07006003 // store input device and output device but do not forward output device to audio HAL.
6004 // Note that status is ignored by the caller for output device
6005 // (see AudioFlinger::setParameters()
6006 if (audio_is_output_devices(value)) {
6007 mOutDevice = value;
6008 status = BAD_VALUE;
6009 } else {
6010 mInDevice = value;
6011 // disable AEC and NS if the device is a BT SCO headset supporting those
6012 // pre processings
6013 if (mTracks.size() > 0) {
6014 bool suspend = audio_is_bluetooth_sco_device(mInDevice) &&
6015 mAudioFlinger->btNrecIsOff();
6016 for (size_t i = 0; i < mTracks.size(); i++) {
6017 sp<RecordTrack> track = mTracks[i];
6018 setEffectSuspended_l(FX_IID_AEC, suspend, track->sessionId());
6019 setEffectSuspended_l(FX_IID_NS, suspend, track->sessionId());
Eric Laurent81784c32012-11-19 14:55:58 -08006020 }
6021 }
6022 }
Eric Laurent10351942014-05-08 18:49:52 -07006023 }
6024 if (param.getInt(String8(AudioParameter::keyInputSource), value) == NO_ERROR &&
6025 mAudioSource != (audio_source_t)value) {
6026 // forward device change to effects that have requested to be
6027 // aware of attached audio device.
6028 for (size_t i = 0; i < mEffectChains.size(); i++) {
6029 mEffectChains[i]->setAudioSource_l((audio_source_t)value);
Eric Laurent81784c32012-11-19 14:55:58 -08006030 }
Eric Laurent10351942014-05-08 18:49:52 -07006031 mAudioSource = (audio_source_t)value;
6032 }
Glenn Kastene198c362013-08-13 09:13:36 -07006033
Eric Laurent10351942014-05-08 18:49:52 -07006034 if (status == NO_ERROR) {
6035 status = mInput->stream->common.set_parameters(&mInput->stream->common,
6036 keyValuePair.string());
6037 if (status == INVALID_OPERATION) {
6038 inputStandBy();
Eric Laurent81784c32012-11-19 14:55:58 -08006039 status = mInput->stream->common.set_parameters(&mInput->stream->common,
6040 keyValuePair.string());
Eric Laurent10351942014-05-08 18:49:52 -07006041 }
6042 if (reconfig) {
6043 if (status == BAD_VALUE &&
6044 reqFormat == mInput->stream->common.get_format(&mInput->stream->common) &&
6045 reqFormat == AUDIO_FORMAT_PCM_16_BIT &&
6046 (mInput->stream->common.get_sample_rate(&mInput->stream->common)
6047 <= (2 * samplingRate)) &&
Andy Hunge5412692014-05-16 11:25:07 -07006048 audio_channel_count_from_in_mask(
6049 mInput->stream->common.get_channels(&mInput->stream->common)) <= FCC_2 &&
Eric Laurent10351942014-05-08 18:49:52 -07006050 (channelMask == AUDIO_CHANNEL_IN_MONO ||
6051 channelMask == AUDIO_CHANNEL_IN_STEREO)) {
6052 status = NO_ERROR;
Eric Laurent81784c32012-11-19 14:55:58 -08006053 }
Eric Laurent10351942014-05-08 18:49:52 -07006054 if (status == NO_ERROR) {
6055 readInputParameters_l();
6056 sendIoConfigEvent_l(AudioSystem::INPUT_CONFIG_CHANGED);
Eric Laurent81784c32012-11-19 14:55:58 -08006057 }
6058 }
Eric Laurent81784c32012-11-19 14:55:58 -08006059 }
Eric Laurent10351942014-05-08 18:49:52 -07006060
Eric Laurent81784c32012-11-19 14:55:58 -08006061 return reconfig;
6062}
6063
6064String8 AudioFlinger::RecordThread::getParameters(const String8& keys)
6065{
Eric Laurent81784c32012-11-19 14:55:58 -08006066 Mutex::Autolock _l(mLock);
6067 if (initCheck() != NO_ERROR) {
Glenn Kastend8ea6992013-07-16 14:17:15 -07006068 return String8();
Eric Laurent81784c32012-11-19 14:55:58 -08006069 }
6070
Glenn Kastend8ea6992013-07-16 14:17:15 -07006071 char *s = mInput->stream->common.get_parameters(&mInput->stream->common, keys.string());
6072 const String8 out_s8(s);
Eric Laurent81784c32012-11-19 14:55:58 -08006073 free(s);
6074 return out_s8;
6075}
6076
Eric Laurent021cf962014-05-13 10:18:14 -07006077void AudioFlinger::RecordThread::audioConfigChanged(int event, int param __unused) {
Eric Laurent81784c32012-11-19 14:55:58 -08006078 AudioSystem::OutputDescriptor desc;
Glenn Kastenb2737d02013-08-19 12:03:11 -07006079 const void *param2 = NULL;
Eric Laurent81784c32012-11-19 14:55:58 -08006080
6081 switch (event) {
6082 case AudioSystem::INPUT_OPENED:
6083 case AudioSystem::INPUT_CONFIG_CHANGED:
Glenn Kastenfad226a2013-07-16 17:19:58 -07006084 desc.channelMask = mChannelMask;
Eric Laurent81784c32012-11-19 14:55:58 -08006085 desc.samplingRate = mSampleRate;
6086 desc.format = mFormat;
6087 desc.frameCount = mFrameCount;
6088 desc.latency = 0;
6089 param2 = &desc;
6090 break;
6091
6092 case AudioSystem::INPUT_CLOSED:
6093 default:
6094 break;
6095 }
Eric Laurent021cf962014-05-13 10:18:14 -07006096 mAudioFlinger->audioConfigChanged(event, mId, param2);
Eric Laurent81784c32012-11-19 14:55:58 -08006097}
6098
Glenn Kastendeca2ae2014-02-07 10:25:56 -08006099void AudioFlinger::RecordThread::readInputParameters_l()
Eric Laurent81784c32012-11-19 14:55:58 -08006100{
Eric Laurent81784c32012-11-19 14:55:58 -08006101 mSampleRate = mInput->stream->common.get_sample_rate(&mInput->stream->common);
6102 mChannelMask = mInput->stream->common.get_channels(&mInput->stream->common);
Andy Hunge5412692014-05-16 11:25:07 -07006103 mChannelCount = audio_channel_count_from_in_mask(mChannelMask);
Andy Hung463be252014-07-10 16:56:07 -07006104 mHALFormat = mInput->stream->common.get_format(&mInput->stream->common);
6105 mFormat = mHALFormat;
Glenn Kasten291bb6d2013-07-16 17:23:39 -07006106 if (mFormat != AUDIO_FORMAT_PCM_16_BIT) {
Glenn Kastencac3daa2014-02-07 09:47:14 -08006107 ALOGE("HAL format %#x not supported; must be AUDIO_FORMAT_PCM_16_BIT", mFormat);
Glenn Kasten291bb6d2013-07-16 17:23:39 -07006108 }
Eric Laurent665470b2014-07-03 16:37:08 -07006109 mFrameSize = audio_stream_in_frame_size(mInput->stream);
Glenn Kasten548efc92012-11-29 08:48:51 -08006110 mBufferSize = mInput->stream->common.get_buffer_size(&mInput->stream->common);
6111 mFrameCount = mBufferSize / mFrameSize;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08006112 // This is the formula for calculating the temporary buffer size.
Glenn Kastene8426142014-02-28 16:45:03 -08006113 // With 7 HAL buffers, we can guarantee ability to down-sample the input by ratio of 6:1 to
Glenn Kasten85948432013-08-19 12:09:05 -07006114 // 1 full output buffer, regardless of the alignment of the available input.
Glenn Kastene8426142014-02-28 16:45:03 -08006115 // The value is somewhat arbitrary, and could probably be even larger.
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08006116 // A larger value should allow more old data to be read after a track calls start(),
6117 // without increasing latency.
Glenn Kastene8426142014-02-28 16:45:03 -08006118 mRsmpInFrames = mFrameCount * 7;
Glenn Kasten85948432013-08-19 12:09:05 -07006119 mRsmpInFramesP2 = roundup(mRsmpInFrames);
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08006120 delete[] mRsmpInBuffer;
Glenn Kasten49d00ad2014-07-21 11:22:03 -07006121
6122 // TODO optimize audio capture buffer sizes ...
6123 // Here we calculate the size of the sliding buffer used as a source
6124 // for resampling. mRsmpInFramesP2 is currently roundup(mFrameCount * 7).
6125 // For current HAL frame counts, this is usually 2048 = 40 ms. It would
6126 // be better to have it derived from the pipe depth in the long term.
6127 // The current value is higher than necessary. However it should not add to latency.
6128
Glenn Kasten85948432013-08-19 12:09:05 -07006129 // Over-allocate beyond mRsmpInFramesP2 to permit a HAL read past end of buffer
6130 mRsmpInBuffer = new int16_t[(mRsmpInFramesP2 + mFrameCount - 1) * mChannelCount];
Eric Laurent81784c32012-11-19 14:55:58 -08006131
Glenn Kasten4cc0a6a2014-02-17 14:31:46 -08006132 // AudioRecord mSampleRate and mChannelCount are constant due to AudioRecord API constraints.
6133 // But if thread's mSampleRate or mChannelCount changes, how will that affect active tracks?
Eric Laurent81784c32012-11-19 14:55:58 -08006134}
6135
Glenn Kasten5f972c02014-01-13 09:59:31 -08006136uint32_t AudioFlinger::RecordThread::getInputFramesLost()
Eric Laurent81784c32012-11-19 14:55:58 -08006137{
6138 Mutex::Autolock _l(mLock);
6139 if (initCheck() != NO_ERROR) {
6140 return 0;
6141 }
6142
6143 return mInput->stream->get_input_frames_lost(mInput->stream);
6144}
6145
6146uint32_t AudioFlinger::RecordThread::hasAudioSession(int sessionId) const
6147{
6148 Mutex::Autolock _l(mLock);
6149 uint32_t result = 0;
6150 if (getEffectChain_l(sessionId) != 0) {
6151 result = EFFECT_SESSION;
6152 }
6153
6154 for (size_t i = 0; i < mTracks.size(); ++i) {
6155 if (sessionId == mTracks[i]->sessionId()) {
6156 result |= TRACK_SESSION;
6157 break;
6158 }
6159 }
6160
6161 return result;
6162}
6163
6164KeyedVector<int, bool> AudioFlinger::RecordThread::sessionIds() const
6165{
6166 KeyedVector<int, bool> ids;
6167 Mutex::Autolock _l(mLock);
6168 for (size_t j = 0; j < mTracks.size(); ++j) {
6169 sp<RecordThread::RecordTrack> track = mTracks[j];
6170 int sessionId = track->sessionId();
6171 if (ids.indexOfKey(sessionId) < 0) {
6172 ids.add(sessionId, true);
6173 }
6174 }
6175 return ids;
6176}
6177
6178AudioFlinger::AudioStreamIn* AudioFlinger::RecordThread::clearInput()
6179{
6180 Mutex::Autolock _l(mLock);
6181 AudioStreamIn *input = mInput;
6182 mInput = NULL;
6183 return input;
6184}
6185
6186// this method must always be called either with ThreadBase mLock held or inside the thread loop
6187audio_stream_t* AudioFlinger::RecordThread::stream() const
6188{
6189 if (mInput == NULL) {
6190 return NULL;
6191 }
6192 return &mInput->stream->common;
6193}
6194
6195status_t AudioFlinger::RecordThread::addEffectChain_l(const sp<EffectChain>& chain)
6196{
6197 // only one chain per input thread
6198 if (mEffectChains.size() != 0) {
Eric Laurentaaa44472014-09-12 17:41:50 -07006199 ALOGW("addEffectChain_l() already one chain %p on thread %p", chain.get(), this);
Eric Laurent81784c32012-11-19 14:55:58 -08006200 return INVALID_OPERATION;
6201 }
6202 ALOGV("addEffectChain_l() %p on thread %p", chain.get(), this);
Eric Laurentaaa44472014-09-12 17:41:50 -07006203 chain->setThread(this);
Eric Laurent81784c32012-11-19 14:55:58 -08006204 chain->setInBuffer(NULL);
6205 chain->setOutBuffer(NULL);
6206
6207 checkSuspendOnAddEffectChain_l(chain);
6208
Eric Laurent1b928682014-10-02 19:41:47 -07006209 // make sure enabled pre processing effects state is communicated to the HAL as we
6210 // just moved them to a new input stream.
6211 chain->syncHalEffectsState();
6212
Eric Laurent81784c32012-11-19 14:55:58 -08006213 mEffectChains.add(chain);
6214
6215 return NO_ERROR;
6216}
6217
6218size_t AudioFlinger::RecordThread::removeEffectChain_l(const sp<EffectChain>& chain)
6219{
6220 ALOGV("removeEffectChain_l() %p from thread %p", chain.get(), this);
6221 ALOGW_IF(mEffectChains.size() != 1,
6222 "removeEffectChain_l() %p invalid chain size %d on thread %p",
6223 chain.get(), mEffectChains.size(), this);
6224 if (mEffectChains.size() == 1) {
6225 mEffectChains.removeAt(0);
6226 }
6227 return 0;
6228}
6229
Eric Laurent1c333e22014-05-20 10:48:17 -07006230status_t AudioFlinger::RecordThread::createAudioPatch_l(const struct audio_patch *patch,
6231 audio_patch_handle_t *handle)
6232{
6233 status_t status = NO_ERROR;
6234 if (mInput->audioHwDev->version() >= AUDIO_DEVICE_API_VERSION_3_0) {
6235 // store new device and send to effects
6236 mInDevice = patch->sources[0].ext.device.type;
6237 for (size_t i = 0; i < mEffectChains.size(); i++) {
6238 mEffectChains[i]->setDevice_l(mInDevice);
6239 }
6240
6241 // disable AEC and NS if the device is a BT SCO headset supporting those
6242 // pre processings
6243 if (mTracks.size() > 0) {
6244 bool suspend = audio_is_bluetooth_sco_device(mInDevice) &&
6245 mAudioFlinger->btNrecIsOff();
6246 for (size_t i = 0; i < mTracks.size(); i++) {
6247 sp<RecordTrack> track = mTracks[i];
6248 setEffectSuspended_l(FX_IID_AEC, suspend, track->sessionId());
6249 setEffectSuspended_l(FX_IID_NS, suspend, track->sessionId());
6250 }
6251 }
6252
6253 // store new source and send to effects
6254 if (mAudioSource != patch->sinks[0].ext.mix.usecase.source) {
6255 mAudioSource = patch->sinks[0].ext.mix.usecase.source;
6256 for (size_t i = 0; i < mEffectChains.size(); i++) {
6257 mEffectChains[i]->setAudioSource_l(mAudioSource);
6258 }
6259 }
6260
6261 audio_hw_device_t *hwDevice = mInput->audioHwDev->hwDevice();
6262 status = hwDevice->create_audio_patch(hwDevice,
6263 patch->num_sources,
6264 patch->sources,
6265 patch->num_sinks,
6266 patch->sinks,
6267 handle);
6268 } else {
6269 ALOG_ASSERT(false, "createAudioPatch_l() called on a pre 3.0 HAL");
6270 }
6271 return status;
6272}
6273
6274status_t AudioFlinger::RecordThread::releaseAudioPatch_l(const audio_patch_handle_t handle)
6275{
6276 status_t status = NO_ERROR;
6277 if (mInput->audioHwDev->version() >= AUDIO_DEVICE_API_VERSION_3_0) {
6278 audio_hw_device_t *hwDevice = mInput->audioHwDev->hwDevice();
6279 status = hwDevice->release_audio_patch(hwDevice, handle);
6280 } else {
6281 ALOG_ASSERT(false, "releaseAudioPatch_l() called on a pre 3.0 HAL");
6282 }
6283 return status;
6284}
6285
Eric Laurent83b88082014-06-20 18:31:16 -07006286void AudioFlinger::RecordThread::addPatchRecord(const sp<PatchRecord>& record)
6287{
6288 Mutex::Autolock _l(mLock);
6289 mTracks.add(record);
6290}
6291
6292void AudioFlinger::RecordThread::deletePatchRecord(const sp<PatchRecord>& record)
6293{
6294 Mutex::Autolock _l(mLock);
6295 destroyTrack_l(record);
6296}
6297
6298void AudioFlinger::RecordThread::getAudioPortConfig(struct audio_port_config *config)
6299{
6300 ThreadBase::getAudioPortConfig(config);
6301 config->role = AUDIO_PORT_ROLE_SINK;
6302 config->ext.mix.hw_module = mInput->audioHwDev->handle();
6303 config->ext.mix.usecase.source = mAudioSource;
6304}
Eric Laurent1c333e22014-05-20 10:48:17 -07006305
Eric Laurent81784c32012-11-19 14:55:58 -08006306}; // namespace android