blob: ab050e6d4a25c76ffb5d501680cf5b548f0847c0 [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
21
Glenn Kasten153b9fe2013-07-15 11:23:36 -070022#include "Configuration.h"
Glenn Kastenad8510a2015-02-17 16:24:07 -080023#include <linux/futex.h>
Eric Laurent81784c32012-11-19 14:55:58 -080024#include <math.h>
Elliott Hughesee499292014-05-21 17:55:51 -070025#include <sys/syscall.h>
Eric Laurent81784c32012-11-19 14:55:58 -080026#include <utils/Log.h>
27
28#include <private/media/AudioTrackShared.h>
29
Eric Laurent81784c32012-11-19 14:55:58 -080030#include "AudioMixer.h"
31#include "AudioFlinger.h"
32#include "ServiceUtilities.h"
33
Glenn Kastenda6ef132013-01-10 12:31:01 -080034#include <media/nbaio/Pipe.h>
35#include <media/nbaio/PipeReader.h>
Glenn Kastenc56f3422014-03-21 17:53:17 -070036#include <audio_utils/minifloat.h>
Glenn Kastenda6ef132013-01-10 12:31:01 -080037
Eric Laurent81784c32012-11-19 14:55:58 -080038// ----------------------------------------------------------------------------
39
40// Note: the following macro is used for extremely verbose logging message. In
41// order to run with ALOG_ASSERT turned on, we need to have LOG_NDEBUG set to
42// 0; but one side effect of this is to turn all LOGV's as well. Some messages
43// are so verbose that we want to suppress them even when we have ALOG_ASSERT
44// turned on. Do not uncomment the #def below unless you really know what you
45// are doing and want to see all of the extremely verbose messages.
46//#define VERY_VERY_VERBOSE_LOGGING
47#ifdef VERY_VERY_VERBOSE_LOGGING
48#define ALOGVV ALOGV
49#else
50#define ALOGVV(a...) do { } while(0)
51#endif
52
Andy Hunge10393e2015-06-12 13:59:33 -070053// TODO move to a common header (Also shared with AudioTrack.cpp)
54#define NANOS_PER_SECOND 1000000000
55#define TIME_TO_NANOS(time) ((uint64_t)time.tv_sec * NANOS_PER_SECOND + time.tv_nsec)
56
Eric Laurent81784c32012-11-19 14:55:58 -080057namespace android {
58
59// ----------------------------------------------------------------------------
60// TrackBase
61// ----------------------------------------------------------------------------
62
Glenn Kastenda6ef132013-01-10 12:31:01 -080063static volatile int32_t nextTrackId = 55;
64
Eric Laurent81784c32012-11-19 14:55:58 -080065// TrackBase constructor must be called with AudioFlinger::mLock held
66AudioFlinger::ThreadBase::TrackBase::TrackBase(
67 ThreadBase *thread,
68 const sp<Client>& client,
69 uint32_t sampleRate,
70 audio_format_t format,
71 audio_channel_mask_t channelMask,
72 size_t frameCount,
Eric Laurent83b88082014-06-20 18:31:16 -070073 void *buffer,
Glenn Kastend848eb42016-03-08 13:42:11 -080074 audio_session_t sessionId,
Marco Nelissen462fd2f2013-01-14 14:12:05 -080075 int clientUid,
Glenn Kasten755b0a62014-05-13 11:30:28 -070076 IAudioFlinger::track_flags_t flags,
Glenn Kastend776ac62014-05-07 09:16:09 -070077 bool isOut,
Eric Laurent83b88082014-06-20 18:31:16 -070078 alloc_type alloc,
79 track_type type)
Eric Laurent81784c32012-11-19 14:55:58 -080080 : RefBase(),
81 mThread(thread),
82 mClient(client),
83 mCblk(NULL),
84 // mBuffer
Eric Laurent81784c32012-11-19 14:55:58 -080085 mState(IDLE),
86 mSampleRate(sampleRate),
87 mFormat(format),
88 mChannelMask(channelMask),
Andy Hunge5412692014-05-16 11:25:07 -070089 mChannelCount(isOut ?
90 audio_channel_count_from_out_mask(channelMask) :
91 audio_channel_count_from_in_mask(channelMask)),
Phil Burkfdb3c072016-02-09 10:47:02 -080092 mFrameSize(audio_has_proportional_frames(format) ?
Eric Laurent81784c32012-11-19 14:55:58 -080093 mChannelCount * audio_bytes_per_sample(format) : sizeof(int8_t)),
94 mFrameCount(frameCount),
Glenn Kastene3aa6592012-12-04 12:22:46 -080095 mSessionId(sessionId),
Glenn Kasten755b0a62014-05-13 11:30:28 -070096 mFlags(flags),
Glenn Kastene3aa6592012-12-04 12:22:46 -080097 mIsOut(isOut),
Glenn Kastenda6ef132013-01-10 12:31:01 -080098 mServerProxy(NULL),
Eric Laurentbfb1b832013-01-07 09:53:42 -080099 mId(android_atomic_inc(&nextTrackId)),
Eric Laurent83b88082014-06-20 18:31:16 -0700100 mTerminated(false),
Eric Laurentaaa44472014-09-12 17:41:50 -0700101 mType(type),
102 mThreadIoHandle(thread->id())
Eric Laurent81784c32012-11-19 14:55:58 -0800103{
Marco Nelissendcb346b2015-09-09 10:47:29 -0700104 const uid_t callingUid = IPCThreadState::self()->getCallingUid();
105 if (!isTrustedCallingUid(callingUid) || clientUid == -1) {
106 ALOGW_IF(clientUid != -1 && clientUid != (int)callingUid,
107 "%s uid %d tried to pass itself off as %d", __FUNCTION__, callingUid, clientUid);
108 clientUid = (int)callingUid;
Marco Nelissen462fd2f2013-01-14 14:12:05 -0800109 }
110 // clientUid contains the uid of the app that is responsible for this track, so we can blame
111 // battery usage on it.
112 mUid = clientUid;
113
Eric Laurent81784c32012-11-19 14:55:58 -0800114 // ALOGD("Creating track with %d buffers @ %d bytes", bufferCount, bufferSize);
Andy Hungeaa39692017-02-13 18:48:39 -0800115
116 size_t bufferSize = buffer == NULL ? roundup(frameCount) : frameCount;
117 // check overflow when computing bufferSize due to multiplication by mFrameSize.
118 if (bufferSize < frameCount // roundup rounds down for values above UINT_MAX / 2
119 || mFrameSize == 0 // format needs to be correct
120 || bufferSize > SIZE_MAX / mFrameSize) {
121 android_errorWriteLog(0x534e4554, "34749571");
122 return;
123 }
124 bufferSize *= mFrameSize;
125
Eric Laurent81784c32012-11-19 14:55:58 -0800126 size_t size = sizeof(audio_track_cblk_t);
Eric Laurent83b88082014-06-20 18:31:16 -0700127 if (buffer == NULL && alloc == ALLOC_CBLK) {
Andy Hungeaa39692017-02-13 18:48:39 -0800128 // check overflow when computing allocation size for streaming tracks.
129 if (size > SIZE_MAX - bufferSize) {
130 android_errorWriteLog(0x534e4554, "34749571");
131 return;
132 }
Eric Laurent81784c32012-11-19 14:55:58 -0800133 size += bufferSize;
134 }
135
136 if (client != 0) {
137 mCblkMemory = client->heap()->allocate(size);
Glenn Kasten663c2242013-09-24 11:52:37 -0700138 if (mCblkMemory == 0 ||
139 (mCblk = static_cast<audio_track_cblk_t *>(mCblkMemory->pointer())) == NULL) {
Glenn Kastenc42e9b42016-03-21 11:35:03 -0700140 ALOGE("not enough memory for AudioTrack size=%zu", size);
Eric Laurent81784c32012-11-19 14:55:58 -0800141 client->heap()->dump("AudioTrack");
Glenn Kasten663c2242013-09-24 11:52:37 -0700142 mCblkMemory.clear();
Eric Laurent81784c32012-11-19 14:55:58 -0800143 return;
144 }
145 } else {
Andy Hung1159ffd2017-02-13 18:50:48 -0800146 mCblk = (audio_track_cblk_t *) malloc(size);
147 if (mCblk == NULL) {
148 ALOGE("not enough memory for AudioTrack size=%zu", size);
149 return;
150 }
Eric Laurent81784c32012-11-19 14:55:58 -0800151 }
152
153 // construct the shared structure in-place.
154 if (mCblk != NULL) {
155 new(mCblk) audio_track_cblk_t();
Glenn Kastenc263ca02014-06-04 20:31:46 -0700156 switch (alloc) {
157 case ALLOC_READONLY: {
Glenn Kastend776ac62014-05-07 09:16:09 -0700158 const sp<MemoryDealer> roHeap(thread->readOnlyHeap());
159 if (roHeap == 0 ||
160 (mBufferMemory = roHeap->allocate(bufferSize)) == 0 ||
161 (mBuffer = mBufferMemory->pointer()) == NULL) {
162 ALOGE("not enough memory for read-only buffer size=%zu", bufferSize);
163 if (roHeap != 0) {
164 roHeap->dump("buffer");
165 }
166 mCblkMemory.clear();
167 mBufferMemory.clear();
168 return;
169 }
Eric Laurent81784c32012-11-19 14:55:58 -0800170 memset(mBuffer, 0, bufferSize);
Glenn Kastenc263ca02014-06-04 20:31:46 -0700171 } break;
172 case ALLOC_PIPE:
173 mBufferMemory = thread->pipeMemory();
174 // mBuffer is the virtual address as seen from current process (mediaserver),
175 // and should normally be coming from mBufferMemory->pointer().
176 // However in this case the TrackBase does not reference the buffer directly.
177 // It should references the buffer via the pipe.
178 // Therefore, to detect incorrect usage of the buffer, we set mBuffer to NULL.
179 mBuffer = NULL;
180 break;
181 case ALLOC_CBLK:
Glenn Kastend776ac62014-05-07 09:16:09 -0700182 // clear all buffers
Eric Laurent83b88082014-06-20 18:31:16 -0700183 if (buffer == NULL) {
Glenn Kastend776ac62014-05-07 09:16:09 -0700184 mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
185 memset(mBuffer, 0, bufferSize);
186 } else {
Eric Laurent83b88082014-06-20 18:31:16 -0700187 mBuffer = buffer;
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800188#if 0
Glenn Kastend776ac62014-05-07 09:16:09 -0700189 mCblk->mFlags = CBLK_FORCEREADY; // FIXME hack, need to fix the track ready logic
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800190#endif
Glenn Kastend776ac62014-05-07 09:16:09 -0700191 }
Glenn Kastenc263ca02014-06-04 20:31:46 -0700192 break;
Eric Laurent83b88082014-06-20 18:31:16 -0700193 case ALLOC_LOCAL:
194 mBuffer = calloc(1, bufferSize);
195 break;
196 case ALLOC_NONE:
197 mBuffer = buffer;
198 break;
Eric Laurent81784c32012-11-19 14:55:58 -0800199 }
Glenn Kastenda6ef132013-01-10 12:31:01 -0800200
Glenn Kasten46909e72013-02-26 09:20:22 -0800201#ifdef TEE_SINK
Glenn Kastenda6ef132013-01-10 12:31:01 -0800202 if (mTeeSinkTrackEnabled) {
Glenn Kasten329f6512014-08-28 16:23:16 -0700203 NBAIO_Format pipeFormat = Format_from_SR_C(mSampleRate, mChannelCount, mFormat);
Glenn Kasten6e0d67d2014-01-31 09:41:08 -0800204 if (Format_isValid(pipeFormat)) {
Glenn Kasten46909e72013-02-26 09:20:22 -0800205 Pipe *pipe = new Pipe(mTeeSinkTrackFrames, pipeFormat);
206 size_t numCounterOffers = 0;
207 const NBAIO_Format offers[1] = {pipeFormat};
208 ssize_t index = pipe->negotiate(offers, 1, NULL, numCounterOffers);
209 ALOG_ASSERT(index == 0);
210 PipeReader *pipeReader = new PipeReader(*pipe);
211 numCounterOffers = 0;
212 index = pipeReader->negotiate(offers, 1, NULL, numCounterOffers);
213 ALOG_ASSERT(index == 0);
214 mTeeSink = pipe;
215 mTeeSource = pipeReader;
216 }
Glenn Kastenda6ef132013-01-10 12:31:01 -0800217 }
Glenn Kasten46909e72013-02-26 09:20:22 -0800218#endif
Glenn Kastenda6ef132013-01-10 12:31:01 -0800219
Eric Laurent81784c32012-11-19 14:55:58 -0800220 }
221}
222
Eric Laurent83b88082014-06-20 18:31:16 -0700223status_t AudioFlinger::ThreadBase::TrackBase::initCheck() const
224{
225 status_t status;
226 if (mType == TYPE_OUTPUT || mType == TYPE_PATCH) {
227 status = cblk() != NULL ? NO_ERROR : NO_MEMORY;
228 } else {
229 status = getCblk() != 0 ? NO_ERROR : NO_MEMORY;
230 }
231 return status;
232}
233
Eric Laurent81784c32012-11-19 14:55:58 -0800234AudioFlinger::ThreadBase::TrackBase::~TrackBase()
235{
Glenn Kasten46909e72013-02-26 09:20:22 -0800236#ifdef TEE_SINK
Glenn Kastenda6ef132013-01-10 12:31:01 -0800237 dumpTee(-1, mTeeSource, mId);
Glenn Kasten46909e72013-02-26 09:20:22 -0800238#endif
Glenn Kastene3aa6592012-12-04 12:22:46 -0800239 // delete the proxy before deleting the shared memory it refers to, to avoid dangling reference
240 delete mServerProxy;
Eric Laurent81784c32012-11-19 14:55:58 -0800241 if (mCblk != NULL) {
Andy Hung1159ffd2017-02-13 18:50:48 -0800242 mCblk->~audio_track_cblk_t(); // destroy our shared-structure.
Eric Laurent81784c32012-11-19 14:55:58 -0800243 if (mClient == 0) {
Andy Hung1159ffd2017-02-13 18:50:48 -0800244 free(mCblk);
Eric Laurent81784c32012-11-19 14:55:58 -0800245 }
246 }
247 mCblkMemory.clear(); // free the shared memory before releasing the heap it belongs to
248 if (mClient != 0) {
Eric Laurent021cf962014-05-13 10:18:14 -0700249 // Client destructor must run with AudioFlinger client mutex locked
250 Mutex::Autolock _l(mClient->audioFlinger()->mClientLock);
Eric Laurent81784c32012-11-19 14:55:58 -0800251 // If the client's reference count drops to zero, the associated destructor
252 // must run with AudioFlinger lock held. Thus the explicit clear() rather than
253 // relying on the automatic clear() at end of scope.
254 mClient.clear();
255 }
Eric Laurent3bcffa12014-06-12 18:38:45 -0700256 // flush the binder command buffer
257 IPCThreadState::self()->flushCommands();
Eric Laurent81784c32012-11-19 14:55:58 -0800258}
259
260// AudioBufferProvider interface
261// getNextBuffer() = 0;
Glenn Kastend79072e2016-01-06 08:41:20 -0800262// This implementation of releaseBuffer() is used by Track and RecordTrack
Eric Laurent81784c32012-11-19 14:55:58 -0800263void AudioFlinger::ThreadBase::TrackBase::releaseBuffer(AudioBufferProvider::Buffer* buffer)
264{
Glenn Kasten46909e72013-02-26 09:20:22 -0800265#ifdef TEE_SINK
Glenn Kastenda6ef132013-01-10 12:31:01 -0800266 if (mTeeSink != 0) {
267 (void) mTeeSink->write(buffer->raw, buffer->frameCount);
268 }
Glenn Kasten46909e72013-02-26 09:20:22 -0800269#endif
Glenn Kastenda6ef132013-01-10 12:31:01 -0800270
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800271 ServerProxy::Buffer buf;
272 buf.mFrameCount = buffer->frameCount;
273 buf.mRaw = buffer->raw;
Eric Laurent81784c32012-11-19 14:55:58 -0800274 buffer->frameCount = 0;
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800275 buffer->raw = NULL;
276 mServerProxy->releaseBuffer(&buf);
Eric Laurent81784c32012-11-19 14:55:58 -0800277}
278
Eric Laurent81784c32012-11-19 14:55:58 -0800279status_t AudioFlinger::ThreadBase::TrackBase::setSyncEvent(const sp<SyncEvent>& event)
280{
281 mSyncEvents.add(event);
282 return NO_ERROR;
283}
284
285// ----------------------------------------------------------------------------
286// Playback
287// ----------------------------------------------------------------------------
288
289AudioFlinger::TrackHandle::TrackHandle(const sp<AudioFlinger::PlaybackThread::Track>& track)
290 : BnAudioTrack(),
291 mTrack(track)
292{
293}
294
295AudioFlinger::TrackHandle::~TrackHandle() {
296 // just stop the track on deletion, associated resources
297 // will be freed from the main thread once all pending buffers have
298 // been played. Unless it's not in the active track list, in which
299 // case we free everything now...
300 mTrack->destroy();
301}
302
303sp<IMemory> AudioFlinger::TrackHandle::getCblk() const {
304 return mTrack->getCblk();
305}
306
307status_t AudioFlinger::TrackHandle::start() {
308 return mTrack->start();
309}
310
311void AudioFlinger::TrackHandle::stop() {
312 mTrack->stop();
313}
314
315void AudioFlinger::TrackHandle::flush() {
316 mTrack->flush();
317}
318
Eric Laurent81784c32012-11-19 14:55:58 -0800319void AudioFlinger::TrackHandle::pause() {
320 mTrack->pause();
321}
322
323status_t AudioFlinger::TrackHandle::attachAuxEffect(int EffectId)
324{
325 return mTrack->attachAuxEffect(EffectId);
326}
327
Glenn Kasten3dcd00d2013-07-17 10:10:23 -0700328status_t AudioFlinger::TrackHandle::setParameters(const String8& keyValuePairs) {
329 return mTrack->setParameters(keyValuePairs);
330}
331
Glenn Kasten53cec222013-08-29 09:01:02 -0700332status_t AudioFlinger::TrackHandle::getTimestamp(AudioTimestamp& timestamp)
333{
Glenn Kasten573d80a2013-08-26 09:36:23 -0700334 return mTrack->getTimestamp(timestamp);
Glenn Kasten53cec222013-08-29 09:01:02 -0700335}
336
Eric Laurent59fe0102013-09-27 18:48:26 -0700337
338void AudioFlinger::TrackHandle::signal()
339{
340 return mTrack->signal();
341}
342
Eric Laurent81784c32012-11-19 14:55:58 -0800343status_t AudioFlinger::TrackHandle::onTransact(
344 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
345{
346 return BnAudioTrack::onTransact(code, data, reply, flags);
347}
348
349// ----------------------------------------------------------------------------
350
351// Track constructor must be called with AudioFlinger::mLock and ThreadBase::mLock held
352AudioFlinger::PlaybackThread::Track::Track(
353 PlaybackThread *thread,
354 const sp<Client>& client,
355 audio_stream_type_t streamType,
356 uint32_t sampleRate,
357 audio_format_t format,
358 audio_channel_mask_t channelMask,
359 size_t frameCount,
Eric Laurent83b88082014-06-20 18:31:16 -0700360 void *buffer,
Eric Laurent81784c32012-11-19 14:55:58 -0800361 const sp<IMemory>& sharedBuffer,
Glenn Kastend848eb42016-03-08 13:42:11 -0800362 audio_session_t sessionId,
Marco Nelissen462fd2f2013-01-14 14:12:05 -0800363 int uid,
Eric Laurent83b88082014-06-20 18:31:16 -0700364 IAudioFlinger::track_flags_t flags,
365 track_type type)
366 : TrackBase(thread, client, sampleRate, format, channelMask, frameCount,
367 (sharedBuffer != 0) ? sharedBuffer->pointer() : buffer,
368 sessionId, uid, flags, true /*isOut*/,
369 (type == TYPE_PATCH) ? ( buffer == NULL ? ALLOC_LOCAL : ALLOC_NONE) : ALLOC_CBLK,
370 type),
Eric Laurent81784c32012-11-19 14:55:58 -0800371 mFillingUpStatus(FS_INVALID),
372 // mRetryCount initialized later when needed
373 mSharedBuffer(sharedBuffer),
374 mStreamType(streamType),
375 mName(-1), // see note below
376 mMainBuffer(thread->mixBuffer()),
377 mAuxBuffer(NULL),
378 mAuxEffectId(0), mHasVolumeController(false),
379 mPresentationCompleteFrames(0),
Andy Hunge10393e2015-06-12 13:59:33 -0700380 mFrameMap(16 /* sink-frame-to-track-frame map memory */),
Andy Hunge10393e2015-06-12 13:59:33 -0700381 // mSinkTimestamp
Eric Laurent81784c32012-11-19 14:55:58 -0800382 mFastIndex(-1),
Glenn Kasten5736c352012-12-04 12:12:34 -0800383 mCachedVolume(1.0),
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800384 mIsInvalid(false),
Eric Laurentbfb1b832013-01-07 09:53:42 -0800385 mAudioTrackServerProxy(NULL),
Haynes Mathew George7844f672014-01-15 12:32:55 -0800386 mResumeToStopping(false),
Phil Burk1b420972015-04-22 10:52:21 -0700387 mFlushHwPending(false)
Eric Laurent81784c32012-11-19 14:55:58 -0800388{
Eric Laurent83b88082014-06-20 18:31:16 -0700389 // client == 0 implies sharedBuffer == 0
390 ALOG_ASSERT(!(client == 0 && sharedBuffer != 0));
391
Eric Laurente93cc032016-05-05 10:15:10 -0700392 ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %zu", sharedBuffer->pointer(),
Eric Laurent83b88082014-06-20 18:31:16 -0700393 sharedBuffer->size());
394
Glenn Kasten3ef14ef2014-03-13 15:08:51 -0700395 if (mCblk == NULL) {
396 return;
Eric Laurent81784c32012-11-19 14:55:58 -0800397 }
Glenn Kasten3ef14ef2014-03-13 15:08:51 -0700398
399 if (sharedBuffer == 0) {
400 mAudioTrackServerProxy = new AudioTrackServerProxy(mCblk, mBuffer, frameCount,
Eric Laurent83b88082014-06-20 18:31:16 -0700401 mFrameSize, !isExternalTrack(), sampleRate);
Glenn Kasten3ef14ef2014-03-13 15:08:51 -0700402 } else {
Andy Hungf4aeab22017-06-12 17:22:46 -0700403 // Is the shared buffer of sufficient size?
404 // (frameCount * mFrameSize) is <= SIZE_MAX, checked in TrackBase.
405 if (sharedBuffer->size() < frameCount * mFrameSize) {
406 // Workaround: clear out mCblk to indicate track hasn't been properly created.
407 mCblk->~audio_track_cblk_t(); // destroy our shared-structure.
408 if (mClient == 0) {
409 free(mCblk);
410 }
411 mCblk = NULL;
412
413 mSharedBuffer.clear(); // release shared buffer early
414 android_errorWriteLog(0x534e4554, "38340117");
415 return;
416 }
417
Glenn Kasten3ef14ef2014-03-13 15:08:51 -0700418 mAudioTrackServerProxy = new StaticAudioTrackServerProxy(mCblk, mBuffer, frameCount,
419 mFrameSize);
420 }
421 mServerProxy = mAudioTrackServerProxy;
422
Glenn Kastenc263ca02014-06-04 20:31:46 -0700423 mName = thread->getTrackName_l(channelMask, format, sessionId);
Glenn Kasten3ef14ef2014-03-13 15:08:51 -0700424 if (mName < 0) {
425 ALOGE("no more track names available");
426 return;
427 }
428 // only allocate a fast track index if we were able to allocate a normal track name
429 if (flags & IAudioFlinger::TRACK_FAST) {
Andy Hunga5427822015-09-11 16:15:35 -0700430 // FIXME: Not calling framesReadyIsCalledByMultipleThreads() exposes a potential
431 // race with setSyncEvent(). However, if we call it, we cannot properly start
432 // static fast tracks (SoundPool) immediately after stopping.
433 //mAudioTrackServerProxy->framesReadyIsCalledByMultipleThreads();
Glenn Kasten3ef14ef2014-03-13 15:08:51 -0700434 ALOG_ASSERT(thread->mFastTrackAvailMask != 0);
435 int i = __builtin_ctz(thread->mFastTrackAvailMask);
Glenn Kastendc2c50b2016-04-21 08:13:14 -0700436 ALOG_ASSERT(0 < i && i < (int)FastMixerState::sMaxFastTracks);
Glenn Kasten3ef14ef2014-03-13 15:08:51 -0700437 // FIXME This is too eager. We allocate a fast track index before the
438 // fast track becomes active. Since fast tracks are a scarce resource,
439 // this means we are potentially denying other more important fast tracks from
440 // being created. It would be better to allocate the index dynamically.
441 mFastIndex = i;
Glenn Kasten3ef14ef2014-03-13 15:08:51 -0700442 thread->mFastTrackAvailMask &= ~(1 << i);
443 }
Eric Laurent81784c32012-11-19 14:55:58 -0800444}
445
446AudioFlinger::PlaybackThread::Track::~Track()
447{
448 ALOGV("PlaybackThread::Track destructor");
Glenn Kasten0c72b242013-09-11 09:14:16 -0700449
450 // The destructor would clear mSharedBuffer,
451 // but it will not push the decremented reference count,
452 // leaving the client's IMemory dangling indefinitely.
453 // This prevents that leak.
454 if (mSharedBuffer != 0) {
455 mSharedBuffer.clear();
Glenn Kasten0c72b242013-09-11 09:14:16 -0700456 }
Eric Laurent81784c32012-11-19 14:55:58 -0800457}
458
Glenn Kasten03003332013-08-06 15:40:54 -0700459status_t AudioFlinger::PlaybackThread::Track::initCheck() const
460{
461 status_t status = TrackBase::initCheck();
462 if (status == NO_ERROR && mName < 0) {
463 status = NO_MEMORY;
464 }
465 return status;
466}
467
Eric Laurent81784c32012-11-19 14:55:58 -0800468void AudioFlinger::PlaybackThread::Track::destroy()
469{
470 // NOTE: destroyTrack_l() can remove a strong reference to this Track
471 // by removing it from mTracks vector, so there is a risk that this Tracks's
472 // destructor is called. As the destructor needs to lock mLock,
473 // we must acquire a strong reference on this Track before locking mLock
474 // here so that the destructor is called only when exiting this function.
475 // On the other hand, as long as Track::destroy() is only called by
476 // TrackHandle destructor, the TrackHandle still holds a strong ref on
477 // this Track with its member mTrack.
478 sp<Track> keep(this);
479 { // scope for mLock
Eric Laurentaaa44472014-09-12 17:41:50 -0700480 bool wasActive = false;
Eric Laurent81784c32012-11-19 14:55:58 -0800481 sp<ThreadBase> thread = mThread.promote();
482 if (thread != 0) {
Eric Laurent81784c32012-11-19 14:55:58 -0800483 Mutex::Autolock _l(thread->mLock);
484 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
Eric Laurentaaa44472014-09-12 17:41:50 -0700485 wasActive = playbackThread->destroyTrack_l(this);
486 }
487 if (isExternalTrack() && !wasActive) {
Glenn Kastend848eb42016-03-08 13:42:11 -0800488 AudioSystem::releaseOutput(mThreadIoHandle, mStreamType, mSessionId);
Eric Laurent81784c32012-11-19 14:55:58 -0800489 }
490 }
491}
492
493/*static*/ void AudioFlinger::PlaybackThread::Track::appendDumpHeader(String8& result)
494{
Marco Nelissenb2208842014-02-07 14:00:50 -0800495 result.append(" Name Active Client Type Fmt Chn mask Session fCount S F SRate "
Glenn Kasten82aaf942013-07-17 16:05:07 -0700496 "L dB R dB Server Main buf Aux Buf Flags UndFrmCnt\n");
Eric Laurent81784c32012-11-19 14:55:58 -0800497}
498
Marco Nelissenb2208842014-02-07 14:00:50 -0800499void AudioFlinger::PlaybackThread::Track::dump(char* buffer, size_t size, bool active)
Eric Laurent81784c32012-11-19 14:55:58 -0800500{
Glenn Kastenc56f3422014-03-21 17:53:17 -0700501 gain_minifloat_packed_t vlr = mAudioTrackServerProxy->getVolumeLR();
Eric Laurent81784c32012-11-19 14:55:58 -0800502 if (isFastTrack()) {
Marco Nelissenb2208842014-02-07 14:00:50 -0800503 sprintf(buffer, " F %2d", mFastIndex);
504 } else if (mName >= AudioMixer::TRACK0) {
505 sprintf(buffer, " %4d", mName - AudioMixer::TRACK0);
Eric Laurent81784c32012-11-19 14:55:58 -0800506 } else {
Marco Nelissenb2208842014-02-07 14:00:50 -0800507 sprintf(buffer, " none");
Eric Laurent81784c32012-11-19 14:55:58 -0800508 }
509 track_state state = mState;
510 char stateChar;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800511 if (isTerminated()) {
Eric Laurent81784c32012-11-19 14:55:58 -0800512 stateChar = 'T';
Eric Laurentbfb1b832013-01-07 09:53:42 -0800513 } else {
514 switch (state) {
515 case IDLE:
516 stateChar = 'I';
517 break;
518 case STOPPING_1:
519 stateChar = 's';
520 break;
521 case STOPPING_2:
522 stateChar = '5';
523 break;
524 case STOPPED:
525 stateChar = 'S';
526 break;
527 case RESUMING:
528 stateChar = 'R';
529 break;
530 case ACTIVE:
531 stateChar = 'A';
532 break;
533 case PAUSING:
534 stateChar = 'p';
535 break;
536 case PAUSED:
537 stateChar = 'P';
538 break;
539 case FLUSHED:
540 stateChar = 'F';
541 break;
542 default:
543 stateChar = '?';
544 break;
545 }
Eric Laurent81784c32012-11-19 14:55:58 -0800546 }
547 char nowInUnderrun;
548 switch (mObservedUnderruns.mBitFields.mMostRecent) {
549 case UNDERRUN_FULL:
550 nowInUnderrun = ' ';
551 break;
552 case UNDERRUN_PARTIAL:
553 nowInUnderrun = '<';
554 break;
555 case UNDERRUN_EMPTY:
556 nowInUnderrun = '*';
557 break;
558 default:
559 nowInUnderrun = '?';
560 break;
561 }
Narayan Kamath1d6fa7a2014-02-11 13:47:53 +0000562 snprintf(&buffer[8], size-8, " %6s %6u %4u %08X %08X %7u %6zu %1c %1d %5u %5.2g %5.2g "
Kévin PETIT377b2ec2014-02-03 12:35:36 +0000563 "%08X %p %p 0x%03X %9u%c\n",
Marco Nelissenb2208842014-02-07 14:00:50 -0800564 active ? "yes" : "no",
Eric Laurent81784c32012-11-19 14:55:58 -0800565 (mClient == 0) ? getpid_cached : mClient->pid(),
566 mStreamType,
567 mFormat,
568 mChannelMask,
569 mSessionId,
Eric Laurent81784c32012-11-19 14:55:58 -0800570 mFrameCount,
571 stateChar,
Eric Laurent81784c32012-11-19 14:55:58 -0800572 mFillingUpStatus,
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800573 mAudioTrackServerProxy->getSampleRate(),
Glenn Kastenc56f3422014-03-21 17:53:17 -0700574 20.0 * log10(float_from_gain(gain_minifloat_unpack_left(vlr))),
575 20.0 * log10(float_from_gain(gain_minifloat_unpack_right(vlr))),
Glenn Kastenf20e1d82013-07-12 09:45:18 -0700576 mCblk->mServer,
Kévin PETIT377b2ec2014-02-03 12:35:36 +0000577 mMainBuffer,
578 mAuxBuffer,
Glenn Kasten96f60d82013-07-12 10:21:18 -0700579 mCblk->mFlags,
Glenn Kasten82aaf942013-07-17 16:05:07 -0700580 mAudioTrackServerProxy->getUnderrunFrames(),
Eric Laurent81784c32012-11-19 14:55:58 -0800581 nowInUnderrun);
582}
583
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800584uint32_t AudioFlinger::PlaybackThread::Track::sampleRate() const {
585 return mAudioTrackServerProxy->getSampleRate();
586}
587
Eric Laurent81784c32012-11-19 14:55:58 -0800588// AudioBufferProvider interface
589status_t AudioFlinger::PlaybackThread::Track::getNextBuffer(
Glenn Kastend79072e2016-01-06 08:41:20 -0800590 AudioBufferProvider::Buffer* buffer)
Eric Laurent81784c32012-11-19 14:55:58 -0800591{
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800592 ServerProxy::Buffer buf;
593 size_t desiredFrames = buffer->frameCount;
594 buf.mFrameCount = desiredFrames;
595 status_t status = mServerProxy->obtainBuffer(&buf);
596 buffer->frameCount = buf.mFrameCount;
597 buffer->raw = buf.mRaw;
598 if (buf.mFrameCount == 0) {
Glenn Kasten82aaf942013-07-17 16:05:07 -0700599 mAudioTrackServerProxy->tallyUnderrunFrames(desiredFrames);
Phil Burk2812d9e2016-01-04 10:34:30 -0800600 } else {
601 mAudioTrackServerProxy->tallyUnderrunFrames(0);
Eric Laurent81784c32012-11-19 14:55:58 -0800602 }
Phil Burk2812d9e2016-01-04 10:34:30 -0800603
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800604 return status;
Eric Laurent81784c32012-11-19 14:55:58 -0800605}
606
Glenn Kasten6466c9e2013-08-23 10:54:07 -0700607// releaseBuffer() is not overridden
608
609// ExtendedAudioBufferProvider interface
610
Andy Hung27876c02014-09-09 18:07:55 -0700611// framesReady() may return an approximation of the number of frames if called
612// from a different thread than the one calling Proxy->obtainBuffer() and
613// Proxy->releaseBuffer(). Also note there is no mutual exclusion in the
614// AudioTrackServerProxy so be especially careful calling with FastTracks.
Eric Laurent81784c32012-11-19 14:55:58 -0800615size_t AudioFlinger::PlaybackThread::Track::framesReady() const {
Andy Hung27876c02014-09-09 18:07:55 -0700616 if (mSharedBuffer != 0 && (isStopped() || isStopping())) {
617 // Static tracks return zero frames immediately upon stopping (for FastTracks).
618 // The remainder of the buffer is not drained.
619 return 0;
620 }
Glenn Kasten9f80dd22012-12-18 15:57:32 -0800621 return mAudioTrackServerProxy->framesReady();
Eric Laurent81784c32012-11-19 14:55:58 -0800622}
623
Andy Hung818e7a32016-02-16 18:08:07 -0800624int64_t AudioFlinger::PlaybackThread::Track::framesReleased() const
Glenn Kasten6466c9e2013-08-23 10:54:07 -0700625{
626 return mAudioTrackServerProxy->framesReleased();
627}
628
Andy Hung818e7a32016-02-16 18:08:07 -0800629void AudioFlinger::PlaybackThread::Track::onTimestamp(const ExtendedTimestamp &timestamp)
Andy Hung6ae58432016-02-16 18:32:24 -0800630{
631 // This call comes from a FastTrack and should be kept lockless.
632 // The server side frames are already translated to client frames.
Andy Hung818e7a32016-02-16 18:08:07 -0800633 mAudioTrackServerProxy->setTimestamp(timestamp);
Andy Hung6ae58432016-02-16 18:32:24 -0800634
Andy Hung818e7a32016-02-16 18:08:07 -0800635 // We do not set drained here, as FastTrack timestamp may not go to very last frame.
Andy Hung6ae58432016-02-16 18:32:24 -0800636}
637
Eric Laurent81784c32012-11-19 14:55:58 -0800638// Don't call for fast tracks; the framesReady() could result in priority inversion
639bool AudioFlinger::PlaybackThread::Track::isReady() const {
Krishnankutty Kolathappilly8d6c2922014-02-04 16:23:42 -0800640 if (mFillingUpStatus != FS_FILLING || isStopped() || isPausing()) {
641 return true;
642 }
643
Eric Laurent16498512014-03-17 17:22:08 -0700644 if (isStopping()) {
645 if (framesReady() > 0) {
646 mFillingUpStatus = FS_FILLED;
647 }
Eric Laurent81784c32012-11-19 14:55:58 -0800648 return true;
649 }
650
Phil Burke8972b02016-03-04 11:29:57 -0800651 if (framesReady() >= mServerProxy->getBufferSizeInFrames() ||
Glenn Kasten96f60d82013-07-12 10:21:18 -0700652 (mCblk->mFlags & CBLK_FORCEREADY)) {
Eric Laurent81784c32012-11-19 14:55:58 -0800653 mFillingUpStatus = FS_FILLED;
Glenn Kasten96f60d82013-07-12 10:21:18 -0700654 android_atomic_and(~CBLK_FORCEREADY, &mCblk->mFlags);
Eric Laurent81784c32012-11-19 14:55:58 -0800655 return true;
656 }
657 return false;
658}
659
Glenn Kasten0f11b512014-01-31 16:18:54 -0800660status_t AudioFlinger::PlaybackThread::Track::start(AudioSystem::sync_event_t event __unused,
Glenn Kastend848eb42016-03-08 13:42:11 -0800661 audio_session_t triggerSession __unused)
Eric Laurent81784c32012-11-19 14:55:58 -0800662{
663 status_t status = NO_ERROR;
664 ALOGV("start(%d), calling pid %d session %d",
665 mName, IPCThreadState::self()->getCallingPid(), mSessionId);
666
667 sp<ThreadBase> thread = mThread.promote();
668 if (thread != 0) {
Eric Laurent813e2a72013-08-31 12:59:48 -0700669 if (isOffloaded()) {
670 Mutex::Autolock _laf(thread->mAudioFlinger->mLock);
671 Mutex::Autolock _lth(thread->mLock);
672 sp<EffectChain> ec = thread->getEffectChain_l(mSessionId);
Eric Laurent5baf2af2013-09-12 17:37:00 -0700673 if (thread->mAudioFlinger->isNonOffloadableGlobalEffectEnabled_l() ||
674 (ec != 0 && ec->isNonOffloadableEnabled())) {
Eric Laurent813e2a72013-08-31 12:59:48 -0700675 invalidate();
676 return PERMISSION_DENIED;
677 }
678 }
679 Mutex::Autolock _lth(thread->mLock);
Eric Laurent81784c32012-11-19 14:55:58 -0800680 track_state state = mState;
681 // here the track could be either new, or restarted
682 // in both cases "unstop" the track
Eric Laurentbfb1b832013-01-07 09:53:42 -0800683
Krishnankutty Kolathappilly8d6c2922014-02-04 16:23:42 -0800684 // initial state-stopping. next state-pausing.
685 // What if resume is called ?
686
687 if (state == PAUSED || state == PAUSING) {
Eric Laurentbfb1b832013-01-07 09:53:42 -0800688 if (mResumeToStopping) {
689 // happened we need to resume to STOPPING_1
690 mState = TrackBase::STOPPING_1;
691 ALOGV("PAUSED => STOPPING_1 (%d) on thread %p", mName, this);
692 } else {
693 mState = TrackBase::RESUMING;
694 ALOGV("PAUSED => RESUMING (%d) on thread %p", mName, this);
695 }
Eric Laurent81784c32012-11-19 14:55:58 -0800696 } else {
697 mState = TrackBase::ACTIVE;
698 ALOGV("? => ACTIVE (%d) on thread %p", mName, this);
699 }
700
Andy Hunge10393e2015-06-12 13:59:33 -0700701 // states to reset position info for non-offloaded/direct tracks
702 if (!isOffloaded() && !isDirect()
703 && (state == IDLE || state == STOPPED || state == FLUSHED)) {
704 mFrameMap.reset();
705 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800706 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
Haynes Mathew George240934b2015-03-11 18:25:50 -0700707 if (isFastTrack()) {
708 // refresh fast track underruns on start because that field is never cleared
709 // by the fast mixer; furthermore, the same track can be recycled, i.e. start
710 // after stop.
711 mObservedUnderruns = playbackThread->getFastTrackUnderruns(mFastIndex);
712 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800713 status = playbackThread->addTrack_l(this);
714 if (status == INVALID_OPERATION || status == PERMISSION_DENIED) {
Eric Laurent81784c32012-11-19 14:55:58 -0800715 triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800716 // restore previous state if start was rejected by policy manager
717 if (status == PERMISSION_DENIED) {
718 mState = state;
719 }
720 }
721 // track was already in the active list, not a problem
722 if (status == ALREADY_EXISTS) {
723 status = NO_ERROR;
Glenn Kasten12022ff2013-10-17 11:32:39 -0700724 } else {
725 // Acknowledge any pending flush(), so that subsequent new data isn't discarded.
726 // It is usually unsafe to access the server proxy from a binder thread.
727 // But in this case we know the mixer thread (whether normal mixer or fast mixer)
728 // isn't looking at this track yet: we still hold the normal mixer thread lock,
729 // and for fast tracks the track is not yet in the fast mixer thread's active set.
Andy Hunge6fb82a2015-09-09 14:39:02 -0700730 // For static tracks, this is used to acknowledge change in position or loop.
Eric Laurent564d1442015-09-09 12:26:52 -0700731 ServerProxy::Buffer buffer;
732 buffer.mFrameCount = 1;
733 (void) mAudioTrackServerProxy->obtainBuffer(&buffer, true /*ackFlush*/);
Eric Laurent81784c32012-11-19 14:55:58 -0800734 }
735 } else {
736 status = BAD_VALUE;
737 }
738 return status;
739}
740
741void AudioFlinger::PlaybackThread::Track::stop()
742{
743 ALOGV("stop(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
744 sp<ThreadBase> thread = mThread.promote();
745 if (thread != 0) {
746 Mutex::Autolock _l(thread->mLock);
747 track_state state = mState;
748 if (state == RESUMING || state == ACTIVE || state == PAUSING || state == PAUSED) {
749 // If the track is not active (PAUSED and buffers full), flush buffers
750 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
751 if (playbackThread->mActiveTracks.indexOf(this) < 0) {
752 reset();
753 mState = STOPPED;
Eric Laurentab5cdba2014-06-09 17:22:27 -0700754 } else if (!isFastTrack() && !isOffloaded() && !isDirect()) {
Eric Laurent81784c32012-11-19 14:55:58 -0800755 mState = STOPPED;
756 } else {
Eric Laurentbfb1b832013-01-07 09:53:42 -0800757 // For fast tracks prepareTracks_l() will set state to STOPPING_2
758 // presentation is complete
759 // For an offloaded track this starts a drain and state will
760 // move to STOPPING_2 when drain completes and then STOPPED
Eric Laurent81784c32012-11-19 14:55:58 -0800761 mState = STOPPING_1;
Eric Laurente93cc032016-05-05 10:15:10 -0700762 if (isOffloaded()) {
763 mRetryCount = PlaybackThread::kMaxTrackStopRetriesOffload;
764 }
Eric Laurent81784c32012-11-19 14:55:58 -0800765 }
Eric Laurentb369caf2015-03-30 20:51:47 -0700766 playbackThread->broadcast_l();
Eric Laurent81784c32012-11-19 14:55:58 -0800767 ALOGV("not stopping/stopped => stopping/stopped (%d) on thread %p", mName,
768 playbackThread);
769 }
Eric Laurent81784c32012-11-19 14:55:58 -0800770 }
771}
772
773void AudioFlinger::PlaybackThread::Track::pause()
774{
775 ALOGV("pause(%d), calling pid %d", mName, IPCThreadState::self()->getCallingPid());
776 sp<ThreadBase> thread = mThread.promote();
777 if (thread != 0) {
778 Mutex::Autolock _l(thread->mLock);
Eric Laurentbfb1b832013-01-07 09:53:42 -0800779 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
780 switch (mState) {
781 case STOPPING_1:
782 case STOPPING_2:
783 if (!isOffloaded()) {
784 /* nothing to do if track is not offloaded */
785 break;
786 }
787
788 // Offloaded track was draining, we need to carry on draining when resumed
789 mResumeToStopping = true;
790 // fall through...
791 case ACTIVE:
792 case RESUMING:
Eric Laurent81784c32012-11-19 14:55:58 -0800793 mState = PAUSING;
794 ALOGV("ACTIVE/RESUMING => PAUSING (%d) on thread %p", mName, thread.get());
Eric Laurentede6c3b2013-09-19 14:37:46 -0700795 playbackThread->broadcast_l();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800796 break;
Eric Laurent81784c32012-11-19 14:55:58 -0800797
Eric Laurentbfb1b832013-01-07 09:53:42 -0800798 default:
799 break;
Eric Laurent81784c32012-11-19 14:55:58 -0800800 }
801 }
802}
803
804void AudioFlinger::PlaybackThread::Track::flush()
805{
806 ALOGV("flush(%d)", mName);
807 sp<ThreadBase> thread = mThread.promote();
808 if (thread != 0) {
809 Mutex::Autolock _l(thread->mLock);
Eric Laurent81784c32012-11-19 14:55:58 -0800810 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800811
812 if (isOffloaded()) {
813 // If offloaded we allow flush during any state except terminated
814 // and keep the track active to avoid problems if user is seeking
815 // rapidly and underlying hardware has a significant delay handling
816 // a pause
817 if (isTerminated()) {
818 return;
819 }
820
821 ALOGV("flush: offload flush");
Eric Laurent81784c32012-11-19 14:55:58 -0800822 reset();
Eric Laurentbfb1b832013-01-07 09:53:42 -0800823
824 if (mState == STOPPING_1 || mState == STOPPING_2) {
825 ALOGV("flushed in STOPPING_1 or 2 state, change state to ACTIVE");
826 mState = ACTIVE;
827 }
828
Haynes Mathew George7844f672014-01-15 12:32:55 -0800829 mFlushHwPending = true;
Eric Laurentbfb1b832013-01-07 09:53:42 -0800830 mResumeToStopping = false;
831 } else {
832 if (mState != STOPPING_1 && mState != STOPPING_2 && mState != STOPPED &&
833 mState != PAUSED && mState != PAUSING && mState != IDLE && mState != FLUSHED) {
834 return;
835 }
836 // No point remaining in PAUSED state after a flush => go to
837 // FLUSHED state
838 mState = FLUSHED;
839 // do not reset the track if it is still in the process of being stopped or paused.
840 // this will be done by prepareTracks_l() when the track is stopped.
841 // prepareTracks_l() will see mState == FLUSHED, then
842 // remove from active track list, reset(), and trigger presentation complete
Eric Laurentd1f69b02014-12-15 14:33:13 -0800843 if (isDirect()) {
844 mFlushHwPending = true;
845 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800846 if (playbackThread->mActiveTracks.indexOf(this) < 0) {
847 reset();
848 }
Eric Laurent81784c32012-11-19 14:55:58 -0800849 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800850 // Prevent flush being lost if the track is flushed and then resumed
851 // before mixer thread can run. This is important when offloading
852 // because the hardware buffer could hold a large amount of audio
Eric Laurentede6c3b2013-09-19 14:37:46 -0700853 playbackThread->broadcast_l();
Eric Laurent81784c32012-11-19 14:55:58 -0800854 }
855}
856
Haynes Mathew George7844f672014-01-15 12:32:55 -0800857// must be called with thread lock held
858void AudioFlinger::PlaybackThread::Track::flushAck()
859{
Eric Laurentd1f69b02014-12-15 14:33:13 -0800860 if (!isOffloaded() && !isDirect())
Haynes Mathew George7844f672014-01-15 12:32:55 -0800861 return;
862
863 mFlushHwPending = false;
864}
865
Eric Laurent81784c32012-11-19 14:55:58 -0800866void AudioFlinger::PlaybackThread::Track::reset()
867{
868 // Do not reset twice to avoid discarding data written just after a flush and before
869 // the audioflinger thread detects the track is stopped.
870 if (!mResetDone) {
Eric Laurent81784c32012-11-19 14:55:58 -0800871 // Force underrun condition to avoid false underrun callback until first data is
872 // written to buffer
Glenn Kasten96f60d82013-07-12 10:21:18 -0700873 android_atomic_and(~CBLK_FORCEREADY, &mCblk->mFlags);
Eric Laurent81784c32012-11-19 14:55:58 -0800874 mFillingUpStatus = FS_FILLING;
875 mResetDone = true;
876 if (mState == FLUSHED) {
877 mState = IDLE;
878 }
879 }
880}
881
Eric Laurentbfb1b832013-01-07 09:53:42 -0800882status_t AudioFlinger::PlaybackThread::Track::setParameters(const String8& keyValuePairs)
883{
884 sp<ThreadBase> thread = mThread.promote();
885 if (thread == 0) {
886 ALOGE("thread is dead");
887 return FAILED_TRANSACTION;
888 } else if ((thread->type() == ThreadBase::DIRECT) ||
889 (thread->type() == ThreadBase::OFFLOAD)) {
890 return thread->setParameters(keyValuePairs);
891 } else {
892 return PERMISSION_DENIED;
893 }
894}
895
Glenn Kasten573d80a2013-08-26 09:36:23 -0700896status_t AudioFlinger::PlaybackThread::Track::getTimestamp(AudioTimestamp& timestamp)
897{
Andy Hung818e7a32016-02-16 18:08:07 -0800898 if (!isOffloaded() && !isDirect()) {
899 return INVALID_OPERATION; // normal tracks handled through SSQ
Glenn Kastenfe346c72013-08-30 13:28:22 -0700900 }
Glenn Kasten573d80a2013-08-26 09:36:23 -0700901 sp<ThreadBase> thread = mThread.promote();
902 if (thread == 0) {
Glenn Kastenfe346c72013-08-30 13:28:22 -0700903 return INVALID_OPERATION;
Glenn Kasten573d80a2013-08-26 09:36:23 -0700904 }
Phil Burk6140c792015-03-19 14:30:21 -0700905
Glenn Kasten573d80a2013-08-26 09:36:23 -0700906 Mutex::Autolock _l(thread->mLock);
907 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
Andy Hung818e7a32016-02-16 18:08:07 -0800908 return playbackThread->getTimestamp_l(timestamp);
Glenn Kasten573d80a2013-08-26 09:36:23 -0700909}
910
Eric Laurent81784c32012-11-19 14:55:58 -0800911status_t AudioFlinger::PlaybackThread::Track::attachAuxEffect(int EffectId)
912{
913 status_t status = DEAD_OBJECT;
914 sp<ThreadBase> thread = mThread.promote();
915 if (thread != 0) {
916 PlaybackThread *playbackThread = (PlaybackThread *)thread.get();
917 sp<AudioFlinger> af = mClient->audioFlinger();
918
919 Mutex::Autolock _l(af->mLock);
920
921 sp<PlaybackThread> srcThread = af->getEffectThread_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
922
923 if (EffectId != 0 && srcThread != 0 && playbackThread != srcThread.get()) {
924 Mutex::Autolock _dl(playbackThread->mLock);
925 Mutex::Autolock _sl(srcThread->mLock);
926 sp<EffectChain> chain = srcThread->getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX);
927 if (chain == 0) {
928 return INVALID_OPERATION;
929 }
930
931 sp<EffectModule> effect = chain->getEffectFromId_l(EffectId);
932 if (effect == 0) {
933 return INVALID_OPERATION;
934 }
935 srcThread->removeEffect_l(effect);
Eric Laurent5baf2af2013-09-12 17:37:00 -0700936 status = playbackThread->addEffect_l(effect);
937 if (status != NO_ERROR) {
938 srcThread->addEffect_l(effect);
939 return INVALID_OPERATION;
940 }
Eric Laurent81784c32012-11-19 14:55:58 -0800941 // removeEffect_l() has stopped the effect if it was active so it must be restarted
942 if (effect->state() == EffectModule::ACTIVE ||
943 effect->state() == EffectModule::STOPPING) {
944 effect->start();
945 }
946
947 sp<EffectChain> dstChain = effect->chain().promote();
948 if (dstChain == 0) {
949 srcThread->addEffect_l(effect);
950 return INVALID_OPERATION;
951 }
952 AudioSystem::unregisterEffect(effect->id());
953 AudioSystem::registerEffect(&effect->desc(),
954 srcThread->id(),
955 dstChain->strategy(),
956 AUDIO_SESSION_OUTPUT_MIX,
957 effect->id());
Eric Laurentd72b7c02013-10-12 16:17:46 -0700958 AudioSystem::setEffectEnabled(effect->id(), effect->isEnabled());
Eric Laurent81784c32012-11-19 14:55:58 -0800959 }
960 status = playbackThread->attachAuxEffect(this, EffectId);
961 }
962 return status;
963}
964
965void AudioFlinger::PlaybackThread::Track::setAuxBuffer(int EffectId, int32_t *buffer)
966{
967 mAuxEffectId = EffectId;
968 mAuxBuffer = buffer;
969}
970
Andy Hung818e7a32016-02-16 18:08:07 -0800971bool AudioFlinger::PlaybackThread::Track::presentationComplete(
972 int64_t framesWritten, size_t audioHalFrames)
Eric Laurent81784c32012-11-19 14:55:58 -0800973{
Andy Hung818e7a32016-02-16 18:08:07 -0800974 // TODO: improve this based on FrameMap if it exists, to ensure full drain.
975 // This assists in proper timestamp computation as well as wakelock management.
976
Eric Laurent81784c32012-11-19 14:55:58 -0800977 // a track is considered presented when the total number of frames written to audio HAL
978 // corresponds to the number of frames written when presentationComplete() is called for the
979 // first time (mPresentationCompleteFrames == 0) plus the buffer filling status at that time.
Eric Laurentbfb1b832013-01-07 09:53:42 -0800980 // For an offloaded track the HAL+h/w delay is variable so a HAL drain() is used
981 // to detect when all frames have been played. In this case framesWritten isn't
982 // useful because it doesn't always reflect whether there is data in the h/w
983 // buffers, particularly if a track has been paused and resumed during draining
Andy Hung818e7a32016-02-16 18:08:07 -0800984 ALOGV("presentationComplete() mPresentationCompleteFrames %lld framesWritten %lld",
985 (long long)mPresentationCompleteFrames, (long long)framesWritten);
Eric Laurent81784c32012-11-19 14:55:58 -0800986 if (mPresentationCompleteFrames == 0) {
987 mPresentationCompleteFrames = framesWritten + audioHalFrames;
Andy Hung818e7a32016-02-16 18:08:07 -0800988 ALOGV("presentationComplete() reset: mPresentationCompleteFrames %lld audioHalFrames %zu",
989 (long long)mPresentationCompleteFrames, audioHalFrames);
Eric Laurent81784c32012-11-19 14:55:58 -0800990 }
Eric Laurentbfb1b832013-01-07 09:53:42 -0800991
Andy Hungc54b1ff2016-02-23 14:07:07 -0800992 bool complete;
993 if (isOffloaded()) {
994 complete = true;
995 } else if (isDirect() || isFastTrack()) { // these do not go through linear map
Glenn Kastenc42e9b42016-03-21 11:35:03 -0700996 complete = framesWritten >= (int64_t) mPresentationCompleteFrames;
Andy Hungc54b1ff2016-02-23 14:07:07 -0800997 } else { // Normal tracks, OutputTracks, and PatchTracks
Glenn Kastenc42e9b42016-03-21 11:35:03 -0700998 complete = framesWritten >= (int64_t) mPresentationCompleteFrames
Andy Hungc54b1ff2016-02-23 14:07:07 -0800999 && mAudioTrackServerProxy->isDrained();
1000 }
1001
1002 if (complete) {
Eric Laurent81784c32012-11-19 14:55:58 -08001003 triggerEvents(AudioSystem::SYNC_EVENT_PRESENTATION_COMPLETE);
Eric Laurentbfb1b832013-01-07 09:53:42 -08001004 mAudioTrackServerProxy->setStreamEndDone();
Eric Laurent81784c32012-11-19 14:55:58 -08001005 return true;
1006 }
1007 return false;
1008}
1009
1010void AudioFlinger::PlaybackThread::Track::triggerEvents(AudioSystem::sync_event_t type)
1011{
Mark Salyzyn3ab368e2014-04-15 14:55:53 -07001012 for (size_t i = 0; i < mSyncEvents.size(); i++) {
Eric Laurent81784c32012-11-19 14:55:58 -08001013 if (mSyncEvents[i]->type() == type) {
1014 mSyncEvents[i]->trigger();
1015 mSyncEvents.removeAt(i);
1016 i--;
1017 }
1018 }
1019}
1020
1021// implement VolumeBufferProvider interface
1022
Glenn Kastenc56f3422014-03-21 17:53:17 -07001023gain_minifloat_packed_t AudioFlinger::PlaybackThread::Track::getVolumeLR()
Eric Laurent81784c32012-11-19 14:55:58 -08001024{
1025 // called by FastMixer, so not allowed to take any locks, block, or do I/O including logs
1026 ALOG_ASSERT(isFastTrack() && (mCblk != NULL));
Glenn Kastenc56f3422014-03-21 17:53:17 -07001027 gain_minifloat_packed_t vlr = mAudioTrackServerProxy->getVolumeLR();
1028 float vl = float_from_gain(gain_minifloat_unpack_left(vlr));
1029 float vr = float_from_gain(gain_minifloat_unpack_right(vlr));
Eric Laurent81784c32012-11-19 14:55:58 -08001030 // track volumes come from shared memory, so can't be trusted and must be clamped
Glenn Kastenc56f3422014-03-21 17:53:17 -07001031 if (vl > GAIN_FLOAT_UNITY) {
1032 vl = GAIN_FLOAT_UNITY;
Eric Laurent81784c32012-11-19 14:55:58 -08001033 }
Glenn Kastenc56f3422014-03-21 17:53:17 -07001034 if (vr > GAIN_FLOAT_UNITY) {
1035 vr = GAIN_FLOAT_UNITY;
Eric Laurent81784c32012-11-19 14:55:58 -08001036 }
1037 // now apply the cached master volume and stream type volume;
1038 // this is trusted but lacks any synchronization or barrier so may be stale
1039 float v = mCachedVolume;
1040 vl *= v;
1041 vr *= v;
Glenn Kastenc56f3422014-03-21 17:53:17 -07001042 // re-combine into packed minifloat
1043 vlr = gain_minifloat_pack(gain_from_float(vl), gain_from_float(vr));
Eric Laurent81784c32012-11-19 14:55:58 -08001044 // FIXME look at mute, pause, and stop flags
1045 return vlr;
1046}
1047
1048status_t AudioFlinger::PlaybackThread::Track::setSyncEvent(const sp<SyncEvent>& event)
1049{
Eric Laurentbfb1b832013-01-07 09:53:42 -08001050 if (isTerminated() || mState == PAUSED ||
Eric Laurent81784c32012-11-19 14:55:58 -08001051 ((framesReady() == 0) && ((mSharedBuffer != 0) ||
1052 (mState == STOPPED)))) {
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001053 ALOGW("Track::setSyncEvent() in invalid state %d on session %d %s mode, framesReady %zu",
Eric Laurent81784c32012-11-19 14:55:58 -08001054 mState, mSessionId, (mSharedBuffer != 0) ? "static" : "stream", framesReady());
1055 event->cancel();
1056 return INVALID_OPERATION;
1057 }
1058 (void) TrackBase::setSyncEvent(event);
1059 return NO_ERROR;
1060}
1061
Glenn Kasten5736c352012-12-04 12:12:34 -08001062void AudioFlinger::PlaybackThread::Track::invalidate()
1063{
Eric Laurent4d231dc2016-03-11 18:38:23 -08001064 signalClientFlag(CBLK_INVALID);
1065 mIsInvalid = true;
1066}
1067
1068void AudioFlinger::PlaybackThread::Track::disable()
1069{
1070 signalClientFlag(CBLK_DISABLED);
1071}
1072
1073void AudioFlinger::PlaybackThread::Track::signalClientFlag(int32_t flag)
1074{
Glenn Kasten9f80dd22012-12-18 15:57:32 -08001075 // FIXME should use proxy, and needs work
1076 audio_track_cblk_t* cblk = mCblk;
Eric Laurent4d231dc2016-03-11 18:38:23 -08001077 android_atomic_or(flag, &cblk->mFlags);
Glenn Kasten9f80dd22012-12-18 15:57:32 -08001078 android_atomic_release_store(0x40000000, &cblk->mFutex);
1079 // client is not in server, so FUTEX_WAKE is needed instead of FUTEX_WAKE_PRIVATE
Elliott Hughesee499292014-05-21 17:55:51 -07001080 (void) syscall(__NR_futex, &cblk->mFutex, FUTEX_WAKE, INT_MAX);
Glenn Kasten5736c352012-12-04 12:12:34 -08001081}
1082
Eric Laurent59fe0102013-09-27 18:48:26 -07001083void AudioFlinger::PlaybackThread::Track::signal()
1084{
1085 sp<ThreadBase> thread = mThread.promote();
1086 if (thread != 0) {
1087 PlaybackThread *t = (PlaybackThread *)thread.get();
1088 Mutex::Autolock _l(t->mLock);
1089 t->broadcast_l();
1090 }
1091}
1092
Krishnankutty Kolathappilly8d6c2922014-02-04 16:23:42 -08001093//To be called with thread lock held
1094bool AudioFlinger::PlaybackThread::Track::isResumePending() {
1095
1096 if (mState == RESUMING)
1097 return true;
1098 /* Resume is pending if track was stopping before pause was called */
1099 if (mState == STOPPING_1 &&
1100 mResumeToStopping)
1101 return true;
1102
1103 return false;
1104}
1105
1106//To be called with thread lock held
1107void AudioFlinger::PlaybackThread::Track::resumeAck() {
1108
1109
1110 if (mState == RESUMING)
1111 mState = ACTIVE;
Haynes Mathew George2d3ca682014-03-07 13:43:49 -08001112
Krishnankutty Kolathappilly8d6c2922014-02-04 16:23:42 -08001113 // Other possibility of pending resume is stopping_1 state
1114 // Do not update the state from stopping as this prevents
Haynes Mathew George2d3ca682014-03-07 13:43:49 -08001115 // drain being called.
1116 if (mState == STOPPING_1) {
1117 mResumeToStopping = false;
1118 }
Krishnankutty Kolathappilly8d6c2922014-02-04 16:23:42 -08001119}
Andy Hunge10393e2015-06-12 13:59:33 -07001120
1121//To be called with thread lock held
1122void AudioFlinger::PlaybackThread::Track::updateTrackFrameInfo(
Andy Hung818e7a32016-02-16 18:08:07 -08001123 int64_t trackFramesReleased, int64_t sinkFramesWritten,
1124 const ExtendedTimestamp &timeStamp) {
1125 //update frame map
Andy Hunge10393e2015-06-12 13:59:33 -07001126 mFrameMap.push(trackFramesReleased, sinkFramesWritten);
Andy Hung818e7a32016-02-16 18:08:07 -08001127
1128 // adjust server times and set drained state.
1129 //
1130 // Our timestamps are only updated when the track is on the Thread active list.
1131 // We need to ensure that tracks are not removed before full drain.
1132 ExtendedTimestamp local = timeStamp;
1133 bool checked = false;
1134 for (int i = ExtendedTimestamp::LOCATION_MAX - 1;
1135 i >= ExtendedTimestamp::LOCATION_SERVER; --i) {
1136 // Lookup the track frame corresponding to the sink frame position.
1137 if (local.mTimeNs[i] > 0) {
1138 local.mPosition[i] = mFrameMap.findX(local.mPosition[i]);
1139 // check drain state from the latest stage in the pipeline.
Andy Hung6d7b1192016-05-07 22:59:48 -07001140 if (!checked && i <= ExtendedTimestamp::LOCATION_KERNEL) {
Andy Hung818e7a32016-02-16 18:08:07 -08001141 mAudioTrackServerProxy->setDrained(
1142 local.mPosition[i] >= mAudioTrackServerProxy->framesReleased());
1143 checked = true;
1144 }
1145 }
Andy Hunge10393e2015-06-12 13:59:33 -07001146 }
Andy Hung818e7a32016-02-16 18:08:07 -08001147 if (!checked) { // no server info, assume drained.
1148 mAudioTrackServerProxy->setDrained(true);
1149 }
Andy Hungea2b9c02016-02-12 17:06:53 -08001150 // Set correction for flushed frames that are not accounted for in released.
Andy Hungea2b9c02016-02-12 17:06:53 -08001151 local.mFlushed = mAudioTrackServerProxy->framesFlushed();
Andy Hung818e7a32016-02-16 18:08:07 -08001152 mServerProxy->setTimestamp(local);
Andy Hunge10393e2015-06-12 13:59:33 -07001153}
1154
Eric Laurent81784c32012-11-19 14:55:58 -08001155// ----------------------------------------------------------------------------
1156
Eric Laurent81784c32012-11-19 14:55:58 -08001157AudioFlinger::PlaybackThread::OutputTrack::OutputTrack(
1158 PlaybackThread *playbackThread,
1159 DuplicatingThread *sourceThread,
1160 uint32_t sampleRate,
1161 audio_format_t format,
1162 audio_channel_mask_t channelMask,
Marco Nelissen462fd2f2013-01-14 14:12:05 -08001163 size_t frameCount,
1164 int uid)
Eric Laurent223fd5c2014-11-11 13:43:36 -08001165 : Track(playbackThread, NULL, AUDIO_STREAM_PATCH,
1166 sampleRate, format, channelMask, frameCount,
Glenn Kastend848eb42016-03-08 13:42:11 -08001167 NULL, 0, AUDIO_SESSION_NONE, uid, IAudioFlinger::TRACK_DEFAULT,
1168 TYPE_OUTPUT),
Glenn Kastene3aa6592012-12-04 12:22:46 -08001169 mActive(false), mSourceThread(sourceThread), mClientProxy(NULL)
Eric Laurent81784c32012-11-19 14:55:58 -08001170{
1171
1172 if (mCblk != NULL) {
Eric Laurent81784c32012-11-19 14:55:58 -08001173 mOutBuffer.frameCount = 0;
1174 playbackThread->mTracks.add(this);
Glenn Kastene3aa6592012-12-04 12:22:46 -08001175 ALOGV("OutputTrack constructor mCblk %p, mBuffer %p, "
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001176 "frameCount %zu, mChannelMask 0x%08x",
Glenn Kastene3aa6592012-12-04 12:22:46 -08001177 mCblk, mBuffer,
Glenn Kasten74935e42013-12-19 08:56:45 -08001178 frameCount, mChannelMask);
Glenn Kastene3aa6592012-12-04 12:22:46 -08001179 // since client and server are in the same process,
1180 // the buffer has the same virtual address on both sides
Glenn Kasten529c61b2014-07-18 15:31:02 -07001181 mClientProxy = new AudioTrackClientProxy(mCblk, mBuffer, mFrameCount, mFrameSize,
1182 true /*clientInServer*/);
Glenn Kastenc56f3422014-03-21 17:53:17 -07001183 mClientProxy->setVolumeLR(GAIN_MINIFLOAT_PACKED_UNITY);
Eric Laurent8d2d4932013-04-25 12:56:18 -07001184 mClientProxy->setSendLevel(0.0);
1185 mClientProxy->setSampleRate(sampleRate);
Eric Laurent81784c32012-11-19 14:55:58 -08001186 } else {
1187 ALOGW("Error creating output track on thread %p", playbackThread);
1188 }
1189}
1190
1191AudioFlinger::PlaybackThread::OutputTrack::~OutputTrack()
1192{
1193 clearBufferQueue();
Glenn Kastene3aa6592012-12-04 12:22:46 -08001194 delete mClientProxy;
1195 // superclass destructor will now delete the server proxy and shared memory both refer to
Eric Laurent81784c32012-11-19 14:55:58 -08001196}
1197
1198status_t AudioFlinger::PlaybackThread::OutputTrack::start(AudioSystem::sync_event_t event,
Glenn Kastend848eb42016-03-08 13:42:11 -08001199 audio_session_t triggerSession)
Eric Laurent81784c32012-11-19 14:55:58 -08001200{
1201 status_t status = Track::start(event, triggerSession);
1202 if (status != NO_ERROR) {
1203 return status;
1204 }
1205
1206 mActive = true;
1207 mRetryCount = 127;
1208 return status;
1209}
1210
1211void AudioFlinger::PlaybackThread::OutputTrack::stop()
1212{
1213 Track::stop();
1214 clearBufferQueue();
1215 mOutBuffer.frameCount = 0;
1216 mActive = false;
1217}
1218
Andy Hungc25b84a2015-01-14 19:04:10 -08001219bool AudioFlinger::PlaybackThread::OutputTrack::write(void* data, uint32_t frames)
Eric Laurent81784c32012-11-19 14:55:58 -08001220{
1221 Buffer *pInBuffer;
1222 Buffer inBuffer;
Eric Laurent81784c32012-11-19 14:55:58 -08001223 bool outputBufferFull = false;
1224 inBuffer.frameCount = frames;
Andy Hungc25b84a2015-01-14 19:04:10 -08001225 inBuffer.raw = data;
Eric Laurent81784c32012-11-19 14:55:58 -08001226
1227 uint32_t waitTimeLeftMs = mSourceThread->waitTimeMs();
1228
1229 if (!mActive && frames != 0) {
Andy Hung5bedff62015-01-16 11:05:32 -08001230 (void) start();
Eric Laurent81784c32012-11-19 14:55:58 -08001231 }
1232
1233 while (waitTimeLeftMs) {
1234 // First write pending buffers, then new data
1235 if (mBufferQueue.size()) {
1236 pInBuffer = mBufferQueue.itemAt(0);
1237 } else {
1238 pInBuffer = &inBuffer;
1239 }
1240
1241 if (pInBuffer->frameCount == 0) {
1242 break;
1243 }
1244
1245 if (mOutBuffer.frameCount == 0) {
1246 mOutBuffer.frameCount = pInBuffer->frameCount;
1247 nsecs_t startTime = systemTime();
Glenn Kasten9f80dd22012-12-18 15:57:32 -08001248 status_t status = obtainBuffer(&mOutBuffer, waitTimeLeftMs);
Eric Laurent4d231dc2016-03-11 18:38:23 -08001249 if (status != NO_ERROR && status != NOT_ENOUGH_DATA) {
Glenn Kasten9f80dd22012-12-18 15:57:32 -08001250 ALOGV("OutputTrack::write() %p thread %p no more output buffers; status %d", this,
1251 mThread.unsafe_get(), status);
Eric Laurent81784c32012-11-19 14:55:58 -08001252 outputBufferFull = true;
1253 break;
1254 }
1255 uint32_t waitTimeMs = (uint32_t)ns2ms(systemTime() - startTime);
1256 if (waitTimeLeftMs >= waitTimeMs) {
1257 waitTimeLeftMs -= waitTimeMs;
1258 } else {
1259 waitTimeLeftMs = 0;
1260 }
Eric Laurent4d231dc2016-03-11 18:38:23 -08001261 if (status == NOT_ENOUGH_DATA) {
1262 restartIfDisabled();
1263 continue;
1264 }
Eric Laurent81784c32012-11-19 14:55:58 -08001265 }
1266
1267 uint32_t outFrames = pInBuffer->frameCount > mOutBuffer.frameCount ? mOutBuffer.frameCount :
1268 pInBuffer->frameCount;
Andy Hungc25b84a2015-01-14 19:04:10 -08001269 memcpy(mOutBuffer.raw, pInBuffer->raw, outFrames * mFrameSize);
Glenn Kasten9f80dd22012-12-18 15:57:32 -08001270 Proxy::Buffer buf;
1271 buf.mFrameCount = outFrames;
1272 buf.mRaw = NULL;
1273 mClientProxy->releaseBuffer(&buf);
Eric Laurent4d231dc2016-03-11 18:38:23 -08001274 restartIfDisabled();
Eric Laurent81784c32012-11-19 14:55:58 -08001275 pInBuffer->frameCount -= outFrames;
Andy Hungc25b84a2015-01-14 19:04:10 -08001276 pInBuffer->raw = (int8_t *)pInBuffer->raw + outFrames * mFrameSize;
Eric Laurent81784c32012-11-19 14:55:58 -08001277 mOutBuffer.frameCount -= outFrames;
Andy Hungc25b84a2015-01-14 19:04:10 -08001278 mOutBuffer.raw = (int8_t *)mOutBuffer.raw + outFrames * mFrameSize;
Eric Laurent81784c32012-11-19 14:55:58 -08001279
1280 if (pInBuffer->frameCount == 0) {
1281 if (mBufferQueue.size()) {
1282 mBufferQueue.removeAt(0);
Andy Hungc25b84a2015-01-14 19:04:10 -08001283 free(pInBuffer->mBuffer);
Eric Laurent81784c32012-11-19 14:55:58 -08001284 delete pInBuffer;
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001285 ALOGV("OutputTrack::write() %p thread %p released overflow buffer %zu", this,
Eric Laurent81784c32012-11-19 14:55:58 -08001286 mThread.unsafe_get(), mBufferQueue.size());
1287 } else {
1288 break;
1289 }
1290 }
1291 }
1292
1293 // If we could not write all frames, allocate a buffer and queue it for next time.
1294 if (inBuffer.frameCount) {
1295 sp<ThreadBase> thread = mThread.promote();
1296 if (thread != 0 && !thread->standby()) {
1297 if (mBufferQueue.size() < kMaxOverFlowBuffers) {
1298 pInBuffer = new Buffer;
Andy Hungc25b84a2015-01-14 19:04:10 -08001299 pInBuffer->mBuffer = malloc(inBuffer.frameCount * mFrameSize);
Eric Laurent81784c32012-11-19 14:55:58 -08001300 pInBuffer->frameCount = inBuffer.frameCount;
Andy Hungc25b84a2015-01-14 19:04:10 -08001301 pInBuffer->raw = pInBuffer->mBuffer;
1302 memcpy(pInBuffer->raw, inBuffer.raw, inBuffer.frameCount * mFrameSize);
Eric Laurent81784c32012-11-19 14:55:58 -08001303 mBufferQueue.add(pInBuffer);
Glenn Kastenc42e9b42016-03-21 11:35:03 -07001304 ALOGV("OutputTrack::write() %p thread %p adding overflow buffer %zu", this,
Eric Laurent81784c32012-11-19 14:55:58 -08001305 mThread.unsafe_get(), mBufferQueue.size());
1306 } else {
1307 ALOGW("OutputTrack::write() %p thread %p no more overflow buffers",
1308 mThread.unsafe_get(), this);
1309 }
1310 }
1311 }
1312
Andy Hungc25b84a2015-01-14 19:04:10 -08001313 // Calling write() with a 0 length buffer means that no more data will be written:
1314 // We rely on stop() to set the appropriate flags to allow the remaining frames to play out.
1315 if (frames == 0 && mBufferQueue.size() == 0 && mActive) {
1316 stop();
Eric Laurent81784c32012-11-19 14:55:58 -08001317 }
1318
1319 return outputBufferFull;
1320}
1321
1322status_t AudioFlinger::PlaybackThread::OutputTrack::obtainBuffer(
1323 AudioBufferProvider::Buffer* buffer, uint32_t waitTimeMs)
1324{
Glenn Kasten9f80dd22012-12-18 15:57:32 -08001325 ClientProxy::Buffer buf;
1326 buf.mFrameCount = buffer->frameCount;
1327 struct timespec timeout;
1328 timeout.tv_sec = waitTimeMs / 1000;
1329 timeout.tv_nsec = (int) (waitTimeMs % 1000) * 1000000;
1330 status_t status = mClientProxy->obtainBuffer(&buf, &timeout);
1331 buffer->frameCount = buf.mFrameCount;
1332 buffer->raw = buf.mRaw;
1333 return status;
Eric Laurent81784c32012-11-19 14:55:58 -08001334}
1335
Eric Laurent81784c32012-11-19 14:55:58 -08001336void AudioFlinger::PlaybackThread::OutputTrack::clearBufferQueue()
1337{
1338 size_t size = mBufferQueue.size();
1339
1340 for (size_t i = 0; i < size; i++) {
1341 Buffer *pBuffer = mBufferQueue.itemAt(i);
Andy Hungc25b84a2015-01-14 19:04:10 -08001342 free(pBuffer->mBuffer);
Eric Laurent81784c32012-11-19 14:55:58 -08001343 delete pBuffer;
1344 }
1345 mBufferQueue.clear();
1346}
1347
Eric Laurent4d231dc2016-03-11 18:38:23 -08001348void AudioFlinger::PlaybackThread::OutputTrack::restartIfDisabled()
1349{
1350 int32_t flags = android_atomic_and(~CBLK_DISABLED, &mCblk->mFlags);
1351 if (mActive && (flags & CBLK_DISABLED)) {
1352 start();
1353 }
1354}
Eric Laurent81784c32012-11-19 14:55:58 -08001355
Eric Laurent83b88082014-06-20 18:31:16 -07001356AudioFlinger::PlaybackThread::PatchTrack::PatchTrack(PlaybackThread *playbackThread,
Eric Laurent3bcf8592015-04-03 12:13:24 -07001357 audio_stream_type_t streamType,
Eric Laurent83b88082014-06-20 18:31:16 -07001358 uint32_t sampleRate,
1359 audio_channel_mask_t channelMask,
1360 audio_format_t format,
1361 size_t frameCount,
1362 void *buffer,
1363 IAudioFlinger::track_flags_t flags)
Eric Laurent3bcf8592015-04-03 12:13:24 -07001364 : Track(playbackThread, NULL, streamType,
Eric Laurent223fd5c2014-11-11 13:43:36 -08001365 sampleRate, format, channelMask, frameCount,
Glenn Kastend848eb42016-03-08 13:42:11 -08001366 buffer, 0, AUDIO_SESSION_NONE, getuid(), flags, TYPE_PATCH),
Eric Laurent83b88082014-06-20 18:31:16 -07001367 mProxy(new ClientProxy(mCblk, mBuffer, frameCount, mFrameSize, true, true))
1368{
1369 uint64_t mixBufferNs = ((uint64_t)2 * playbackThread->frameCount() * 1000000000) /
1370 playbackThread->sampleRate();
1371 mPeerTimeout.tv_sec = mixBufferNs / 1000000000;
1372 mPeerTimeout.tv_nsec = (int) (mixBufferNs % 1000000000);
1373
1374 ALOGV("PatchTrack %p sampleRate %d mPeerTimeout %d.%03d sec",
1375 this, sampleRate,
1376 (int)mPeerTimeout.tv_sec,
1377 (int)(mPeerTimeout.tv_nsec / 1000000));
1378}
1379
1380AudioFlinger::PlaybackThread::PatchTrack::~PatchTrack()
1381{
1382}
1383
Eric Laurent4d231dc2016-03-11 18:38:23 -08001384status_t AudioFlinger::PlaybackThread::PatchTrack::start(AudioSystem::sync_event_t event,
Glenn Kastend848eb42016-03-08 13:42:11 -08001385 audio_session_t triggerSession)
Eric Laurent4d231dc2016-03-11 18:38:23 -08001386{
1387 status_t status = Track::start(event, triggerSession);
1388 if (status != NO_ERROR) {
1389 return status;
1390 }
1391 android_atomic_and(~CBLK_DISABLED, &mCblk->mFlags);
1392 return status;
1393}
1394
Eric Laurent83b88082014-06-20 18:31:16 -07001395// AudioBufferProvider interface
1396status_t AudioFlinger::PlaybackThread::PatchTrack::getNextBuffer(
Glenn Kastend79072e2016-01-06 08:41:20 -08001397 AudioBufferProvider::Buffer* buffer)
Eric Laurent83b88082014-06-20 18:31:16 -07001398{
1399 ALOG_ASSERT(mPeerProxy != 0, "PatchTrack::getNextBuffer() called without peer proxy");
1400 Proxy::Buffer buf;
1401 buf.mFrameCount = buffer->frameCount;
1402 status_t status = mPeerProxy->obtainBuffer(&buf, &mPeerTimeout);
1403 ALOGV_IF(status != NO_ERROR, "PatchTrack() %p getNextBuffer status %d", this, status);
Eric Laurentc2730ba2014-07-20 15:47:07 -07001404 buffer->frameCount = buf.mFrameCount;
Eric Laurent83b88082014-06-20 18:31:16 -07001405 if (buf.mFrameCount == 0) {
1406 return WOULD_BLOCK;
1407 }
Glenn Kastend79072e2016-01-06 08:41:20 -08001408 status = Track::getNextBuffer(buffer);
Eric Laurent83b88082014-06-20 18:31:16 -07001409 return status;
1410}
1411
1412void AudioFlinger::PlaybackThread::PatchTrack::releaseBuffer(AudioBufferProvider::Buffer* buffer)
1413{
1414 ALOG_ASSERT(mPeerProxy != 0, "PatchTrack::releaseBuffer() called without peer proxy");
1415 Proxy::Buffer buf;
1416 buf.mFrameCount = buffer->frameCount;
1417 buf.mRaw = buffer->raw;
1418 mPeerProxy->releaseBuffer(&buf);
1419 TrackBase::releaseBuffer(buffer);
1420}
1421
1422status_t AudioFlinger::PlaybackThread::PatchTrack::obtainBuffer(Proxy::Buffer* buffer,
1423 const struct timespec *timeOut)
1424{
Eric Laurent4d231dc2016-03-11 18:38:23 -08001425 status_t status = NO_ERROR;
1426 static const int32_t kMaxTries = 5;
1427 int32_t tryCounter = kMaxTries;
1428 do {
1429 if (status == NOT_ENOUGH_DATA) {
1430 restartIfDisabled();
1431 }
1432 status = mProxy->obtainBuffer(buffer, timeOut);
1433 } while ((status == NOT_ENOUGH_DATA) && (tryCounter-- > 0));
1434 return status;
Eric Laurent83b88082014-06-20 18:31:16 -07001435}
1436
1437void AudioFlinger::PlaybackThread::PatchTrack::releaseBuffer(Proxy::Buffer* buffer)
1438{
1439 mProxy->releaseBuffer(buffer);
Eric Laurent4d231dc2016-03-11 18:38:23 -08001440 restartIfDisabled();
1441 android_atomic_or(CBLK_FORCEREADY, &mCblk->mFlags);
1442}
1443
1444void AudioFlinger::PlaybackThread::PatchTrack::restartIfDisabled()
1445{
Eric Laurent83b88082014-06-20 18:31:16 -07001446 if (android_atomic_and(~CBLK_DISABLED, &mCblk->mFlags) & CBLK_DISABLED) {
1447 ALOGW("PatchTrack::releaseBuffer() disabled due to previous underrun, restarting");
1448 start();
1449 }
Eric Laurent83b88082014-06-20 18:31:16 -07001450}
1451
Eric Laurent81784c32012-11-19 14:55:58 -08001452// ----------------------------------------------------------------------------
1453// Record
1454// ----------------------------------------------------------------------------
1455
1456AudioFlinger::RecordHandle::RecordHandle(
1457 const sp<AudioFlinger::RecordThread::RecordTrack>& recordTrack)
1458 : BnAudioRecord(),
1459 mRecordTrack(recordTrack)
1460{
1461}
1462
1463AudioFlinger::RecordHandle::~RecordHandle() {
1464 stop_nonvirtual();
1465 mRecordTrack->destroy();
1466}
1467
Eric Laurent81784c32012-11-19 14:55:58 -08001468status_t AudioFlinger::RecordHandle::start(int /*AudioSystem::sync_event_t*/ event,
Glenn Kastend848eb42016-03-08 13:42:11 -08001469 audio_session_t triggerSession) {
Eric Laurent81784c32012-11-19 14:55:58 -08001470 ALOGV("RecordHandle::start()");
1471 return mRecordTrack->start((AudioSystem::sync_event_t)event, triggerSession);
1472}
1473
1474void AudioFlinger::RecordHandle::stop() {
1475 stop_nonvirtual();
1476}
1477
1478void AudioFlinger::RecordHandle::stop_nonvirtual() {
1479 ALOGV("RecordHandle::stop()");
1480 mRecordTrack->stop();
1481}
1482
1483status_t AudioFlinger::RecordHandle::onTransact(
1484 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1485{
1486 return BnAudioRecord::onTransact(code, data, reply, flags);
1487}
1488
1489// ----------------------------------------------------------------------------
1490
Glenn Kasten05997e22014-03-13 15:08:33 -07001491// RecordTrack constructor must be called with AudioFlinger::mLock and ThreadBase::mLock held
Eric Laurent81784c32012-11-19 14:55:58 -08001492AudioFlinger::RecordThread::RecordTrack::RecordTrack(
1493 RecordThread *thread,
1494 const sp<Client>& client,
1495 uint32_t sampleRate,
1496 audio_format_t format,
1497 audio_channel_mask_t channelMask,
1498 size_t frameCount,
Eric Laurent83b88082014-06-20 18:31:16 -07001499 void *buffer,
Glenn Kastend848eb42016-03-08 13:42:11 -08001500 audio_session_t sessionId,
Glenn Kastend776ac62014-05-07 09:16:09 -07001501 int uid,
Eric Laurent83b88082014-06-20 18:31:16 -07001502 IAudioFlinger::track_flags_t flags,
1503 track_type type)
Eric Laurent81784c32012-11-19 14:55:58 -08001504 : TrackBase(thread, client, sampleRate, format,
Eric Laurent83b88082014-06-20 18:31:16 -07001505 channelMask, frameCount, buffer, sessionId, uid,
Glenn Kasten755b0a62014-05-13 11:30:28 -07001506 flags, false /*isOut*/,
Eric Laurent83b88082014-06-20 18:31:16 -07001507 (type == TYPE_DEFAULT) ?
1508 ((flags & IAudioFlinger::TRACK_FAST) ? ALLOC_PIPE : ALLOC_CBLK) :
1509 ((buffer == NULL) ? ALLOC_LOCAL : ALLOC_NONE),
1510 type),
Andy Hung97a893e2015-03-29 01:03:07 -07001511 mOverflow(false),
Andy Hung4c6afaf2015-06-12 18:23:35 -07001512 mFramesToDrop(0),
1513 mResamplerBufferProvider(NULL), // initialize in case of early constructor exit
1514 mRecordBufferConverter(NULL)
Eric Laurent81784c32012-11-19 14:55:58 -08001515{
Glenn Kasten3ef14ef2014-03-13 15:08:51 -07001516 if (mCblk == NULL) {
1517 return;
Glenn Kasten9f80dd22012-12-18 15:57:32 -08001518 }
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08001519
Andy Hung97a893e2015-03-29 01:03:07 -07001520 mRecordBufferConverter = new RecordBufferConverter(
1521 thread->mChannelMask, thread->mFormat, thread->mSampleRate,
1522 channelMask, format, sampleRate);
1523 // Check if the RecordBufferConverter construction was successful.
1524 // If not, don't continue with construction.
1525 //
1526 // NOTE: It would be extremely rare that the record track cannot be created
1527 // for the current device, but a pending or future device change would make
1528 // the record track configuration valid.
1529 if (mRecordBufferConverter->initCheck() != NO_ERROR) {
1530 ALOGE("RecordTrack unable to create record buffer converter");
1531 return;
1532 }
1533
Andy Hung6ae58432016-02-16 18:32:24 -08001534 mServerProxy = new AudioRecordServerProxy(mCblk, mBuffer, frameCount,
Andy Hung3f0c9022016-01-15 17:49:46 -08001535 mFrameSize, !isExternalTrack());
Andy Hung3f0c9022016-01-15 17:49:46 -08001536
Andy Hung97a893e2015-03-29 01:03:07 -07001537 mResamplerBufferProvider = new ResamplerBufferProvider(this);
Glenn Kastenc263ca02014-06-04 20:31:46 -07001538
1539 if (flags & IAudioFlinger::TRACK_FAST) {
1540 ALOG_ASSERT(thread->mFastTrackAvail);
1541 thread->mFastTrackAvail = false;
1542 }
Eric Laurent81784c32012-11-19 14:55:58 -08001543}
1544
1545AudioFlinger::RecordThread::RecordTrack::~RecordTrack()
1546{
1547 ALOGV("%s", __func__);
Andy Hung97a893e2015-03-29 01:03:07 -07001548 delete mRecordBufferConverter;
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08001549 delete mResamplerBufferProvider;
Eric Laurent81784c32012-11-19 14:55:58 -08001550}
1551
Andy Hung97a893e2015-03-29 01:03:07 -07001552status_t AudioFlinger::RecordThread::RecordTrack::initCheck() const
1553{
1554 status_t status = TrackBase::initCheck();
1555 if (status == NO_ERROR && mServerProxy == 0) {
1556 status = BAD_VALUE;
1557 }
1558 return status;
1559}
1560
Eric Laurent81784c32012-11-19 14:55:58 -08001561// AudioBufferProvider interface
Glenn Kastend79072e2016-01-06 08:41:20 -08001562status_t AudioFlinger::RecordThread::RecordTrack::getNextBuffer(AudioBufferProvider::Buffer* buffer)
Eric Laurent81784c32012-11-19 14:55:58 -08001563{
Glenn Kasten9f80dd22012-12-18 15:57:32 -08001564 ServerProxy::Buffer buf;
1565 buf.mFrameCount = buffer->frameCount;
1566 status_t status = mServerProxy->obtainBuffer(&buf);
1567 buffer->frameCount = buf.mFrameCount;
1568 buffer->raw = buf.mRaw;
1569 if (buf.mFrameCount == 0) {
1570 // FIXME also wake futex so that overrun is noticed more quickly
Glenn Kasten96f60d82013-07-12 10:21:18 -07001571 (void) android_atomic_or(CBLK_OVERRUN, &mCblk->mFlags);
Eric Laurent81784c32012-11-19 14:55:58 -08001572 }
Glenn Kasten9f80dd22012-12-18 15:57:32 -08001573 return status;
Eric Laurent81784c32012-11-19 14:55:58 -08001574}
1575
1576status_t AudioFlinger::RecordThread::RecordTrack::start(AudioSystem::sync_event_t event,
Glenn Kastend848eb42016-03-08 13:42:11 -08001577 audio_session_t triggerSession)
Eric Laurent81784c32012-11-19 14:55:58 -08001578{
1579 sp<ThreadBase> thread = mThread.promote();
1580 if (thread != 0) {
1581 RecordThread *recordThread = (RecordThread *)thread.get();
1582 return recordThread->start(this, event, triggerSession);
1583 } else {
1584 return BAD_VALUE;
1585 }
1586}
1587
1588void AudioFlinger::RecordThread::RecordTrack::stop()
1589{
1590 sp<ThreadBase> thread = mThread.promote();
1591 if (thread != 0) {
1592 RecordThread *recordThread = (RecordThread *)thread.get();
Eric Laurent83b88082014-06-20 18:31:16 -07001593 if (recordThread->stop(this) && isExternalTrack()) {
Glenn Kastend848eb42016-03-08 13:42:11 -08001594 AudioSystem::stopInput(mThreadIoHandle, mSessionId);
Eric Laurent81784c32012-11-19 14:55:58 -08001595 }
1596 }
1597}
1598
1599void AudioFlinger::RecordThread::RecordTrack::destroy()
1600{
1601 // see comments at AudioFlinger::PlaybackThread::Track::destroy()
1602 sp<RecordTrack> keep(this);
1603 {
Eric Laurentaaa44472014-09-12 17:41:50 -07001604 if (isExternalTrack()) {
1605 if (mState == ACTIVE || mState == RESUMING) {
Glenn Kastend848eb42016-03-08 13:42:11 -08001606 AudioSystem::stopInput(mThreadIoHandle, mSessionId);
Eric Laurentaaa44472014-09-12 17:41:50 -07001607 }
Glenn Kastend848eb42016-03-08 13:42:11 -08001608 AudioSystem::releaseInput(mThreadIoHandle, mSessionId);
Eric Laurentaaa44472014-09-12 17:41:50 -07001609 }
Eric Laurent81784c32012-11-19 14:55:58 -08001610 sp<ThreadBase> thread = mThread.promote();
1611 if (thread != 0) {
Eric Laurent81784c32012-11-19 14:55:58 -08001612 Mutex::Autolock _l(thread->mLock);
1613 RecordThread *recordThread = (RecordThread *) thread.get();
1614 recordThread->destroyTrack_l(this);
1615 }
1616 }
1617}
1618
Eric Laurent9a54bc22013-09-09 09:08:44 -07001619void AudioFlinger::RecordThread::RecordTrack::invalidate()
1620{
1621 // FIXME should use proxy, and needs work
1622 audio_track_cblk_t* cblk = mCblk;
1623 android_atomic_or(CBLK_INVALID, &cblk->mFlags);
1624 android_atomic_release_store(0x40000000, &cblk->mFutex);
1625 // client is not in server, so FUTEX_WAKE is needed instead of FUTEX_WAKE_PRIVATE
Elliott Hughesee499292014-05-21 17:55:51 -07001626 (void) syscall(__NR_futex, &cblk->mFutex, FUTEX_WAKE, INT_MAX);
Eric Laurent9a54bc22013-09-09 09:08:44 -07001627}
1628
Eric Laurent81784c32012-11-19 14:55:58 -08001629
1630/*static*/ void AudioFlinger::RecordThread::RecordTrack::appendDumpHeader(String8& result)
1631{
Glenn Kasten6e6704c2014-07-03 10:20:00 -07001632 result.append(" Active Client Fmt Chn mask Session S Server fCount SRate\n");
Eric Laurent81784c32012-11-19 14:55:58 -08001633}
1634
Marco Nelissenb2208842014-02-07 14:00:50 -08001635void AudioFlinger::RecordThread::RecordTrack::dump(char* buffer, size_t size, bool active)
Eric Laurent81784c32012-11-19 14:55:58 -08001636{
Glenn Kasten6e6704c2014-07-03 10:20:00 -07001637 snprintf(buffer, size, " %6s %6u %3u %08X %7u %1d %08X %6zu %5u\n",
Marco Nelissenb2208842014-02-07 14:00:50 -08001638 active ? "yes" : "no",
Eric Laurent81784c32012-11-19 14:55:58 -08001639 (mClient == 0) ? getpid_cached : mClient->pid(),
1640 mFormat,
1641 mChannelMask,
1642 mSessionId,
Eric Laurent81784c32012-11-19 14:55:58 -08001643 mState,
Glenn Kastenf20e1d82013-07-12 09:45:18 -07001644 mCblk->mServer,
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08001645 mFrameCount,
Glenn Kasten6e6704c2014-07-03 10:20:00 -07001646 mSampleRate);
Glenn Kasten6dd62fb2013-12-05 16:35:58 -08001647
Eric Laurent81784c32012-11-19 14:55:58 -08001648}
1649
Glenn Kasten25f4aa82014-02-07 10:50:43 -08001650void AudioFlinger::RecordThread::RecordTrack::handleSyncStartEvent(const sp<SyncEvent>& event)
1651{
1652 if (event == mSyncStartEvent) {
1653 ssize_t framesToDrop = 0;
1654 sp<ThreadBase> threadBase = mThread.promote();
1655 if (threadBase != 0) {
1656 // TODO: use actual buffer filling status instead of 2 buffers when info is available
1657 // from audio HAL
1658 framesToDrop = threadBase->mFrameCount * 2;
1659 }
1660 mFramesToDrop = framesToDrop;
1661 }
1662}
1663
1664void AudioFlinger::RecordThread::RecordTrack::clearSyncStartEvent()
1665{
1666 if (mSyncStartEvent != 0) {
1667 mSyncStartEvent->cancel();
1668 mSyncStartEvent.clear();
1669 }
1670 mFramesToDrop = 0;
1671}
1672
Andy Hung3f0c9022016-01-15 17:49:46 -08001673void AudioFlinger::RecordThread::RecordTrack::updateTrackFrameInfo(
1674 int64_t trackFramesReleased, int64_t sourceFramesRead,
1675 uint32_t halSampleRate, const ExtendedTimestamp &timestamp)
1676{
1677 ExtendedTimestamp local = timestamp;
1678
1679 // Convert HAL frames to server-side track frames at track sample rate.
1680 // We use trackFramesReleased and sourceFramesRead as an anchor point.
1681 for (int i = ExtendedTimestamp::LOCATION_SERVER; i < ExtendedTimestamp::LOCATION_MAX; ++i) {
1682 if (local.mTimeNs[i] != 0) {
1683 const int64_t relativeServerFrames = local.mPosition[i] - sourceFramesRead;
1684 const int64_t relativeTrackFrames = relativeServerFrames
1685 * mSampleRate / halSampleRate; // TODO: potential computation overflow
1686 local.mPosition[i] = relativeTrackFrames + trackFramesReleased;
1687 }
1688 }
Andy Hung6ae58432016-02-16 18:32:24 -08001689 mServerProxy->setTimestamp(local);
Andy Hung3f0c9022016-01-15 17:49:46 -08001690}
Eric Laurent83b88082014-06-20 18:31:16 -07001691
1692AudioFlinger::RecordThread::PatchRecord::PatchRecord(RecordThread *recordThread,
1693 uint32_t sampleRate,
1694 audio_channel_mask_t channelMask,
1695 audio_format_t format,
1696 size_t frameCount,
1697 void *buffer,
1698 IAudioFlinger::track_flags_t flags)
1699 : RecordTrack(recordThread, NULL, sampleRate, format, channelMask, frameCount,
Glenn Kastend848eb42016-03-08 13:42:11 -08001700 buffer, AUDIO_SESSION_NONE, getuid(), flags, TYPE_PATCH),
Eric Laurent83b88082014-06-20 18:31:16 -07001701 mProxy(new ClientProxy(mCblk, mBuffer, frameCount, mFrameSize, false, true))
1702{
1703 uint64_t mixBufferNs = ((uint64_t)2 * recordThread->frameCount() * 1000000000) /
1704 recordThread->sampleRate();
1705 mPeerTimeout.tv_sec = mixBufferNs / 1000000000;
1706 mPeerTimeout.tv_nsec = (int) (mixBufferNs % 1000000000);
1707
1708 ALOGV("PatchRecord %p sampleRate %d mPeerTimeout %d.%03d sec",
1709 this, sampleRate,
1710 (int)mPeerTimeout.tv_sec,
1711 (int)(mPeerTimeout.tv_nsec / 1000000));
1712}
1713
1714AudioFlinger::RecordThread::PatchRecord::~PatchRecord()
1715{
1716}
1717
1718// AudioBufferProvider interface
1719status_t AudioFlinger::RecordThread::PatchRecord::getNextBuffer(
Glenn Kastend79072e2016-01-06 08:41:20 -08001720 AudioBufferProvider::Buffer* buffer)
Eric Laurent83b88082014-06-20 18:31:16 -07001721{
1722 ALOG_ASSERT(mPeerProxy != 0, "PatchRecord::getNextBuffer() called without peer proxy");
1723 Proxy::Buffer buf;
1724 buf.mFrameCount = buffer->frameCount;
1725 status_t status = mPeerProxy->obtainBuffer(&buf, &mPeerTimeout);
1726 ALOGV_IF(status != NO_ERROR,
1727 "PatchRecord() %p mPeerProxy->obtainBuffer status %d", this, status);
Eric Laurentc2730ba2014-07-20 15:47:07 -07001728 buffer->frameCount = buf.mFrameCount;
Eric Laurent83b88082014-06-20 18:31:16 -07001729 if (buf.mFrameCount == 0) {
1730 return WOULD_BLOCK;
1731 }
Glenn Kastend79072e2016-01-06 08:41:20 -08001732 status = RecordTrack::getNextBuffer(buffer);
Eric Laurent83b88082014-06-20 18:31:16 -07001733 return status;
1734}
1735
1736void AudioFlinger::RecordThread::PatchRecord::releaseBuffer(AudioBufferProvider::Buffer* buffer)
1737{
1738 ALOG_ASSERT(mPeerProxy != 0, "PatchRecord::releaseBuffer() called without peer proxy");
1739 Proxy::Buffer buf;
1740 buf.mFrameCount = buffer->frameCount;
1741 buf.mRaw = buffer->raw;
1742 mPeerProxy->releaseBuffer(&buf);
1743 TrackBase::releaseBuffer(buffer);
1744}
1745
1746status_t AudioFlinger::RecordThread::PatchRecord::obtainBuffer(Proxy::Buffer* buffer,
1747 const struct timespec *timeOut)
1748{
1749 return mProxy->obtainBuffer(buffer, timeOut);
1750}
1751
1752void AudioFlinger::RecordThread::PatchRecord::releaseBuffer(Proxy::Buffer* buffer)
1753{
1754 mProxy->releaseBuffer(buffer);
1755}
1756
Glenn Kasten63238ef2015-03-02 15:50:29 -08001757} // namespace android