blob: a66a1dda9e0f2eec2d6302ffc672e02aa348b327 [file] [log] [blame]
Glenn Kastene5fb2632011-12-14 10:28:06 -08001/* frameworks/base/media/libmedia/AudioTrack.cpp
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002**
3** Copyright 2007, 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_NDEBUG 0
20#define LOG_TAG "AudioTrack"
21
22#include <stdint.h>
23#include <sys/types.h>
24#include <limits.h>
25
26#include <sched.h>
27#include <sys/resource.h>
28
29#include <private/media/AudioTrackShared.h>
30
31#include <media/AudioSystem.h>
32#include <media/AudioTrack.h>
33
34#include <utils/Log.h>
Mathias Agopian07952722009-05-19 19:08:10 -070035#include <binder/Parcel.h>
36#include <binder/IPCThreadState.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037#include <utils/Timers.h>
Eric Laurentae29b762011-03-28 18:37:07 -070038#include <utils/Atomic.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039
Dima Zavin24fc2fb2011-04-19 22:30:36 -070040#include <cutils/bitops.h>
Glenn Kastene80a4cc2011-12-15 09:51:17 -080041#include <cutils/compiler.h>
Dima Zavin24fc2fb2011-04-19 22:30:36 -070042
Dima Zavin34bb4192011-05-11 14:15:23 -070043#include <system/audio.h>
Dima Zavin290029d2011-06-13 18:16:26 -070044#include <system/audio_policy.h>
Dima Zavin24fc2fb2011-04-19 22:30:36 -070045
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046namespace android {
Chia-chi Yehbd240c22010-06-16 06:33:13 +080047// ---------------------------------------------------------------------------
48
49// static
50status_t AudioTrack::getMinFrameCount(
51 int* frameCount,
52 int streamType,
53 uint32_t sampleRate)
54{
55 int afSampleRate;
56 if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) {
57 return NO_INIT;
58 }
59 int afFrameCount;
60 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
61 return NO_INIT;
62 }
63 uint32_t afLatency;
64 if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) {
65 return NO_INIT;
66 }
67
68 // Ensure that buffer depth covers at least audio hardware latency
69 uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
70 if (minBufCount < 2) minBufCount = 2;
71
72 *frameCount = (sampleRate == 0) ? afFrameCount * minBufCount :
73 afFrameCount * minBufCount * sampleRate / afSampleRate;
74 return NO_ERROR;
75}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076
77// ---------------------------------------------------------------------------
78
79AudioTrack::AudioTrack()
Glenn Kasten99d54432011-06-22 16:15:25 -070080 : mStatus(NO_INIT),
81 mPreviousPriority(ANDROID_PRIORITY_NORMAL), mPreviousSchedulingGroup(ANDROID_TGROUP_DEFAULT)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082{
83}
84
85AudioTrack::AudioTrack(
86 int streamType,
87 uint32_t sampleRate,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -080088 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -070089 int channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 int frameCount,
91 uint32_t flags,
92 callback_t cbf,
93 void* user,
Eric Laurent65b65452010-06-01 23:49:17 -070094 int notificationFrames,
95 int sessionId)
Glenn Kasten99d54432011-06-22 16:15:25 -070096 : mStatus(NO_INIT),
97 mPreviousPriority(ANDROID_PRIORITY_NORMAL), mPreviousSchedulingGroup(ANDROID_TGROUP_DEFAULT)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098{
Jean-Michel Trivi54392232011-05-24 15:53:33 -070099 mStatus = set(streamType, sampleRate, format, channelMask,
Eric Laurent619346f2010-06-21 09:27:30 -0700100 frameCount, flags, cbf, user, notificationFrames,
101 0, false, sessionId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102}
103
104AudioTrack::AudioTrack(
105 int streamType,
106 uint32_t sampleRate,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800107 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700108 int channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 const sp<IMemory>& sharedBuffer,
110 uint32_t flags,
111 callback_t cbf,
112 void* user,
Eric Laurent65b65452010-06-01 23:49:17 -0700113 int notificationFrames,
114 int sessionId)
Glenn Kasten99d54432011-06-22 16:15:25 -0700115 : mStatus(NO_INIT),
116 mPreviousPriority(ANDROID_PRIORITY_NORMAL), mPreviousSchedulingGroup(ANDROID_TGROUP_DEFAULT)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117{
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700118 mStatus = set(streamType, sampleRate, format, channelMask,
Eric Laurent619346f2010-06-21 09:27:30 -0700119 0, flags, cbf, user, notificationFrames,
120 sharedBuffer, false, sessionId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121}
122
123AudioTrack::~AudioTrack()
124{
Steve Block71f2cf12011-10-20 11:56:00 +0100125 ALOGV_IF(mSharedBuffer != 0, "Destructor sharedBuffer: %p", mSharedBuffer->pointer());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126
127 if (mStatus == NO_ERROR) {
128 // Make sure that callback function exits in the case where
129 // it is looping on buffer full condition in obtainBuffer().
130 // Otherwise the callback thread will never exit.
131 stop();
132 if (mAudioTrackThread != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800133 mAudioTrackThread->requestExitAndWait();
134 mAudioTrackThread.clear();
135 }
136 mAudioTrack.clear();
137 IPCThreadState::self()->flushCommands();
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700138 AudioSystem::releaseAudioSessionId(mSessionId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 }
140}
141
142status_t AudioTrack::set(
143 int streamType,
144 uint32_t sampleRate,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800145 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700146 int channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 int frameCount,
148 uint32_t flags,
149 callback_t cbf,
150 void* user,
151 int notificationFrames,
152 const sp<IMemory>& sharedBuffer,
Eric Laurent65b65452010-06-01 23:49:17 -0700153 bool threadCanCallJava,
154 int sessionId)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155{
156
Steve Block71f2cf12011-10-20 11:56:00 +0100157 ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(), sharedBuffer->size());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158
Eric Laurent421ddc02011-03-07 14:52:59 -0800159 AutoMutex lock(mLock);
Eric Laurentef028272009-04-21 07:56:33 -0700160 if (mAudioTrack != 0) {
Steve Block3762c312012-01-06 19:20:56 +0000161 ALOGE("Track already in use");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 return INVALID_OPERATION;
163 }
164
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 int afSampleRate;
166 if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) {
167 return NO_INIT;
168 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800169 uint32_t afLatency;
170 if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) {
171 return NO_INIT;
172 }
173
174 // handle default values first.
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700175 if (streamType == AUDIO_STREAM_DEFAULT) {
176 streamType = AUDIO_STREAM_MUSIC;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177 }
178 if (sampleRate == 0) {
179 sampleRate = afSampleRate;
180 }
181 // these below should probably come from the audioFlinger too...
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800182 if (format == AUDIO_FORMAT_DEFAULT) {
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700183 format = AUDIO_FORMAT_PCM_16_BIT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 }
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700185 if (channelMask == 0) {
186 channelMask = AUDIO_CHANNEL_OUT_STEREO;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187 }
188
189 // validate parameters
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700190 if (!audio_is_valid_format(format)) {
Steve Block3762c312012-01-06 19:20:56 +0000191 ALOGE("Invalid format");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 return BAD_VALUE;
193 }
Eric Laurenta553c252009-07-17 12:17:14 -0700194
195 // force direct flag if format is not linear PCM
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700196 if (!audio_is_linear_pcm(format)) {
197 flags |= AUDIO_POLICY_OUTPUT_FLAG_DIRECT;
Eric Laurenta553c252009-07-17 12:17:14 -0700198 }
199
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700200 if (!audio_is_output_channel(channelMask)) {
Steve Block3762c312012-01-06 19:20:56 +0000201 ALOGE("Invalid channel mask");
Eric Laurenta553c252009-07-17 12:17:14 -0700202 return BAD_VALUE;
203 }
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700204 uint32_t channelCount = popcount(channelMask);
Eric Laurenta553c252009-07-17 12:17:14 -0700205
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700206 audio_io_handle_t output = AudioSystem::getOutput(
207 (audio_stream_type_t)streamType,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800208 sampleRate, format, channelMask,
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700209 (audio_policy_output_flags_t)flags);
Eric Laurenta553c252009-07-17 12:17:14 -0700210
211 if (output == 0) {
Steve Block3762c312012-01-06 19:20:56 +0000212 ALOGE("Could not get audio output for stream type %d", streamType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800213 return BAD_VALUE;
214 }
215
Eric Laurentbda74692009-11-04 08:27:26 -0800216 mVolume[LEFT] = 1.0f;
217 mVolume[RIGHT] = 1.0f;
Eric Laurent65b65452010-06-01 23:49:17 -0700218 mSendLevel = 0;
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700219 mFrameCount = frameCount;
220 mNotificationFramesReq = notificationFrames;
Eric Laurent65b65452010-06-01 23:49:17 -0700221 mSessionId = sessionId;
Eric Laurent7070b362010-07-16 07:43:46 -0700222 mAuxEffectId = 0;
Eric Laurent65b65452010-06-01 23:49:17 -0700223
Eric Laurentbda74692009-11-04 08:27:26 -0800224 // create the IAudioTrack
Eric Laurent421ddc02011-03-07 14:52:59 -0800225 status_t status = createTrack_l(streamType,
226 sampleRate,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800227 format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700228 (uint32_t)channelMask,
Eric Laurent421ddc02011-03-07 14:52:59 -0800229 frameCount,
230 flags,
231 sharedBuffer,
232 output,
233 true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800234
Eric Laurentbda74692009-11-04 08:27:26 -0800235 if (status != NO_ERROR) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236 return status;
237 }
Eric Laurentbda74692009-11-04 08:27:26 -0800238
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 if (cbf != 0) {
240 mAudioTrackThread = new AudioTrackThread(*this, threadCanCallJava);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800241 }
242
243 mStatus = NO_ERROR;
244
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800245 mStreamType = streamType;
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800246 mFormat = format;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700247 mChannelMask = (uint32_t)channelMask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 mChannelCount = channelCount;
249 mSharedBuffer = sharedBuffer;
250 mMuted = false;
Glenn Kastene6810ff2012-01-03 09:42:47 -0800251 mActive = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 mCbf = cbf;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800253 mUserData = user;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800254 mLoopCount = 0;
255 mMarkerPosition = 0;
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -0700256 mMarkerReached = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257 mNewPosition = 0;
258 mUpdatePeriod = 0;
Jean-Michel Trivi22cb2042011-08-25 16:47:23 -0700259 mFlushed = false;
Eric Laurenta553c252009-07-17 12:17:14 -0700260 mFlags = flags;
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700261 AudioSystem::acquireAudioSessionId(mSessionId);
Eric Laurent7e8626f2011-09-13 15:04:17 -0700262 mRestoreStatus = NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800263 return NO_ERROR;
264}
265
266status_t AudioTrack::initCheck() const
267{
268 return mStatus;
269}
270
271// -------------------------------------------------------------------------
272
273uint32_t AudioTrack::latency() const
274{
275 return mLatency;
276}
277
278int AudioTrack::streamType() const
279{
280 return mStreamType;
281}
282
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800283audio_format_t AudioTrack::format() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284{
285 return mFormat;
286}
287
288int AudioTrack::channelCount() const
289{
290 return mChannelCount;
291}
292
293uint32_t AudioTrack::frameCount() const
294{
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700295 return mCblk->frameCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296}
297
Glenn Kastenfaf354d2012-01-11 09:48:27 -0800298size_t AudioTrack::frameSize() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700300 if (audio_is_linear_pcm(mFormat)) {
Eric Laurentc310dcb2011-06-16 21:30:45 -0700301 return channelCount()*audio_bytes_per_sample(mFormat);
Eric Laurenta553c252009-07-17 12:17:14 -0700302 } else {
303 return sizeof(uint8_t);
304 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800305}
306
307sp<IMemory>& AudioTrack::sharedBuffer()
308{
309 return mSharedBuffer;
310}
311
312// -------------------------------------------------------------------------
313
314void AudioTrack::start()
315{
316 sp<AudioTrackThread> t = mAudioTrackThread;
Glenn Kasten028ab992011-06-22 16:18:04 -0700317 status_t status = NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800318
Steve Block71f2cf12011-10-20 11:56:00 +0100319 ALOGV("start %p", this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800320 if (t != 0) {
321 if (t->exitPending()) {
322 if (t->requestExitAndWait() == WOULD_BLOCK) {
Steve Block3762c312012-01-06 19:20:56 +0000323 ALOGE("AudioTrack::start called from thread");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800324 return;
325 }
326 }
327 t->mLock.lock();
328 }
329
Eric Laurentf3d6dd02010-11-18 08:40:16 -0800330 AutoMutex lock(mLock);
Eric Laurent421ddc02011-03-07 14:52:59 -0800331 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
332 // while we are accessing the cblk
333 sp <IAudioTrack> audioTrack = mAudioTrack;
334 sp <IMemory> iMem = mCblkMemory;
335 audio_track_cblk_t* cblk = mCblk;
336
Glenn Kastene6810ff2012-01-03 09:42:47 -0800337 if (!mActive) {
Jean-Michel Trivi22cb2042011-08-25 16:47:23 -0700338 mFlushed = false;
Glenn Kastene6810ff2012-01-03 09:42:47 -0800339 mActive = true;
Eric Laurent421ddc02011-03-07 14:52:59 -0800340 mNewPosition = cblk->server + mUpdatePeriod;
Eric Laurent913af0b2011-03-17 09:36:51 -0700341 cblk->lock.lock();
Eric Laurent421ddc02011-03-07 14:52:59 -0800342 cblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS;
343 cblk->waitTimeMs = 0;
Eric Laurentae29b762011-03-28 18:37:07 -0700344 android_atomic_and(~CBLK_DISABLED_ON, &cblk->flags);
Eric Laurent059b4be2009-11-09 23:32:22 -0800345 if (t != 0) {
Glenn Kasten99d54432011-06-22 16:15:25 -0700346 t->run("AudioTrackThread", ANDROID_PRIORITY_AUDIO);
Eric Laurent059b4be2009-11-09 23:32:22 -0800347 } else {
Glenn Kasten99d54432011-06-22 16:15:25 -0700348 mPreviousPriority = getpriority(PRIO_PROCESS, 0);
349 mPreviousSchedulingGroup = androidGetThreadSchedulingGroup(0);
350 androidSetThreadPriority(0, ANDROID_PRIORITY_AUDIO);
Eric Laurent059b4be2009-11-09 23:32:22 -0800351 }
352
Steve Block71f2cf12011-10-20 11:56:00 +0100353 ALOGV("start %p before lock cblk %p", this, mCblk);
Eric Laurent421ddc02011-03-07 14:52:59 -0800354 if (!(cblk->flags & CBLK_INVALID_MSK)) {
355 cblk->lock.unlock();
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700356 status = mAudioTrack->start();
Eric Laurent421ddc02011-03-07 14:52:59 -0800357 cblk->lock.lock();
358 if (status == DEAD_OBJECT) {
Eric Laurentae29b762011-03-28 18:37:07 -0700359 android_atomic_or(CBLK_INVALID_ON, &cblk->flags);
Eric Laurent49f02be2009-11-19 09:00:56 -0800360 }
Eric Laurent059b4be2009-11-09 23:32:22 -0800361 }
Eric Laurent421ddc02011-03-07 14:52:59 -0800362 if (cblk->flags & CBLK_INVALID_MSK) {
363 status = restoreTrack_l(cblk, true);
364 }
365 cblk->lock.unlock();
Eric Laurent059b4be2009-11-09 23:32:22 -0800366 if (status != NO_ERROR) {
Steve Block71f2cf12011-10-20 11:56:00 +0100367 ALOGV("start() failed");
Glenn Kastene6810ff2012-01-03 09:42:47 -0800368 mActive = false;
Eric Laurent059b4be2009-11-09 23:32:22 -0800369 if (t != 0) {
370 t->requestExit();
371 } else {
Glenn Kasten99d54432011-06-22 16:15:25 -0700372 setpriority(PRIO_PROCESS, 0, mPreviousPriority);
373 androidSetThreadSchedulingGroup(0, mPreviousSchedulingGroup);
Eric Laurent059b4be2009-11-09 23:32:22 -0800374 }
Eric Laurentbda74692009-11-04 08:27:26 -0800375 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376 }
377
378 if (t != 0) {
379 t->mLock.unlock();
380 }
381}
382
383void AudioTrack::stop()
384{
385 sp<AudioTrackThread> t = mAudioTrackThread;
386
Steve Block71f2cf12011-10-20 11:56:00 +0100387 ALOGV("stop %p", this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 if (t != 0) {
389 t->mLock.lock();
390 }
391
Eric Laurentf3d6dd02010-11-18 08:40:16 -0800392 AutoMutex lock(mLock);
Glenn Kastene6810ff2012-01-03 09:42:47 -0800393 if (mActive) {
394 mActive = false;
Eric Laurentef028272009-04-21 07:56:33 -0700395 mCblk->cv.signal();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800396 mAudioTrack->stop();
397 // Cancel loops (If we are in the middle of a loop, playback
398 // would not stop until loopCount reaches 0).
Eric Laurent421ddc02011-03-07 14:52:59 -0800399 setLoop_l(0, 0, 0);
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -0700400 // the playback head position will reset to 0, so if a marker is set, we need
401 // to activate it again
402 mMarkerReached = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800403 // Force flush if a shared buffer is used otherwise audioflinger
404 // will not stop before end of buffer is reached.
405 if (mSharedBuffer != 0) {
Eric Laurent421ddc02011-03-07 14:52:59 -0800406 flush_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800407 }
408 if (t != 0) {
409 t->requestExit();
410 } else {
Glenn Kasten99d54432011-06-22 16:15:25 -0700411 setpriority(PRIO_PROCESS, 0, mPreviousPriority);
412 androidSetThreadSchedulingGroup(0, mPreviousSchedulingGroup);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800413 }
414 }
415
416 if (t != 0) {
417 t->mLock.unlock();
418 }
419}
420
421bool AudioTrack::stopped() const
422{
Glenn Kastene6810ff2012-01-03 09:42:47 -0800423 AutoMutex lock(mLock);
424 return stopped_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800425}
426
427void AudioTrack::flush()
428{
Eric Laurent421ddc02011-03-07 14:52:59 -0800429 AutoMutex lock(mLock);
430 flush_l();
431}
432
433// must be called with mLock held
434void AudioTrack::flush_l()
435{
Steve Block71f2cf12011-10-20 11:56:00 +0100436 ALOGV("flush");
Eric Laurenta553c252009-07-17 12:17:14 -0700437
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -0700438 // clear playback marker and periodic update counter
439 mMarkerPosition = 0;
440 mMarkerReached = false;
441 mUpdatePeriod = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700442
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800443 if (!mActive) {
Jean-Michel Trivi22cb2042011-08-25 16:47:23 -0700444 mFlushed = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800445 mAudioTrack->flush();
446 // Release AudioTrack callback thread in case it was waiting for new buffers
447 // in AudioTrack::obtainBuffer()
448 mCblk->cv.signal();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800449 }
450}
451
452void AudioTrack::pause()
453{
Steve Block71f2cf12011-10-20 11:56:00 +0100454 ALOGV("pause");
Eric Laurentf3d6dd02010-11-18 08:40:16 -0800455 AutoMutex lock(mLock);
Glenn Kastene6810ff2012-01-03 09:42:47 -0800456 if (mActive) {
457 mActive = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800458 mAudioTrack->pause();
459 }
460}
461
462void AudioTrack::mute(bool e)
463{
464 mAudioTrack->mute(e);
465 mMuted = e;
466}
467
468bool AudioTrack::muted() const
469{
470 return mMuted;
471}
472
Eric Laurent65b65452010-06-01 23:49:17 -0700473status_t AudioTrack::setVolume(float left, float right)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800474{
Glenn Kasten1c50a782011-11-30 09:46:04 -0800475 if (left < 0.0f || left > 1.0f || right < 0.0f || right > 1.0f) {
Eric Laurent65b65452010-06-01 23:49:17 -0700476 return BAD_VALUE;
477 }
478
Eric Laurent421ddc02011-03-07 14:52:59 -0800479 AutoMutex lock(mLock);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800480 mVolume[LEFT] = left;
481 mVolume[RIGHT] = right;
482
483 // write must be atomic
Eric Laurent65b65452010-06-01 23:49:17 -0700484 mCblk->volumeLR = (uint32_t(uint16_t(right * 0x1000)) << 16) | uint16_t(left * 0x1000);
485
486 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800487}
488
489void AudioTrack::getVolume(float* left, float* right)
490{
Eric Laurent65b65452010-06-01 23:49:17 -0700491 if (left != NULL) {
492 *left = mVolume[LEFT];
493 }
494 if (right != NULL) {
495 *right = mVolume[RIGHT];
496 }
497}
498
Eric Laurent7070b362010-07-16 07:43:46 -0700499status_t AudioTrack::setAuxEffectSendLevel(float level)
Eric Laurent65b65452010-06-01 23:49:17 -0700500{
Steve Block71f2cf12011-10-20 11:56:00 +0100501 ALOGV("setAuxEffectSendLevel(%f)", level);
Eric Laurent65b65452010-06-01 23:49:17 -0700502 if (level > 1.0f) {
503 return BAD_VALUE;
504 }
Eric Laurent421ddc02011-03-07 14:52:59 -0800505 AutoMutex lock(mLock);
Eric Laurent65b65452010-06-01 23:49:17 -0700506
507 mSendLevel = level;
508
509 mCblk->sendLevel = uint16_t(level * 0x1000);
510
511 return NO_ERROR;
512}
513
Eric Laurent7070b362010-07-16 07:43:46 -0700514void AudioTrack::getAuxEffectSendLevel(float* level)
Eric Laurent65b65452010-06-01 23:49:17 -0700515{
516 if (level != NULL) {
517 *level = mSendLevel;
518 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800519}
520
Eric Laurent88e209d2009-07-07 07:10:45 -0700521status_t AudioTrack::setSampleRate(int rate)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800522{
523 int afSamplingRate;
524
525 if (AudioSystem::getOutputSamplingRate(&afSamplingRate, mStreamType) != NO_ERROR) {
Eric Laurent88e209d2009-07-07 07:10:45 -0700526 return NO_INIT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800527 }
528 // Resampler implementation limits input sampling rate to 2 x output sampling rate.
Eric Laurent88e209d2009-07-07 07:10:45 -0700529 if (rate <= 0 || rate > afSamplingRate*2 ) return BAD_VALUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800530
Eric Laurent421ddc02011-03-07 14:52:59 -0800531 AutoMutex lock(mLock);
Eric Laurent88e209d2009-07-07 07:10:45 -0700532 mCblk->sampleRate = rate;
533 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800534}
535
536uint32_t AudioTrack::getSampleRate()
537{
Eric Laurent421ddc02011-03-07 14:52:59 -0800538 AutoMutex lock(mLock);
Eric Laurent88e209d2009-07-07 07:10:45 -0700539 return mCblk->sampleRate;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800540}
541
542status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount)
543{
Eric Laurent421ddc02011-03-07 14:52:59 -0800544 AutoMutex lock(mLock);
545 return setLoop_l(loopStart, loopEnd, loopCount);
546}
547
548// must be called with mLock held
549status_t AudioTrack::setLoop_l(uint32_t loopStart, uint32_t loopEnd, int loopCount)
550{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800551 audio_track_cblk_t* cblk = mCblk;
552
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800553 Mutex::Autolock _l(cblk->lock);
554
555 if (loopCount == 0) {
556 cblk->loopStart = UINT_MAX;
557 cblk->loopEnd = UINT_MAX;
558 cblk->loopCount = 0;
559 mLoopCount = 0;
560 return NO_ERROR;
561 }
562
563 if (loopStart >= loopEnd ||
Eric Laurent6667ac32011-03-21 11:49:00 -0700564 loopEnd - loopStart > cblk->frameCount ||
565 cblk->server > loopStart) {
Steve Block3762c312012-01-06 19:20:56 +0000566 ALOGE("setLoop invalid value: loopStart %d, loopEnd %d, loopCount %d, framecount %d, user %d", loopStart, loopEnd, loopCount, cblk->frameCount, cblk->user);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800567 return BAD_VALUE;
568 }
569
Eric Laurent6667ac32011-03-21 11:49:00 -0700570 if ((mSharedBuffer != 0) && (loopEnd > cblk->frameCount)) {
Steve Block3762c312012-01-06 19:20:56 +0000571 ALOGE("setLoop invalid value: loop markers beyond data: loopStart %d, loopEnd %d, framecount %d",
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700572 loopStart, loopEnd, cblk->frameCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800573 return BAD_VALUE;
Eric Laurenta553c252009-07-17 12:17:14 -0700574 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800575
576 cblk->loopStart = loopStart;
577 cblk->loopEnd = loopEnd;
578 cblk->loopCount = loopCount;
579 mLoopCount = loopCount;
580
581 return NO_ERROR;
582}
583
584status_t AudioTrack::getLoop(uint32_t *loopStart, uint32_t *loopEnd, int *loopCount)
585{
Eric Laurent421ddc02011-03-07 14:52:59 -0800586 AutoMutex lock(mLock);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587 if (loopStart != 0) {
588 *loopStart = mCblk->loopStart;
589 }
590 if (loopEnd != 0) {
591 *loopEnd = mCblk->loopEnd;
592 }
593 if (loopCount != 0) {
594 if (mCblk->loopCount < 0) {
595 *loopCount = -1;
596 } else {
597 *loopCount = mCblk->loopCount;
598 }
599 }
600
601 return NO_ERROR;
602}
603
604status_t AudioTrack::setMarkerPosition(uint32_t marker)
605{
606 if (mCbf == 0) return INVALID_OPERATION;
607
608 mMarkerPosition = marker;
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -0700609 mMarkerReached = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800610
611 return NO_ERROR;
612}
613
614status_t AudioTrack::getMarkerPosition(uint32_t *marker)
615{
616 if (marker == 0) return BAD_VALUE;
617
618 *marker = mMarkerPosition;
619
620 return NO_ERROR;
621}
622
623status_t AudioTrack::setPositionUpdatePeriod(uint32_t updatePeriod)
624{
625 if (mCbf == 0) return INVALID_OPERATION;
626
627 uint32_t curPosition;
628 getPosition(&curPosition);
629 mNewPosition = curPosition + updatePeriod;
630 mUpdatePeriod = updatePeriod;
631
632 return NO_ERROR;
633}
634
635status_t AudioTrack::getPositionUpdatePeriod(uint32_t *updatePeriod)
636{
637 if (updatePeriod == 0) return BAD_VALUE;
638
639 *updatePeriod = mUpdatePeriod;
640
641 return NO_ERROR;
642}
643
644status_t AudioTrack::setPosition(uint32_t position)
645{
Eric Laurent421ddc02011-03-07 14:52:59 -0800646 AutoMutex lock(mLock);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800647
Glenn Kastene6810ff2012-01-03 09:42:47 -0800648 if (!stopped_l()) return INVALID_OPERATION;
649
650 Mutex::Autolock _l(mCblk->lock);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800651
652 if (position > mCblk->user) return BAD_VALUE;
653
654 mCblk->server = position;
Eric Laurentae29b762011-03-28 18:37:07 -0700655 android_atomic_or(CBLK_FORCEREADY_ON, &mCblk->flags);
Eric Laurenta553c252009-07-17 12:17:14 -0700656
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800657 return NO_ERROR;
658}
659
660status_t AudioTrack::getPosition(uint32_t *position)
661{
662 if (position == 0) return BAD_VALUE;
Eric Laurent421ddc02011-03-07 14:52:59 -0800663 AutoMutex lock(mLock);
Jean-Michel Trivi22cb2042011-08-25 16:47:23 -0700664 *position = mFlushed ? 0 : mCblk->server;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800665
666 return NO_ERROR;
667}
668
669status_t AudioTrack::reload()
670{
Eric Laurent421ddc02011-03-07 14:52:59 -0800671 AutoMutex lock(mLock);
672
Glenn Kastene6810ff2012-01-03 09:42:47 -0800673 if (!stopped_l()) return INVALID_OPERATION;
Eric Laurenta553c252009-07-17 12:17:14 -0700674
Eric Laurent421ddc02011-03-07 14:52:59 -0800675 flush_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800676
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700677 mCblk->stepUser(mCblk->frameCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800678
679 return NO_ERROR;
680}
681
Eric Laurenta553c252009-07-17 12:17:14 -0700682audio_io_handle_t AudioTrack::getOutput()
683{
Eric Laurent421ddc02011-03-07 14:52:59 -0800684 AutoMutex lock(mLock);
685 return getOutput_l();
686}
687
688// must be called with mLock held
689audio_io_handle_t AudioTrack::getOutput_l()
690{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700691 return AudioSystem::getOutput((audio_stream_type_t)mStreamType,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700692 mCblk->sampleRate, mFormat, mChannelMask, (audio_policy_output_flags_t)mFlags);
Eric Laurenta553c252009-07-17 12:17:14 -0700693}
694
Eric Laurent65b65452010-06-01 23:49:17 -0700695int AudioTrack::getSessionId()
696{
697 return mSessionId;
698}
699
700status_t AudioTrack::attachAuxEffect(int effectId)
701{
Steve Block71f2cf12011-10-20 11:56:00 +0100702 ALOGV("attachAuxEffect(%d)", effectId);
Eric Laurent7070b362010-07-16 07:43:46 -0700703 status_t status = mAudioTrack->attachAuxEffect(effectId);
704 if (status == NO_ERROR) {
705 mAuxEffectId = effectId;
706 }
707 return status;
Eric Laurent65b65452010-06-01 23:49:17 -0700708}
709
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800710// -------------------------------------------------------------------------
711
Eric Laurent421ddc02011-03-07 14:52:59 -0800712// must be called with mLock held
713status_t AudioTrack::createTrack_l(
Eric Laurentbda74692009-11-04 08:27:26 -0800714 int streamType,
715 uint32_t sampleRate,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800716 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700717 uint32_t channelMask,
Eric Laurentbda74692009-11-04 08:27:26 -0800718 int frameCount,
719 uint32_t flags,
720 const sp<IMemory>& sharedBuffer,
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700721 audio_io_handle_t output,
722 bool enforceFrameCount)
Eric Laurentbda74692009-11-04 08:27:26 -0800723{
724 status_t status;
725 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
726 if (audioFlinger == 0) {
Steve Block3762c312012-01-06 19:20:56 +0000727 ALOGE("Could not get audioflinger");
Eric Laurentbda74692009-11-04 08:27:26 -0800728 return NO_INIT;
729 }
730
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700731 int afSampleRate;
732 if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) {
733 return NO_INIT;
734 }
735 int afFrameCount;
736 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
737 return NO_INIT;
738 }
739 uint32_t afLatency;
740 if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) {
741 return NO_INIT;
742 }
743
744 mNotificationFramesAct = mNotificationFramesReq;
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700745 if (!audio_is_linear_pcm(format)) {
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700746 if (sharedBuffer != 0) {
747 frameCount = sharedBuffer->size();
748 }
749 } else {
750 // Ensure that buffer depth covers at least audio hardware latency
751 uint32_t minBufCount = afLatency / ((1000 * afFrameCount)/afSampleRate);
752 if (minBufCount < 2) minBufCount = 2;
753
754 int minFrameCount = (afFrameCount*sampleRate*minBufCount)/afSampleRate;
755
756 if (sharedBuffer == 0) {
757 if (frameCount == 0) {
758 frameCount = minFrameCount;
759 }
760 if (mNotificationFramesAct == 0) {
761 mNotificationFramesAct = frameCount/2;
762 }
763 // Make sure that application is notified with sufficient margin
764 // before underrun
765 if (mNotificationFramesAct > (uint32_t)frameCount/2) {
766 mNotificationFramesAct = frameCount/2;
767 }
768 if (frameCount < minFrameCount) {
769 if (enforceFrameCount) {
Steve Block3762c312012-01-06 19:20:56 +0000770 ALOGE("Invalid buffer size: minFrameCount %d, frameCount %d", minFrameCount, frameCount);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700771 return BAD_VALUE;
772 } else {
773 frameCount = minFrameCount;
774 }
775 }
776 } else {
777 // Ensure that buffer alignment matches channelcount
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700778 int channelCount = popcount(channelMask);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700779 if (((uint32_t)sharedBuffer->pointer() & (channelCount | 1)) != 0) {
Steve Block3762c312012-01-06 19:20:56 +0000780 ALOGE("Invalid buffer alignement: address %p, channelCount %d", sharedBuffer->pointer(), channelCount);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700781 return BAD_VALUE;
782 }
783 frameCount = sharedBuffer->size()/channelCount/sizeof(int16_t);
784 }
785 }
786
Eric Laurentbda74692009-11-04 08:27:26 -0800787 sp<IAudioTrack> track = audioFlinger->createTrack(getpid(),
788 streamType,
789 sampleRate,
790 format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700791 channelMask,
Eric Laurentbda74692009-11-04 08:27:26 -0800792 frameCount,
793 ((uint16_t)flags) << 16,
794 sharedBuffer,
795 output,
Eric Laurent65b65452010-06-01 23:49:17 -0700796 &mSessionId,
Eric Laurentbda74692009-11-04 08:27:26 -0800797 &status);
798
799 if (track == 0) {
Steve Block3762c312012-01-06 19:20:56 +0000800 ALOGE("AudioFlinger could not create track, status: %d", status);
Eric Laurentbda74692009-11-04 08:27:26 -0800801 return status;
802 }
803 sp<IMemory> cblk = track->getCblk();
804 if (cblk == 0) {
Steve Block3762c312012-01-06 19:20:56 +0000805 ALOGE("Could not get control block");
Eric Laurentbda74692009-11-04 08:27:26 -0800806 return NO_INIT;
807 }
Eric Laurentbda74692009-11-04 08:27:26 -0800808 mAudioTrack = track;
Eric Laurentbda74692009-11-04 08:27:26 -0800809 mCblkMemory = cblk;
810 mCblk = static_cast<audio_track_cblk_t*>(cblk->pointer());
Eric Laurentae29b762011-03-28 18:37:07 -0700811 android_atomic_or(CBLK_DIRECTION_OUT, &mCblk->flags);
Eric Laurentbda74692009-11-04 08:27:26 -0800812 if (sharedBuffer == 0) {
813 mCblk->buffers = (char*)mCblk + sizeof(audio_track_cblk_t);
814 } else {
815 mCblk->buffers = sharedBuffer->pointer();
816 // Force buffer full condition as data is already present in shared memory
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700817 mCblk->stepUser(mCblk->frameCount);
Eric Laurentbda74692009-11-04 08:27:26 -0800818 }
819
Eric Laurent65b65452010-06-01 23:49:17 -0700820 mCblk->volumeLR = (uint32_t(uint16_t(mVolume[RIGHT] * 0x1000)) << 16) | uint16_t(mVolume[LEFT] * 0x1000);
821 mCblk->sendLevel = uint16_t(mSendLevel * 0x1000);
Eric Laurent7070b362010-07-16 07:43:46 -0700822 mAudioTrack->attachAuxEffect(mAuxEffectId);
Eric Laurent49f02be2009-11-19 09:00:56 -0800823 mCblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS;
824 mCblk->waitTimeMs = 0;
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700825 mRemainingFrames = mNotificationFramesAct;
826 mLatency = afLatency + (1000*mCblk->frameCount) / sampleRate;
Eric Laurentbda74692009-11-04 08:27:26 -0800827 return NO_ERROR;
828}
829
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800830status_t AudioTrack::obtainBuffer(Buffer* audioBuffer, int32_t waitCount)
831{
Eric Laurent421ddc02011-03-07 14:52:59 -0800832 AutoMutex lock(mLock);
Glenn Kastene6810ff2012-01-03 09:42:47 -0800833 bool active;
Glenn Kasten028ab992011-06-22 16:18:04 -0700834 status_t result = NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800835 audio_track_cblk_t* cblk = mCblk;
836 uint32_t framesReq = audioBuffer->frameCount;
Eric Laurentef028272009-04-21 07:56:33 -0700837 uint32_t waitTimeMs = (waitCount < 0) ? cblk->bufferTimeoutMs : WAIT_PERIOD_MS;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800838
839 audioBuffer->frameCount = 0;
840 audioBuffer->size = 0;
841
842 uint32_t framesAvail = cblk->framesAvailable();
843
Eric Laurent6667ac32011-03-21 11:49:00 -0700844 cblk->lock.lock();
845 if (cblk->flags & CBLK_INVALID_MSK) {
846 goto create_new_track;
847 }
848 cblk->lock.unlock();
849
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800850 if (framesAvail == 0) {
Eric Laurentbda74692009-11-04 08:27:26 -0800851 cblk->lock.lock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800852 goto start_loop_here;
853 while (framesAvail == 0) {
854 active = mActive;
Glenn Kastene80a4cc2011-12-15 09:51:17 -0800855 if (CC_UNLIKELY(!active)) {
Steve Block71f2cf12011-10-20 11:56:00 +0100856 ALOGV("Not active and NO_MORE_BUFFERS");
Eric Laurentbda74692009-11-04 08:27:26 -0800857 cblk->lock.unlock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800858 return NO_MORE_BUFFERS;
859 }
Glenn Kastene80a4cc2011-12-15 09:51:17 -0800860 if (CC_UNLIKELY(!waitCount)) {
Eric Laurentbda74692009-11-04 08:27:26 -0800861 cblk->lock.unlock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800862 return WOULD_BLOCK;
Eric Laurentbda74692009-11-04 08:27:26 -0800863 }
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700864 if (!(cblk->flags & CBLK_INVALID_MSK)) {
Eric Laurent421ddc02011-03-07 14:52:59 -0800865 mLock.unlock();
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700866 result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs));
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700867 cblk->lock.unlock();
Eric Laurent421ddc02011-03-07 14:52:59 -0800868 mLock.lock();
Glenn Kastene6810ff2012-01-03 09:42:47 -0800869 if (!mActive) {
Eric Laurent421ddc02011-03-07 14:52:59 -0800870 return status_t(STOPPED);
871 }
872 cblk->lock.lock();
873 }
874
875 if (cblk->flags & CBLK_INVALID_MSK) {
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700876 goto create_new_track;
877 }
Glenn Kastene80a4cc2011-12-15 09:51:17 -0800878 if (CC_UNLIKELY(result != NO_ERROR)) {
Eric Laurentef028272009-04-21 07:56:33 -0700879 cblk->waitTimeMs += waitTimeMs;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800880 if (cblk->waitTimeMs >= cblk->bufferTimeoutMs) {
881 // timing out when a loop has been set and we have already written upto loop end
882 // is a normal condition: no need to wake AudioFlinger up.
883 if (cblk->user < cblk->loopEnd) {
Steve Block8564c8d2012-01-05 23:22:43 +0000884 ALOGW( "obtainBuffer timed out (is the CPU pegged?) %p "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800885 "user=%08x, server=%08x", this, cblk->user, cblk->server);
Eric Laurenta553c252009-07-17 12:17:14 -0700886 //unlock cblk mutex before calling mAudioTrack->start() (see issue #1617140)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800887 cblk->lock.unlock();
Eric Laurentbda74692009-11-04 08:27:26 -0800888 result = mAudioTrack->start();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800889 cblk->lock.lock();
Eric Laurent421ddc02011-03-07 14:52:59 -0800890 if (result == DEAD_OBJECT) {
Eric Laurentae29b762011-03-28 18:37:07 -0700891 android_atomic_or(CBLK_INVALID_ON, &cblk->flags);
Eric Laurent421ddc02011-03-07 14:52:59 -0800892create_new_track:
893 result = restoreTrack_l(cblk, false);
894 }
895 if (result != NO_ERROR) {
Steve Block8564c8d2012-01-05 23:22:43 +0000896 ALOGW("obtainBuffer create Track error %d", result);
Eric Laurent421ddc02011-03-07 14:52:59 -0800897 cblk->lock.unlock();
898 return result;
899 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800900 }
901 cblk->waitTimeMs = 0;
902 }
Eric Laurenta553c252009-07-17 12:17:14 -0700903
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800904 if (--waitCount == 0) {
Eric Laurentbda74692009-11-04 08:27:26 -0800905 cblk->lock.unlock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800906 return TIMED_OUT;
907 }
908 }
909 // read the server count again
910 start_loop_here:
911 framesAvail = cblk->framesAvailable_l();
912 }
Eric Laurentbda74692009-11-04 08:27:26 -0800913 cblk->lock.unlock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800914 }
915
Eric Laurent4712baa2010-09-30 16:12:31 -0700916 // restart track if it was disabled by audioflinger due to previous underrun
Eric Laurent421ddc02011-03-07 14:52:59 -0800917 if (mActive && (cblk->flags & CBLK_DISABLED_MSK)) {
Eric Laurentae29b762011-03-28 18:37:07 -0700918 android_atomic_and(~CBLK_DISABLED_ON, &cblk->flags);
Steve Block8564c8d2012-01-05 23:22:43 +0000919 ALOGW("obtainBuffer() track %p disabled, restarting", this);
Eric Laurentae29b762011-03-28 18:37:07 -0700920 mAudioTrack->start();
Eric Laurent4712baa2010-09-30 16:12:31 -0700921 }
922
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800923 cblk->waitTimeMs = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700924
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800925 if (framesReq > framesAvail) {
926 framesReq = framesAvail;
927 }
928
929 uint32_t u = cblk->user;
930 uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
931
932 if (u + framesReq > bufferEnd) {
933 framesReq = bufferEnd - u;
934 }
935
Eric Laurenta553c252009-07-17 12:17:14 -0700936 audioBuffer->flags = mMuted ? Buffer::MUTE : 0;
937 audioBuffer->channelCount = mChannelCount;
938 audioBuffer->frameCount = framesReq;
939 audioBuffer->size = framesReq * cblk->frameSize;
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700940 if (audio_is_linear_pcm(mFormat)) {
941 audioBuffer->format = AUDIO_FORMAT_PCM_16_BIT;
Eric Laurenta553c252009-07-17 12:17:14 -0700942 } else {
943 audioBuffer->format = mFormat;
944 }
945 audioBuffer->raw = (int8_t *)cblk->buffer(u);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800946 active = mActive;
947 return active ? status_t(NO_ERROR) : status_t(STOPPED);
948}
949
950void AudioTrack::releaseBuffer(Buffer* audioBuffer)
951{
Eric Laurent421ddc02011-03-07 14:52:59 -0800952 AutoMutex lock(mLock);
953 mCblk->stepUser(audioBuffer->frameCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800954}
955
956// -------------------------------------------------------------------------
957
958ssize_t AudioTrack::write(const void* buffer, size_t userSize)
959{
960
961 if (mSharedBuffer != 0) return INVALID_OPERATION;
962
963 if (ssize_t(userSize) < 0) {
964 // sanity-check. user is most-likely passing an error code.
Steve Block3762c312012-01-06 19:20:56 +0000965 ALOGE("AudioTrack::write(buffer=%p, size=%u (%d)",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800966 buffer, userSize, userSize);
967 return BAD_VALUE;
968 }
969
Steve Block71f2cf12011-10-20 11:56:00 +0100970 ALOGV("write %p: %d bytes, mActive=%d", this, userSize, mActive);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800971
Eric Laurent421ddc02011-03-07 14:52:59 -0800972 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
973 // while we are accessing the cblk
974 mLock.lock();
975 sp <IAudioTrack> audioTrack = mAudioTrack;
976 sp <IMemory> iMem = mCblkMemory;
977 mLock.unlock();
978
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800979 ssize_t written = 0;
980 const int8_t *src = (const int8_t *)buffer;
981 Buffer audioBuffer;
Glenn Kastenfaf354d2012-01-11 09:48:27 -0800982 size_t frameSz = frameSize();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800983
984 do {
Eric Laurent913af0b2011-03-17 09:36:51 -0700985 audioBuffer.frameCount = userSize/frameSz;
Eric Laurenta553c252009-07-17 12:17:14 -0700986
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987 // Calling obtainBuffer() with a negative wait count causes
988 // an (almost) infinite wait time.
989 status_t err = obtainBuffer(&audioBuffer, -1);
990 if (err < 0) {
991 // out of buffers, return #bytes written
992 if (err == status_t(NO_MORE_BUFFERS))
993 break;
994 return ssize_t(err);
995 }
996
997 size_t toWrite;
Eric Laurenta553c252009-07-17 12:17:14 -0700998
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700999 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001000 // Divide capacity by 2 to take expansion into account
1001 toWrite = audioBuffer.size>>1;
1002 // 8 to 16 bit conversion
1003 int count = toWrite;
1004 int16_t *dst = (int16_t *)(audioBuffer.i8);
1005 while(count--) {
1006 *dst++ = (int16_t)(*src++^0x80) << 8;
1007 }
Eric Laurent28ad42b2009-08-04 10:42:26 -07001008 } else {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001009 toWrite = audioBuffer.size;
1010 memcpy(audioBuffer.i8, src, toWrite);
1011 src += toWrite;
1012 }
1013 userSize -= toWrite;
1014 written += toWrite;
1015
1016 releaseBuffer(&audioBuffer);
Eric Laurent913af0b2011-03-17 09:36:51 -07001017 } while (userSize >= frameSz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001018
1019 return written;
1020}
1021
1022// -------------------------------------------------------------------------
1023
1024bool AudioTrack::processAudioBuffer(const sp<AudioTrackThread>& thread)
1025{
1026 Buffer audioBuffer;
1027 uint32_t frames;
1028 size_t writtenSize;
1029
Eric Laurent421ddc02011-03-07 14:52:59 -08001030 mLock.lock();
1031 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
1032 // while we are accessing the cblk
1033 sp <IAudioTrack> audioTrack = mAudioTrack;
1034 sp <IMemory> iMem = mCblkMemory;
1035 audio_track_cblk_t* cblk = mCblk;
Glenn Kastene6810ff2012-01-03 09:42:47 -08001036 bool active = mActive;
Eric Laurent421ddc02011-03-07 14:52:59 -08001037 mLock.unlock();
1038
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001039 // Manage underrun callback
Glenn Kastene6810ff2012-01-03 09:42:47 -08001040 if (active && (cblk->framesAvailable() == cblk->frameCount)) {
Steve Block71f2cf12011-10-20 11:56:00 +01001041 ALOGV("Underrun user: %x, server: %x, flags %04x", cblk->user, cblk->server, cblk->flags);
Eric Laurentae29b762011-03-28 18:37:07 -07001042 if (!(android_atomic_or(CBLK_UNDERRUN_ON, &cblk->flags) & CBLK_UNDERRUN_MSK)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001043 mCbf(EVENT_UNDERRUN, mUserData, 0);
Eric Laurent421ddc02011-03-07 14:52:59 -08001044 if (cblk->server == cblk->frameCount) {
Eric Laurenta553c252009-07-17 12:17:14 -07001045 mCbf(EVENT_BUFFER_END, mUserData, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001046 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001047 if (mSharedBuffer != 0) return false;
1048 }
1049 }
Eric Laurenta553c252009-07-17 12:17:14 -07001050
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001051 // Manage loop end callback
Eric Laurent421ddc02011-03-07 14:52:59 -08001052 while (mLoopCount > cblk->loopCount) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001053 int loopCount = -1;
1054 mLoopCount--;
1055 if (mLoopCount >= 0) loopCount = mLoopCount;
1056
1057 mCbf(EVENT_LOOP_END, mUserData, (void *)&loopCount);
1058 }
1059
1060 // Manage marker callback
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -07001061 if (!mMarkerReached && (mMarkerPosition > 0)) {
Eric Laurent421ddc02011-03-07 14:52:59 -08001062 if (cblk->server >= mMarkerPosition) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001063 mCbf(EVENT_MARKER, mUserData, (void *)&mMarkerPosition);
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -07001064 mMarkerReached = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001065 }
1066 }
1067
1068 // Manage new position callback
Eric Laurenta553c252009-07-17 12:17:14 -07001069 if (mUpdatePeriod > 0) {
Eric Laurent421ddc02011-03-07 14:52:59 -08001070 while (cblk->server >= mNewPosition) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001071 mCbf(EVENT_NEW_POS, mUserData, (void *)&mNewPosition);
1072 mNewPosition += mUpdatePeriod;
1073 }
1074 }
1075
1076 // If Shared buffer is used, no data is requested from client.
1077 if (mSharedBuffer != 0) {
1078 frames = 0;
1079 } else {
1080 frames = mRemainingFrames;
1081 }
1082
Eric Laurentf1d360a2011-09-07 11:13:23 -07001083 int32_t waitCount = -1;
1084 if (mUpdatePeriod || (!mMarkerReached && mMarkerPosition) || mLoopCount) {
1085 waitCount = 1;
1086 }
1087
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001088 do {
1089
1090 audioBuffer.frameCount = frames;
Eric Laurenta553c252009-07-17 12:17:14 -07001091
1092 // Calling obtainBuffer() with a wait count of 1
1093 // limits wait time to WAIT_PERIOD_MS. This prevents from being
1094 // stuck here not being able to handle timed events (position, markers, loops).
Eric Laurentf1d360a2011-09-07 11:13:23 -07001095 status_t err = obtainBuffer(&audioBuffer, waitCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001096 if (err < NO_ERROR) {
1097 if (err != TIMED_OUT) {
Steve Block3762c312012-01-06 19:20:56 +00001098 ALOGE_IF(err != status_t(NO_MORE_BUFFERS), "Error obtaining an audio buffer, giving up.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001099 return false;
1100 }
1101 break;
1102 }
1103 if (err == status_t(STOPPED)) return false;
1104
1105 // Divide buffer size by 2 to take into account the expansion
1106 // due to 8 to 16 bit conversion: the callback must fill only half
1107 // of the destination buffer
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001108 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001109 audioBuffer.size >>= 1;
1110 }
1111
1112 size_t reqSize = audioBuffer.size;
1113 mCbf(EVENT_MORE_DATA, mUserData, &audioBuffer);
1114 writtenSize = audioBuffer.size;
1115
1116 // Sanity check on returned size
The Android Open Source Project4df24232009-03-05 14:34:35 -08001117 if (ssize_t(writtenSize) <= 0) {
1118 // The callback is done filling buffers
1119 // Keep this thread going to handle timed events and
1120 // still try to get more data in intervals of WAIT_PERIOD_MS
1121 // but don't just loop and block the CPU, so wait
1122 usleep(WAIT_PERIOD_MS*1000);
1123 break;
1124 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001125 if (writtenSize > reqSize) writtenSize = reqSize;
1126
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001127 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001128 // 8 to 16 bit conversion
1129 const int8_t *src = audioBuffer.i8 + writtenSize-1;
1130 int count = writtenSize;
1131 int16_t *dst = audioBuffer.i16 + writtenSize-1;
1132 while(count--) {
1133 *dst-- = (int16_t)(*src--^0x80) << 8;
1134 }
1135 writtenSize <<= 1;
1136 }
1137
1138 audioBuffer.size = writtenSize;
Eric Laurenta553c252009-07-17 12:17:14 -07001139 // NOTE: mCblk->frameSize is not equal to AudioTrack::frameSize() for
Glenn Kastenfaf354d2012-01-11 09:48:27 -08001140 // 8 bit PCM data: in this case, mCblk->frameSize is based on a sample size of
Eric Laurenta553c252009-07-17 12:17:14 -07001141 // 16 bit.
1142 audioBuffer.frameCount = writtenSize/mCblk->frameSize;
1143
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001144 frames -= audioBuffer.frameCount;
1145
1146 releaseBuffer(&audioBuffer);
1147 }
1148 while (frames);
1149
1150 if (frames == 0) {
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001151 mRemainingFrames = mNotificationFramesAct;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001152 } else {
1153 mRemainingFrames = frames;
1154 }
1155 return true;
1156}
1157
Eric Laurent421ddc02011-03-07 14:52:59 -08001158// must be called with mLock and cblk.lock held. Callers must also hold strong references on
1159// the IAudioTrack and IMemory in case they are recreated here.
1160// If the IAudioTrack is successfully restored, the cblk pointer is updated
1161status_t AudioTrack::restoreTrack_l(audio_track_cblk_t*& cblk, bool fromStart)
1162{
1163 status_t result;
1164
Eric Laurentae29b762011-03-28 18:37:07 -07001165 if (!(android_atomic_or(CBLK_RESTORING_ON, &cblk->flags) & CBLK_RESTORING_MSK)) {
Steve Block8564c8d2012-01-05 23:22:43 +00001166 ALOGW("dead IAudioTrack, creating a new one from %s TID %d",
Eric Laurent7e8626f2011-09-13 15:04:17 -07001167 fromStart ? "start()" : "obtainBuffer()", gettid());
Eric Laurent421ddc02011-03-07 14:52:59 -08001168
Eric Laurent421ddc02011-03-07 14:52:59 -08001169 // signal old cblk condition so that other threads waiting for available buffers stop
1170 // waiting now
1171 cblk->cv.broadcast();
1172 cblk->lock.unlock();
1173
Eric Laurent05ce0942011-08-30 10:18:54 -07001174 // refresh the audio configuration cache in this process to make sure we get new
1175 // output parameters in getOutput_l() and createTrack_l()
1176 AudioSystem::clearAudioConfigCache();
1177
Eric Laurent421ddc02011-03-07 14:52:59 -08001178 // if the new IAudioTrack is created, createTrack_l() will modify the
1179 // following member variables: mAudioTrack, mCblkMemory and mCblk.
1180 // It will also delete the strong references on previous IAudioTrack and IMemory
1181 result = createTrack_l(mStreamType,
1182 cblk->sampleRate,
1183 mFormat,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001184 mChannelMask,
Eric Laurent421ddc02011-03-07 14:52:59 -08001185 mFrameCount,
1186 mFlags,
1187 mSharedBuffer,
1188 getOutput_l(),
1189 false);
1190
1191 if (result == NO_ERROR) {
Eric Laurentb0808f92011-09-06 12:36:15 -07001192 uint32_t user = cblk->user;
1193 uint32_t server = cblk->server;
Eric Laurent6667ac32011-03-21 11:49:00 -07001194 // restore write index and set other indexes to reflect empty buffer status
Eric Laurentb0808f92011-09-06 12:36:15 -07001195 mCblk->user = user;
1196 mCblk->server = user;
1197 mCblk->userBase = user;
1198 mCblk->serverBase = user;
Eric Laurent6667ac32011-03-21 11:49:00 -07001199 // restore loop: this is not guaranteed to succeed if new frame count is not
1200 // compatible with loop length
1201 setLoop_l(cblk->loopStart, cblk->loopEnd, cblk->loopCount);
Eric Laurent421ddc02011-03-07 14:52:59 -08001202 if (!fromStart) {
1203 mCblk->bufferTimeoutMs = MAX_RUN_TIMEOUT_MS;
Eric Laurentb0808f92011-09-06 12:36:15 -07001204 // Make sure that a client relying on callback events indicating underrun or
1205 // the actual amount of audio frames played (e.g SoundPool) receives them.
1206 if (mSharedBuffer == 0) {
1207 uint32_t frames = 0;
1208 if (user > server) {
1209 frames = ((user - server) > mCblk->frameCount) ?
1210 mCblk->frameCount : (user - server);
1211 memset(mCblk->buffers, 0, frames * mCblk->frameSize);
1212 }
1213 // restart playback even if buffer is not completely filled.
1214 android_atomic_or(CBLK_FORCEREADY_ON, &mCblk->flags);
1215 // stepUser() clears CBLK_UNDERRUN_ON flag enabling underrun callbacks to
1216 // the client
1217 mCblk->stepUser(frames);
1218 }
Eric Laurent421ddc02011-03-07 14:52:59 -08001219 }
Eric Laurent6667ac32011-03-21 11:49:00 -07001220 if (mActive) {
1221 result = mAudioTrack->start();
Steve Block8564c8d2012-01-05 23:22:43 +00001222 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() start() failed status %d", result);
Eric Laurent6667ac32011-03-21 11:49:00 -07001223 }
Eric Laurent421ddc02011-03-07 14:52:59 -08001224 if (fromStart && result == NO_ERROR) {
1225 mNewPosition = mCblk->server + mUpdatePeriod;
1226 }
1227 }
1228 if (result != NO_ERROR) {
Eric Laurent7e8626f2011-09-13 15:04:17 -07001229 android_atomic_and(~CBLK_RESTORING_ON, &cblk->flags);
Steve Block8564c8d2012-01-05 23:22:43 +00001230 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() failed status %d", result);
Eric Laurent421ddc02011-03-07 14:52:59 -08001231 }
Eric Laurent7e8626f2011-09-13 15:04:17 -07001232 mRestoreStatus = result;
Eric Laurent421ddc02011-03-07 14:52:59 -08001233 // signal old cblk condition for other threads waiting for restore completion
Eric Laurentae29b762011-03-28 18:37:07 -07001234 android_atomic_or(CBLK_RESTORED_ON, &cblk->flags);
Eric Laurent421ddc02011-03-07 14:52:59 -08001235 cblk->cv.broadcast();
Eric Laurent421ddc02011-03-07 14:52:59 -08001236 } else {
1237 if (!(cblk->flags & CBLK_RESTORED_MSK)) {
Steve Block8564c8d2012-01-05 23:22:43 +00001238 ALOGW("dead IAudioTrack, waiting for a new one TID %d", gettid());
Eric Laurent421ddc02011-03-07 14:52:59 -08001239 mLock.unlock();
1240 result = cblk->cv.waitRelative(cblk->lock, milliseconds(RESTORE_TIMEOUT_MS));
Eric Laurent7e8626f2011-09-13 15:04:17 -07001241 if (result == NO_ERROR) {
1242 result = mRestoreStatus;
1243 }
Eric Laurent421ddc02011-03-07 14:52:59 -08001244 cblk->lock.unlock();
1245 mLock.lock();
1246 } else {
Steve Block8564c8d2012-01-05 23:22:43 +00001247 ALOGW("dead IAudioTrack, already restored TID %d", gettid());
Eric Laurent7e8626f2011-09-13 15:04:17 -07001248 result = mRestoreStatus;
Eric Laurent421ddc02011-03-07 14:52:59 -08001249 cblk->lock.unlock();
1250 }
Eric Laurent421ddc02011-03-07 14:52:59 -08001251 }
Steve Block71f2cf12011-10-20 11:56:00 +01001252 ALOGV("restoreTrack_l() status %d mActive %d cblk %p, old cblk %p flags %08x old flags %08x",
Eric Laurent421ddc02011-03-07 14:52:59 -08001253 result, mActive, mCblk, cblk, mCblk->flags, cblk->flags);
1254
1255 if (result == NO_ERROR) {
1256 // from now on we switch to the newly created cblk
1257 cblk = mCblk;
1258 }
1259 cblk->lock.lock();
1260
Steve Block8564c8d2012-01-05 23:22:43 +00001261 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() error %d TID %d", result, gettid());
Eric Laurent421ddc02011-03-07 14:52:59 -08001262
1263 return result;
1264}
1265
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001266status_t AudioTrack::dump(int fd, const Vector<String16>& args) const
1267{
1268
1269 const size_t SIZE = 256;
1270 char buffer[SIZE];
1271 String8 result;
1272
1273 result.append(" AudioTrack::dump\n");
1274 snprintf(buffer, 255, " stream type(%d), left - right volume(%f, %f)\n", mStreamType, mVolume[0], mVolume[1]);
1275 result.append(buffer);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001276 snprintf(buffer, 255, " format(%d), channel count(%d), frame count(%d)\n", mFormat, mChannelCount, mCblk->frameCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001277 result.append(buffer);
Eric Laurent88e209d2009-07-07 07:10:45 -07001278 snprintf(buffer, 255, " sample rate(%d), status(%d), muted(%d)\n", (mCblk == 0) ? 0 : mCblk->sampleRate, mStatus, mMuted);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001279 result.append(buffer);
1280 snprintf(buffer, 255, " active(%d), latency (%d)\n", mActive, mLatency);
1281 result.append(buffer);
1282 ::write(fd, result.string(), result.size());
1283 return NO_ERROR;
1284}
1285
1286// =========================================================================
1287
1288AudioTrack::AudioTrackThread::AudioTrackThread(AudioTrack& receiver, bool bCanCallJava)
1289 : Thread(bCanCallJava), mReceiver(receiver)
1290{
1291}
1292
1293bool AudioTrack::AudioTrackThread::threadLoop()
1294{
1295 return mReceiver.processAudioBuffer(this);
1296}
1297
1298status_t AudioTrack::AudioTrackThread::readyToRun()
1299{
1300 return NO_ERROR;
1301}
1302
1303void AudioTrack::AudioTrackThread::onFirstRef()
1304{
1305}
1306
1307// =========================================================================
1308
Eric Laurentae29b762011-03-28 18:37:07 -07001309
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001310audio_track_cblk_t::audio_track_cblk_t()
Mathias Agopiana729f972010-03-19 16:14:13 -07001311 : lock(Mutex::SHARED), cv(Condition::SHARED), user(0), server(0),
1312 userBase(0), serverBase(0), buffers(0), frameCount(0),
1313 loopStart(UINT_MAX), loopEnd(UINT_MAX), loopCount(0), volumeLR(0),
Eric Laurentae29b762011-03-28 18:37:07 -07001314 sendLevel(0), flags(0)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001315{
1316}
1317
1318uint32_t audio_track_cblk_t::stepUser(uint32_t frameCount)
1319{
Glenn Kastendb298a42011-12-13 11:45:07 -08001320 uint32_t u = user;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001321
1322 u += frameCount;
1323 // Ensure that user is never ahead of server for AudioRecord
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001324 if (flags & CBLK_DIRECTION_MSK) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001325 // If stepServer() has been called once, switch to normal obtainBuffer() timeout period
1326 if (bufferTimeoutMs == MAX_STARTUP_TIMEOUT_MS-1) {
1327 bufferTimeoutMs = MAX_RUN_TIMEOUT_MS;
1328 }
Glenn Kastendb298a42011-12-13 11:45:07 -08001329 } else if (u > server) {
Steve Block8564c8d2012-01-05 23:22:43 +00001330 ALOGW("stepServer occurred after track reset");
Glenn Kastendb298a42011-12-13 11:45:07 -08001331 u = server;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001332 }
1333
1334 if (u >= userBase + this->frameCount) {
1335 userBase += this->frameCount;
1336 }
1337
Glenn Kastendb298a42011-12-13 11:45:07 -08001338 user = u;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001339
1340 // Clear flow control error condition as new data has been written/read to/from buffer.
Eric Laurent913af0b2011-03-17 09:36:51 -07001341 if (flags & CBLK_UNDERRUN_MSK) {
Eric Laurentae29b762011-03-28 18:37:07 -07001342 android_atomic_and(~CBLK_UNDERRUN_MSK, &flags);
Eric Laurent913af0b2011-03-17 09:36:51 -07001343 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001344
1345 return u;
1346}
1347
1348bool audio_track_cblk_t::stepServer(uint32_t frameCount)
1349{
Eric Laurentae29b762011-03-28 18:37:07 -07001350 if (!tryLock()) {
Steve Block8564c8d2012-01-05 23:22:43 +00001351 ALOGW("stepServer() could not lock cblk");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001352 return false;
1353 }
1354
Glenn Kastendb298a42011-12-13 11:45:07 -08001355 uint32_t s = server;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001356
1357 s += frameCount;
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001358 if (flags & CBLK_DIRECTION_MSK) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001359 // Mark that we have read the first buffer so that next time stepUser() is called
1360 // we switch to normal obtainBuffer() timeout period
1361 if (bufferTimeoutMs == MAX_STARTUP_TIMEOUT_MS) {
Eric Laurentbda74692009-11-04 08:27:26 -08001362 bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS - 1;
Eric Laurenta553c252009-07-17 12:17:14 -07001363 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001364 // It is possible that we receive a flush()
1365 // while the mixer is processing a block: in this case,
1366 // stepServer() is called After the flush() has reset u & s and
1367 // we have s > u
Glenn Kastendb298a42011-12-13 11:45:07 -08001368 if (s > user) {
Steve Block8564c8d2012-01-05 23:22:43 +00001369 ALOGW("stepServer occurred after track reset");
Glenn Kastendb298a42011-12-13 11:45:07 -08001370 s = user;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001371 }
1372 }
1373
1374 if (s >= loopEnd) {
Steve Block8564c8d2012-01-05 23:22:43 +00001375 ALOGW_IF(s > loopEnd, "stepServer: s %u > loopEnd %u", s, loopEnd);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001376 s = loopStart;
1377 if (--loopCount == 0) {
1378 loopEnd = UINT_MAX;
1379 loopStart = UINT_MAX;
1380 }
1381 }
1382 if (s >= serverBase + this->frameCount) {
1383 serverBase += this->frameCount;
1384 }
1385
Glenn Kastendb298a42011-12-13 11:45:07 -08001386 server = s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001387
Eric Laurent421ddc02011-03-07 14:52:59 -08001388 if (!(flags & CBLK_INVALID_MSK)) {
1389 cv.signal();
1390 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001391 lock.unlock();
1392 return true;
1393}
1394
1395void* audio_track_cblk_t::buffer(uint32_t offset) const
1396{
Glenn Kastendb298a42011-12-13 11:45:07 -08001397 return (int8_t *)buffers + (offset - userBase) * frameSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001398}
1399
1400uint32_t audio_track_cblk_t::framesAvailable()
1401{
1402 Mutex::Autolock _l(lock);
1403 return framesAvailable_l();
1404}
1405
1406uint32_t audio_track_cblk_t::framesAvailable_l()
1407{
Glenn Kastendb298a42011-12-13 11:45:07 -08001408 uint32_t u = user;
1409 uint32_t s = server;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001410
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001411 if (flags & CBLK_DIRECTION_MSK) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001412 uint32_t limit = (s < loopStart) ? s : loopStart;
1413 return limit + frameCount - u;
1414 } else {
1415 return frameCount + u - s;
1416 }
1417}
1418
1419uint32_t audio_track_cblk_t::framesReady()
1420{
Glenn Kastendb298a42011-12-13 11:45:07 -08001421 uint32_t u = user;
1422 uint32_t s = server;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001423
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001424 if (flags & CBLK_DIRECTION_MSK) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001425 if (u < loopEnd) {
1426 return u - s;
1427 } else {
Eric Laurentae29b762011-03-28 18:37:07 -07001428 // do not block on mutex shared with client on AudioFlinger side
1429 if (!tryLock()) {
Steve Block8564c8d2012-01-05 23:22:43 +00001430 ALOGW("framesReady() could not lock cblk");
Eric Laurentae29b762011-03-28 18:37:07 -07001431 return 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001432 }
Eric Laurentae29b762011-03-28 18:37:07 -07001433 uint32_t frames = UINT_MAX;
1434 if (loopCount >= 0) {
1435 frames = (loopEnd - loopStart)*loopCount + u - s;
1436 }
1437 lock.unlock();
1438 return frames;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001439 }
1440 } else {
1441 return s - u;
1442 }
1443}
1444
Eric Laurentae29b762011-03-28 18:37:07 -07001445bool audio_track_cblk_t::tryLock()
1446{
1447 // the code below simulates lock-with-timeout
1448 // we MUST do this to protect the AudioFlinger server
1449 // as this lock is shared with the client.
1450 status_t err;
1451
1452 err = lock.tryLock();
1453 if (err == -EBUSY) { // just wait a bit
1454 usleep(1000);
1455 err = lock.tryLock();
1456 }
1457 if (err != NO_ERROR) {
1458 // probably, the client just died.
1459 return false;
1460 }
1461 return true;
1462}
1463
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001464// -------------------------------------------------------------------------
1465
1466}; // namespace android