blob: c10fa059602a97975be4f3b74f2bde808cf9bba9 [file] [log] [blame]
Glenn Kasten97b5d0d2012-03-23 18:54:19 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Glenn Kastena3d26282012-11-30 07:57:43 -080017// <IMPORTANT_WARNING>
18// Design rules for threadLoop() are given in the comments at section "Fast mixer thread" of
19// StateQueue.h. In particular, avoid library and system calls except at well-known points.
20// The design rules are only for threadLoop(), and don't apply to FastMixerDumpState methods.
21// </IMPORTANT_WARNING>
22
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070023#define LOG_TAG "FastMixer"
Glenn Kasten7f5d3352013-02-15 23:55:04 +000024//#define LOG_NDEBUG 0
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070025
Alex Rayb3a83642012-11-30 19:42:28 -080026#define ATRACE_TAG ATRACE_TAG_AUDIO
Alex Ray371eb972012-11-30 11:11:54 -080027
Glenn Kasten153b9fe2013-07-15 11:23:36 -070028#include "Configuration.h"
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070029#include <time.h>
Glenn Kastenad8510a2015-02-17 16:24:07 -080030#include <utils/Debug.h>
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070031#include <utils/Log.h>
Glenn Kastend8e6fd32012-05-07 11:07:57 -070032#include <utils/Trace.h>
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070033#include <system/audio.h>
Glenn Kasten214b4062015-03-02 14:15:47 -080034#ifdef FAST_THREAD_STATISTICS
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070035#include <cpustats/CentralTendencyStatistics.h>
Glenn Kasten0a14c4c2012-06-13 14:58:49 -070036#ifdef CPU_FREQUENCY_STATISTICS
Glenn Kasten42d45cf2012-05-02 10:34:47 -070037#include <cpustats/ThreadCpuUsage.h>
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070038#endif
Glenn Kasten0a14c4c2012-06-13 14:58:49 -070039#endif
Glenn Kasten6bf707f2017-02-23 16:53:58 -080040#include <audio_utils/mono_blend.h>
Andy Hung1258c1a2014-05-23 21:22:17 -070041#include <audio_utils/format.h>
Andy Hung068561c2017-01-03 17:09:32 -080042#include <media/AudioMixer.h>
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070043#include "FastMixer.h"
Glenn Kasteneef598c2017-04-03 14:41:13 -070044#include "TypedLogger.h"
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070045
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070046namespace android {
47
Glenn Kastene4a7ce22015-03-03 11:23:17 -080048/*static*/ const FastMixerState FastMixer::sInitial;
Glenn Kasten22340022014-04-07 12:04:41 -070049
Glenn Kastenf9715e42016-07-13 14:02:03 -070050FastMixer::FastMixer() : FastThread("cycle_ms", "load_us"),
Glenn Kastene4a7ce22015-03-03 11:23:17 -080051 // mFastTrackNames
52 // mGenerations
53 mOutputSink(NULL),
54 mOutputSinkGen(0),
55 mMixer(NULL),
Andy Hung1258c1a2014-05-23 21:22:17 -070056 mSinkBuffer(NULL),
57 mSinkBufferSize(0),
Andy Hung9a592762014-07-21 21:56:01 -070058 mSinkChannelCount(FCC_2),
Andy Hung45d68d32014-05-23 21:13:31 -070059 mMixerBuffer(NULL),
Andy Hung1258c1a2014-05-23 21:22:17 -070060 mMixerBufferSize(0),
61 mMixerBufferFormat(AUDIO_FORMAT_PCM_16_BIT),
Andy Hung45d68d32014-05-23 21:13:31 -070062 mMixerBufferState(UNDEFINED),
Glenn Kastene4a7ce22015-03-03 11:23:17 -080063 mFormat(Format_Invalid),
64 mSampleRate(0),
65 mFastTracksGen(0),
66 mTotalNativeFramesWritten(0),
Glenn Kasten22340022014-04-07 12:04:41 -070067 // timestamp
Andy Hung2ddee192015-12-18 17:34:44 -080068 mNativeFramesWrittenButNotPresented(0), // the = 0 is to silence the compiler
69 mMasterMono(false)
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070070{
Glenn Kastene4a7ce22015-03-03 11:23:17 -080071 // FIXME pass sInitial as parameter to base class constructor, and make it static local
72 mPrevious = &sInitial;
73 mCurrent = &sInitial;
Glenn Kasten22340022014-04-07 12:04:41 -070074
Glenn Kastene4a7ce22015-03-03 11:23:17 -080075 mDummyDumpState = &mDummyFastMixerDumpState;
Andy Hung9a592762014-07-21 21:56:01 -070076 // TODO: Add channel mask to NBAIO_Format.
77 // We assume that the channel mask must be a valid positional channel mask.
78 mSinkChannelMask = audio_channel_out_mask_from_count(mSinkChannelCount);
Glenn Kasten22340022014-04-07 12:04:41 -070079
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070080 unsigned i;
Glenn Kastendc2c50b2016-04-21 08:13:14 -070081 for (i = 0; i < FastMixerState::sMaxFastTracks; ++i) {
Glenn Kastene4a7ce22015-03-03 11:23:17 -080082 mFastTrackNames[i] = -1;
83 mGenerations[i] = 0;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070084 }
Glenn Kasten214b4062015-03-02 14:15:47 -080085#ifdef FAST_THREAD_STATISTICS
Glenn Kastene4a7ce22015-03-03 11:23:17 -080086 mOldLoad.tv_sec = 0;
87 mOldLoad.tv_nsec = 0;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -070088#endif
Glenn Kasten22340022014-04-07 12:04:41 -070089}
90
91FastMixer::~FastMixer()
92{
93}
94
95FastMixerStateQueue* FastMixer::sq()
96{
97 return &mSQ;
98}
99
100const FastThreadState *FastMixer::poll()
101{
102 return mSQ.poll();
103}
104
Glenn Kasten3ab8d662017-04-03 14:35:09 -0700105void FastMixer::setNBLogWriter(NBLog::Writer *logWriter)
Glenn Kasten22340022014-04-07 12:04:41 -0700106{
Glenn Kasten3ab8d662017-04-03 14:35:09 -0700107 // FIXME If mMixer is set or changed prior to this, we don't inform correctly.
108 // Should cache logWriter and re-apply it at the assignment to mMixer.
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800109 if (mMixer != NULL) {
Glenn Kasten3ab8d662017-04-03 14:35:09 -0700110 mMixer->setNBLogWriter(logWriter);
Glenn Kasten22340022014-04-07 12:04:41 -0700111 }
112}
113
114void FastMixer::onIdle()
115{
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800116 mPreIdle = *(const FastMixerState *)mCurrent;
117 mCurrent = &mPreIdle;
Glenn Kasten22340022014-04-07 12:04:41 -0700118}
119
120void FastMixer::onExit()
121{
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800122 delete mMixer;
Andy Hung1258c1a2014-05-23 21:22:17 -0700123 free(mMixerBuffer);
124 free(mSinkBuffer);
Glenn Kasten22340022014-04-07 12:04:41 -0700125}
126
127bool FastMixer::isSubClassCommand(FastThreadState::Command command)
128{
129 switch ((FastMixerState::Command) command) {
130 case FastMixerState::MIX:
131 case FastMixerState::WRITE:
132 case FastMixerState::MIX_WRITE:
133 return true;
134 default:
135 return false;
136 }
137}
138
139void FastMixer::onStateChange()
140{
Sanna Catherine de Treville Wagera8a8a472017-07-11 09:41:25 -0700141 // log that audio was turned on/off
142 LOG_AUDIO_STATE();
Glenn Kasten4dd03b52015-03-03 11:32:04 -0800143 const FastMixerState * const current = (const FastMixerState *) mCurrent;
144 const FastMixerState * const previous = (const FastMixerState *) mPrevious;
145 FastMixerDumpState * const dumpState = (FastMixerDumpState *) mDumpState;
Glenn Kasten22340022014-04-07 12:04:41 -0700146 const size_t frameCount = current->mFrameCount;
147
Andy Hung818e7a32016-02-16 18:08:07 -0800148 // update boottime offset, in case it has changed
149 mTimestamp.mTimebaseOffset[ExtendedTimestamp::TIMEBASE_BOOTTIME] =
150 mBoottimeOffset.load();
151
Glenn Kasten22340022014-04-07 12:04:41 -0700152 // handle state change here, but since we want to diff the state,
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800153 // we're prepared for previous == &sInitial the first time through
Glenn Kasten22340022014-04-07 12:04:41 -0700154 unsigned previousTrackMask;
155
156 // check for change in output HAL configuration
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800157 NBAIO_Format previousFormat = mFormat;
158 if (current->mOutputSinkGen != mOutputSinkGen) {
159 mOutputSink = current->mOutputSink;
160 mOutputSinkGen = current->mOutputSinkGen;
161 if (mOutputSink == NULL) {
162 mFormat = Format_Invalid;
163 mSampleRate = 0;
Andy Hung9a592762014-07-21 21:56:01 -0700164 mSinkChannelCount = 0;
165 mSinkChannelMask = AUDIO_CHANNEL_NONE;
Glenn Kasten22340022014-04-07 12:04:41 -0700166 } else {
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800167 mFormat = mOutputSink->format();
168 mSampleRate = Format_sampleRate(mFormat);
169 mSinkChannelCount = Format_channelCount(mFormat);
Andy Hung9a592762014-07-21 21:56:01 -0700170 LOG_ALWAYS_FATAL_IF(mSinkChannelCount > AudioMixer::MAX_NUM_CHANNELS);
171
172 // TODO: Add channel mask to NBAIO_Format
173 // We assume that the channel mask must be a valid positional channel mask.
174 mSinkChannelMask = audio_channel_out_mask_from_count(mSinkChannelCount);
Glenn Kasten22340022014-04-07 12:04:41 -0700175 }
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800176 dumpState->mSampleRate = mSampleRate;
Glenn Kasten22340022014-04-07 12:04:41 -0700177 }
178
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800179 if ((!Format_isEqual(mFormat, previousFormat)) || (frameCount != previous->mFrameCount)) {
Glenn Kasten22340022014-04-07 12:04:41 -0700180 // FIXME to avoid priority inversion, don't delete here
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800181 delete mMixer;
182 mMixer = NULL;
Andy Hung1258c1a2014-05-23 21:22:17 -0700183 free(mMixerBuffer);
Andy Hung45d68d32014-05-23 21:13:31 -0700184 mMixerBuffer = NULL;
Andy Hung1258c1a2014-05-23 21:22:17 -0700185 free(mSinkBuffer);
186 mSinkBuffer = NULL;
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800187 if (frameCount > 0 && mSampleRate > 0) {
Andy Hung60c545d2015-06-19 17:34:53 -0700188 // The mixer produces either 16 bit PCM or float output, select
189 // float output if the HAL supports higher than 16 bit precision.
190 mMixerBufferFormat = mFormat.mFormat == AUDIO_FORMAT_PCM_16_BIT ?
191 AUDIO_FORMAT_PCM_16_BIT : AUDIO_FORMAT_PCM_FLOAT;
Glenn Kasten22340022014-04-07 12:04:41 -0700192 // FIXME new may block for unbounded time at internal mutex of the heap
193 // implementation; it would be better to have normal mixer allocate for us
194 // to avoid blocking here and to prevent possible priority inversion
Glenn Kastendc2c50b2016-04-21 08:13:14 -0700195 mMixer = new AudioMixer(frameCount, mSampleRate, FastMixerState::sMaxFastTracks);
Glenn Kasten3ab8d662017-04-03 14:35:09 -0700196 // FIXME See the other FIXME at FastMixer::setNBLogWriter()
Andy Hung9a592762014-07-21 21:56:01 -0700197 const size_t mixerFrameSize = mSinkChannelCount
198 * audio_bytes_per_sample(mMixerBufferFormat);
Andy Hung1258c1a2014-05-23 21:22:17 -0700199 mMixerBufferSize = mixerFrameSize * frameCount;
200 (void)posix_memalign(&mMixerBuffer, 32, mMixerBufferSize);
Andy Hung9a592762014-07-21 21:56:01 -0700201 const size_t sinkFrameSize = mSinkChannelCount
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800202 * audio_bytes_per_sample(mFormat.mFormat);
Andy Hung1258c1a2014-05-23 21:22:17 -0700203 if (sinkFrameSize > mixerFrameSize) { // need a sink buffer
204 mSinkBufferSize = sinkFrameSize * frameCount;
205 (void)posix_memalign(&mSinkBuffer, 32, mSinkBufferSize);
206 }
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800207 mPeriodNs = (frameCount * 1000000000LL) / mSampleRate; // 1.00
208 mUnderrunNs = (frameCount * 1750000000LL) / mSampleRate; // 1.75
209 mOverrunNs = (frameCount * 500000000LL) / mSampleRate; // 0.50
210 mForceNs = (frameCount * 950000000LL) / mSampleRate; // 0.95
211 mWarmupNsMin = (frameCount * 750000000LL) / mSampleRate; // 0.75
212 mWarmupNsMax = (frameCount * 1250000000LL) / mSampleRate; // 1.25
Glenn Kasten22340022014-04-07 12:04:41 -0700213 } else {
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800214 mPeriodNs = 0;
215 mUnderrunNs = 0;
216 mOverrunNs = 0;
217 mForceNs = 0;
218 mWarmupNsMin = 0;
219 mWarmupNsMax = LONG_MAX;
Glenn Kasten22340022014-04-07 12:04:41 -0700220 }
Andy Hung45d68d32014-05-23 21:13:31 -0700221 mMixerBufferState = UNDEFINED;
Glenn Kasten22340022014-04-07 12:04:41 -0700222#if !LOG_NDEBUG
Glenn Kastendc2c50b2016-04-21 08:13:14 -0700223 for (unsigned i = 0; i < FastMixerState::sMaxFastTracks; ++i) {
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800224 mFastTrackNames[i] = -1;
Glenn Kasten22340022014-04-07 12:04:41 -0700225 }
Glenn Kasten0a14c4c2012-06-13 14:58:49 -0700226#endif
Glenn Kasten22340022014-04-07 12:04:41 -0700227 // we need to reconfigure all active tracks
228 previousTrackMask = 0;
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800229 mFastTracksGen = current->mFastTracksGen - 1;
Glenn Kasten22340022014-04-07 12:04:41 -0700230 dumpState->mFrameCount = frameCount;
231 } else {
232 previousTrackMask = previous->mTrackMask;
233 }
Glenn Kasten732845c2013-08-23 09:26:31 -0700234
Glenn Kasten22340022014-04-07 12:04:41 -0700235 // check for change in active track set
236 const unsigned currentTrackMask = current->mTrackMask;
237 dumpState->mTrackMask = currentTrackMask;
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800238 if (current->mFastTracksGen != mFastTracksGen) {
Andy Hung45d68d32014-05-23 21:13:31 -0700239 ALOG_ASSERT(mMixerBuffer != NULL);
Glenn Kasten22340022014-04-07 12:04:41 -0700240 int name;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700241
Glenn Kasten22340022014-04-07 12:04:41 -0700242 // process removed tracks first to avoid running out of track names
243 unsigned removedTracks = previousTrackMask & ~currentTrackMask;
244 while (removedTracks != 0) {
245 int i = __builtin_ctz(removedTracks);
246 removedTracks &= ~(1 << i);
247 const FastTrack* fastTrack = &current->mFastTracks[i];
248 ALOG_ASSERT(fastTrack->mBufferProvider == NULL);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800249 if (mMixer != NULL) {
250 name = mFastTrackNames[i];
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700251 ALOG_ASSERT(name >= 0);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800252 mMixer->deleteTrackName(name);
Glenn Kasten22340022014-04-07 12:04:41 -0700253 }
254#if !LOG_NDEBUG
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800255 mFastTrackNames[i] = -1;
Glenn Kasten22340022014-04-07 12:04:41 -0700256#endif
257 // don't reset track dump state, since other side is ignoring it
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800258 mGenerations[i] = fastTrack->mGeneration;
Glenn Kasten22340022014-04-07 12:04:41 -0700259 }
260
261 // now process added tracks
262 unsigned addedTracks = currentTrackMask & ~previousTrackMask;
263 while (addedTracks != 0) {
264 int i = __builtin_ctz(addedTracks);
265 addedTracks &= ~(1 << i);
266 const FastTrack* fastTrack = &current->mFastTracks[i];
267 AudioBufferProvider *bufferProvider = fastTrack->mBufferProvider;
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800268 ALOG_ASSERT(bufferProvider != NULL && mFastTrackNames[i] == -1);
269 if (mMixer != NULL) {
270 name = mMixer->getTrackName(fastTrack->mChannelMask,
Andy Hunge8a1ced2014-05-09 15:02:21 -0700271 fastTrack->mFormat, AUDIO_SESSION_OUTPUT_MIX);
Glenn Kasten22340022014-04-07 12:04:41 -0700272 ALOG_ASSERT(name >= 0);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800273 mFastTrackNames[i] = name;
274 mMixer->setBufferProvider(name, bufferProvider);
275 mMixer->setParameter(name, AudioMixer::TRACK, AudioMixer::MAIN_BUFFER,
Andy Hung9a592762014-07-21 21:56:01 -0700276 (void *)mMixerBuffer);
Glenn Kasten22340022014-04-07 12:04:41 -0700277 // newly allocated track names default to full scale volume
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800278 mMixer->setParameter(
Andy Hung1258c1a2014-05-23 21:22:17 -0700279 name,
280 AudioMixer::TRACK,
281 AudioMixer::MIXER_FORMAT, (void *)mMixerBufferFormat);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800282 mMixer->setParameter(name, AudioMixer::TRACK, AudioMixer::FORMAT,
Andy Hungef7c7fb2014-05-12 16:51:41 -0700283 (void *)(uintptr_t)fastTrack->mFormat);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800284 mMixer->setParameter(name, AudioMixer::TRACK, AudioMixer::CHANNEL_MASK,
Andy Hung9a592762014-07-21 21:56:01 -0700285 (void *)(uintptr_t)fastTrack->mChannelMask);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800286 mMixer->setParameter(name, AudioMixer::TRACK, AudioMixer::MIXER_CHANNEL_MASK,
Andy Hung9a592762014-07-21 21:56:01 -0700287 (void *)(uintptr_t)mSinkChannelMask);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800288 mMixer->enable(name);
Glenn Kasten22340022014-04-07 12:04:41 -0700289 }
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800290 mGenerations[i] = fastTrack->mGeneration;
Glenn Kasten22340022014-04-07 12:04:41 -0700291 }
292
293 // finally process (potentially) modified tracks; these use the same slot
294 // but may have a different buffer provider or volume provider
295 unsigned modifiedTracks = currentTrackMask & previousTrackMask;
296 while (modifiedTracks != 0) {
297 int i = __builtin_ctz(modifiedTracks);
298 modifiedTracks &= ~(1 << i);
299 const FastTrack* fastTrack = &current->mFastTracks[i];
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800300 if (fastTrack->mGeneration != mGenerations[i]) {
Glenn Kasten22340022014-04-07 12:04:41 -0700301 // this track was actually modified
302 AudioBufferProvider *bufferProvider = fastTrack->mBufferProvider;
303 ALOG_ASSERT(bufferProvider != NULL);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800304 if (mMixer != NULL) {
305 name = mFastTrackNames[i];
Glenn Kasten22340022014-04-07 12:04:41 -0700306 ALOG_ASSERT(name >= 0);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800307 mMixer->setBufferProvider(name, bufferProvider);
Glenn Kasten22340022014-04-07 12:04:41 -0700308 if (fastTrack->mVolumeProvider == NULL) {
Andy Hung6be49402014-05-30 10:42:03 -0700309 float f = AudioMixer::UNITY_GAIN_FLOAT;
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800310 mMixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME0, &f);
311 mMixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME1, &f);
Glenn Kasten288ed212012-04-25 17:52:27 -0700312 }
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800313 mMixer->setParameter(name, AudioMixer::RESAMPLE,
Glenn Kasten22340022014-04-07 12:04:41 -0700314 AudioMixer::REMOVE, NULL);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800315 mMixer->setParameter(
Andy Hung1258c1a2014-05-23 21:22:17 -0700316 name,
317 AudioMixer::TRACK,
318 AudioMixer::MIXER_FORMAT, (void *)mMixerBufferFormat);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800319 mMixer->setParameter(name, AudioMixer::TRACK, AudioMixer::FORMAT,
Andy Hungef7c7fb2014-05-12 16:51:41 -0700320 (void *)(uintptr_t)fastTrack->mFormat);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800321 mMixer->setParameter(name, AudioMixer::TRACK, AudioMixer::CHANNEL_MASK,
Andy Hung9a592762014-07-21 21:56:01 -0700322 (void *)(uintptr_t)fastTrack->mChannelMask);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800323 mMixer->setParameter(name, AudioMixer::TRACK, AudioMixer::MIXER_CHANNEL_MASK,
Andy Hung9a592762014-07-21 21:56:01 -0700324 (void *)(uintptr_t)mSinkChannelMask);
Glenn Kasten22340022014-04-07 12:04:41 -0700325 // already enabled
326 }
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800327 mGenerations[i] = fastTrack->mGeneration;
Glenn Kasten22340022014-04-07 12:04:41 -0700328 }
329 }
330
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800331 mFastTracksGen = current->mFastTracksGen;
Glenn Kasten22340022014-04-07 12:04:41 -0700332
333 dumpState->mNumTracks = popcount(currentTrackMask);
334 }
335}
336
337void FastMixer::onWork()
338{
Glenn Kasteneef598c2017-04-03 14:41:13 -0700339 LOG_HIST_TS();
Glenn Kasten4dd03b52015-03-03 11:32:04 -0800340 const FastMixerState * const current = (const FastMixerState *) mCurrent;
341 FastMixerDumpState * const dumpState = (FastMixerDumpState *) mDumpState;
342 const FastMixerState::Command command = mCommand;
Glenn Kasten22340022014-04-07 12:04:41 -0700343 const size_t frameCount = current->mFrameCount;
344
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800345 if ((command & FastMixerState::MIX) && (mMixer != NULL) && mIsWarm) {
Andy Hungef7c7fb2014-05-12 16:51:41 -0700346 ALOG_ASSERT(mMixerBuffer != NULL);
Mohan Kumar947ffa32014-12-12 15:16:46 +0530347
348 // AudioMixer::mState.enabledTracks is undefined if mState.hook == process__validate,
349 // so we keep a side copy of enabledTracks
350 bool anyEnabledTracks = false;
351
Glenn Kasten22340022014-04-07 12:04:41 -0700352 // for each track, update volume and check for underrun
353 unsigned currentTrackMask = current->mTrackMask;
354 while (currentTrackMask != 0) {
355 int i = __builtin_ctz(currentTrackMask);
356 currentTrackMask &= ~(1 << i);
357 const FastTrack* fastTrack = &current->mFastTracks[i];
358
Andy Hung818e7a32016-02-16 18:08:07 -0800359 const int64_t trackFramesWrittenButNotPresented =
360 mNativeFramesWrittenButNotPresented;
361 const int64_t trackFramesWritten = fastTrack->mBufferProvider->framesReleased();
362 ExtendedTimestamp perTrackTimestamp(mTimestamp);
363
364 // Can't provide an ExtendedTimestamp before first frame presented.
365 // Also, timestamp may not go to very last frame on stop().
366 if (trackFramesWritten >= trackFramesWrittenButNotPresented &&
367 perTrackTimestamp.mTimeNs[ExtendedTimestamp::LOCATION_KERNEL] > 0) {
368 perTrackTimestamp.mPosition[ExtendedTimestamp::LOCATION_KERNEL] =
369 trackFramesWritten - trackFramesWrittenButNotPresented;
370 } else {
371 perTrackTimestamp.mPosition[ExtendedTimestamp::LOCATION_KERNEL] = 0;
372 perTrackTimestamp.mTimeNs[ExtendedTimestamp::LOCATION_KERNEL] = -1;
Glenn Kasten22340022014-04-07 12:04:41 -0700373 }
Andy Hung818e7a32016-02-16 18:08:07 -0800374 perTrackTimestamp.mPosition[ExtendedTimestamp::LOCATION_SERVER] = trackFramesWritten;
375 fastTrack->mBufferProvider->onTimestamp(perTrackTimestamp);
Glenn Kasten22340022014-04-07 12:04:41 -0700376
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800377 int name = mFastTrackNames[i];
Glenn Kasten22340022014-04-07 12:04:41 -0700378 ALOG_ASSERT(name >= 0);
379 if (fastTrack->mVolumeProvider != NULL) {
Glenn Kastenc56f3422014-03-21 17:53:17 -0700380 gain_minifloat_packed_t vlr = fastTrack->mVolumeProvider->getVolumeLR();
Andy Hung6be49402014-05-30 10:42:03 -0700381 float vlf = float_from_gain(gain_minifloat_unpack_left(vlr));
382 float vrf = float_from_gain(gain_minifloat_unpack_right(vlr));
383
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800384 mMixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME0, &vlf);
385 mMixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME1, &vrf);
Glenn Kasten22340022014-04-07 12:04:41 -0700386 }
387 // FIXME The current implementation of framesReady() for fast tracks
388 // takes a tryLock, which can block
389 // up to 1 ms. If enough active tracks all blocked in sequence, this would result
390 // in the overall fast mix cycle being delayed. Should use a non-blocking FIFO.
391 size_t framesReady = fastTrack->mBufferProvider->framesReady();
392 if (ATRACE_ENABLED()) {
393 // I wish we had formatted trace names
394 char traceName[16];
395 strcpy(traceName, "fRdy");
396 traceName[4] = i + (i < 10 ? '0' : 'A' - 10);
397 traceName[5] = '\0';
398 ATRACE_INT(traceName, framesReady);
399 }
400 FastTrackDump *ftDump = &dumpState->mTracks[i];
401 FastTrackUnderruns underruns = ftDump->mUnderruns;
402 if (framesReady < frameCount) {
403 if (framesReady == 0) {
404 underruns.mBitFields.mEmpty++;
405 underruns.mBitFields.mMostRecent = UNDERRUN_EMPTY;
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800406 mMixer->disable(name);
Glenn Kasten09474df2012-05-10 14:48:07 -0700407 } else {
Glenn Kasten22340022014-04-07 12:04:41 -0700408 // allow mixing partial buffer
409 underruns.mBitFields.mPartial++;
410 underruns.mBitFields.mMostRecent = UNDERRUN_PARTIAL;
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800411 mMixer->enable(name);
Mohan Kumar947ffa32014-12-12 15:16:46 +0530412 anyEnabledTracks = true;
Glenn Kasten288ed212012-04-25 17:52:27 -0700413 }
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700414 } else {
Glenn Kasten22340022014-04-07 12:04:41 -0700415 underruns.mBitFields.mFull++;
416 underruns.mBitFields.mMostRecent = UNDERRUN_FULL;
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800417 mMixer->enable(name);
Mohan Kumar947ffa32014-12-12 15:16:46 +0530418 anyEnabledTracks = true;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700419 }
Glenn Kasten22340022014-04-07 12:04:41 -0700420 ftDump->mUnderruns = underruns;
421 ftDump->mFramesReady = framesReady;
Andy Hungb54c8542016-09-21 12:55:15 -0700422 ftDump->mFramesWritten = trackFramesWritten;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700423 }
424
Mohan Kumar947ffa32014-12-12 15:16:46 +0530425 if (anyEnabledTracks) {
426 // process() is CPU-bound
427 mMixer->process();
428 mMixerBufferState = MIXED;
429 } else if (mMixerBufferState != ZEROED) {
430 mMixerBufferState = UNDEFINED;
431 }
432
Andy Hung45d68d32014-05-23 21:13:31 -0700433 } else if (mMixerBufferState == MIXED) {
434 mMixerBufferState = UNDEFINED;
Glenn Kasten22340022014-04-07 12:04:41 -0700435 }
436 //bool didFullWrite = false; // dumpsys could display a count of partial writes
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800437 if ((command & FastMixerState::WRITE) && (mOutputSink != NULL) && (mMixerBuffer != NULL)) {
Andy Hung45d68d32014-05-23 21:13:31 -0700438 if (mMixerBufferState == UNDEFINED) {
Andy Hung1258c1a2014-05-23 21:22:17 -0700439 memset(mMixerBuffer, 0, mMixerBufferSize);
Andy Hung45d68d32014-05-23 21:13:31 -0700440 mMixerBufferState = ZEROED;
Glenn Kasten22340022014-04-07 12:04:41 -0700441 }
Andy Hung2ddee192015-12-18 17:34:44 -0800442
443 if (mMasterMono.load()) { // memory_order_seq_cst
Glenn Kastenc42e9b42016-03-21 11:35:03 -0700444 mono_blend(mMixerBuffer, mMixerBufferFormat, Format_channelCount(mFormat), frameCount,
445 true /*limit*/);
Andy Hung2ddee192015-12-18 17:34:44 -0800446 }
Glenn Kastenf59497b2015-01-26 16:35:47 -0800447 // prepare the buffer used to write to sink
Andy Hung1258c1a2014-05-23 21:22:17 -0700448 void *buffer = mSinkBuffer != NULL ? mSinkBuffer : mMixerBuffer;
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800449 if (mFormat.mFormat != mMixerBufferFormat) { // sink format not the same as mixer format
450 memcpy_by_audio_format(buffer, mFormat.mFormat, mMixerBuffer, mMixerBufferFormat,
451 frameCount * Format_channelCount(mFormat));
Andy Hung1258c1a2014-05-23 21:22:17 -0700452 }
Glenn Kasten22340022014-04-07 12:04:41 -0700453 // if non-NULL, then duplicate write() to this non-blocking sink
454 NBAIO_Sink* teeSink;
455 if ((teeSink = current->mTeeSink) != NULL) {
Glenn Kasten329f6512014-08-28 16:23:16 -0700456 (void) teeSink->write(buffer, frameCount);
Glenn Kasten22340022014-04-07 12:04:41 -0700457 }
458 // FIXME write() is non-blocking and lock-free for a properly implemented NBAIO sink,
459 // but this code should be modified to handle both non-blocking and blocking sinks
460 dumpState->mWriteSequence++;
461 ATRACE_BEGIN("write");
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800462 ssize_t framesWritten = mOutputSink->write(buffer, frameCount);
Glenn Kasten22340022014-04-07 12:04:41 -0700463 ATRACE_END();
464 dumpState->mWriteSequence++;
465 if (framesWritten >= 0) {
466 ALOG_ASSERT((size_t) framesWritten <= frameCount);
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800467 mTotalNativeFramesWritten += framesWritten;
468 dumpState->mFramesWritten = mTotalNativeFramesWritten;
Glenn Kasten22340022014-04-07 12:04:41 -0700469 //if ((size_t) framesWritten == frameCount) {
470 // didFullWrite = true;
471 //}
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700472 } else {
Glenn Kasten22340022014-04-07 12:04:41 -0700473 dumpState->mWriteErrors++;
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700474 }
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800475 mAttemptedWrite = true;
Glenn Kasten22340022014-04-07 12:04:41 -0700476 // FIXME count # of writes blocked excessively, CPU usage, etc. for dump
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700477
Andy Hung818e7a32016-02-16 18:08:07 -0800478 ExtendedTimestamp timestamp; // local
479 status_t status = mOutputSink->getTimestamp(timestamp);
480 if (status == NO_ERROR) {
481 const int64_t totalNativeFramesPresented =
482 timestamp.mPosition[ExtendedTimestamp::LOCATION_KERNEL];
Glenn Kastene4a7ce22015-03-03 11:23:17 -0800483 if (totalNativeFramesPresented <= mTotalNativeFramesWritten) {
484 mNativeFramesWrittenButNotPresented =
485 mTotalNativeFramesWritten - totalNativeFramesPresented;
Andy Hung818e7a32016-02-16 18:08:07 -0800486 mTimestamp.mPosition[ExtendedTimestamp::LOCATION_KERNEL] =
487 timestamp.mPosition[ExtendedTimestamp::LOCATION_KERNEL];
488 mTimestamp.mTimeNs[ExtendedTimestamp::LOCATION_KERNEL] =
489 timestamp.mTimeNs[ExtendedTimestamp::LOCATION_KERNEL];
Glenn Kasten22340022014-04-07 12:04:41 -0700490 } else {
491 // HAL reported that more frames were presented than were written
Andy Hung818e7a32016-02-16 18:08:07 -0800492 mNativeFramesWrittenButNotPresented = 0;
Andy Hung818e7a32016-02-16 18:08:07 -0800493 status = INVALID_OPERATION;
Glenn Kasten22340022014-04-07 12:04:41 -0700494 }
495 }
Andy Hung818e7a32016-02-16 18:08:07 -0800496 if (status == NO_ERROR) {
497 mTimestamp.mTimeNs[ExtendedTimestamp::LOCATION_SERVER] =
498 mTimestamp.mTimeNs[ExtendedTimestamp::LOCATION_KERNEL];
499 } else {
500 // fetch server time if we can't get timestamp
501 mTimestamp.mTimeNs[ExtendedTimestamp::LOCATION_SERVER] =
502 systemTime(SYSTEM_TIME_MONOTONIC);
Andy Hung07eee802016-06-21 16:47:16 -0700503 // clear out kernel cached position as this may get rapidly stale
504 // if we never get a new valid timestamp
505 mTimestamp.mPosition[ExtendedTimestamp::LOCATION_KERNEL] = 0;
506 mTimestamp.mTimeNs[ExtendedTimestamp::LOCATION_KERNEL] = -1;
Andy Hung818e7a32016-02-16 18:08:07 -0800507 }
Glenn Kasten22340022014-04-07 12:04:41 -0700508 }
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700509}
510
Glenn Kasten97b5d0d2012-03-23 18:54:19 -0700511} // namespace android