blob: db18b362cb6c03e1f42a010251c7e6ae836d69ff [file] [log] [blame]
Glenn Kastenb3db2132012-01-19 08:59:58 -08001/*
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
Glenn Kastencc2302d2012-01-11 09:52:19 -080046#include <audio_utils/primitives.h>
47
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048namespace android {
Chia-chi Yehbd240c22010-06-16 06:33:13 +080049// ---------------------------------------------------------------------------
50
51// static
52status_t AudioTrack::getMinFrameCount(
53 int* frameCount,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -080054 audio_stream_type_t streamType,
Chia-chi Yehbd240c22010-06-16 06:33:13 +080055 uint32_t sampleRate)
56{
57 int afSampleRate;
58 if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) {
59 return NO_INIT;
60 }
61 int afFrameCount;
62 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
63 return NO_INIT;
64 }
65 uint32_t afLatency;
66 if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) {
67 return NO_INIT;
68 }
69
70 // Ensure that buffer depth covers at least audio hardware latency
71 uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
72 if (minBufCount < 2) minBufCount = 2;
73
74 *frameCount = (sampleRate == 0) ? afFrameCount * minBufCount :
75 afFrameCount * minBufCount * sampleRate / afSampleRate;
76 return NO_ERROR;
77}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078
79// ---------------------------------------------------------------------------
80
81AudioTrack::AudioTrack()
Glenn Kasten99d54432011-06-22 16:15:25 -070082 : mStatus(NO_INIT),
83 mPreviousPriority(ANDROID_PRIORITY_NORMAL), mPreviousSchedulingGroup(ANDROID_TGROUP_DEFAULT)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084{
85}
86
87AudioTrack::AudioTrack(
Glenn Kastenbc1d77b2012-01-12 16:38:12 -080088 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 uint32_t sampleRate,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -080090 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -070091 int channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 int frameCount,
93 uint32_t flags,
94 callback_t cbf,
95 void* user,
Eric Laurent65b65452010-06-01 23:49:17 -070096 int notificationFrames,
97 int sessionId)
Glenn Kasten99d54432011-06-22 16:15:25 -070098 : mStatus(NO_INIT),
99 mPreviousPriority(ANDROID_PRIORITY_NORMAL), mPreviousSchedulingGroup(ANDROID_TGROUP_DEFAULT)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100{
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700101 mStatus = set(streamType, sampleRate, format, channelMask,
Eric Laurent619346f2010-06-21 09:27:30 -0700102 frameCount, flags, cbf, user, notificationFrames,
103 0, false, sessionId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104}
105
106AudioTrack::AudioTrack(
Andreas Huber28ea0132012-01-18 10:51:55 -0800107 int streamType,
108 uint32_t sampleRate,
109 int format,
110 int channelMask,
111 int frameCount,
112 uint32_t flags,
113 callback_t cbf,
114 void* user,
115 int notificationFrames,
116 int sessionId)
117 : mStatus(NO_INIT),
118 mPreviousPriority(ANDROID_PRIORITY_NORMAL), mPreviousSchedulingGroup(ANDROID_TGROUP_DEFAULT)
119{
120 mStatus = set((audio_stream_type_t)streamType, sampleRate, (audio_format_t)format, channelMask,
121 frameCount, flags, cbf, user, notificationFrames,
122 0, false, sessionId);
123}
124
125AudioTrack::AudioTrack(
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800126 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 uint32_t sampleRate,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800128 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700129 int channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 const sp<IMemory>& sharedBuffer,
131 uint32_t flags,
132 callback_t cbf,
133 void* user,
Eric Laurent65b65452010-06-01 23:49:17 -0700134 int notificationFrames,
135 int sessionId)
Glenn Kasten99d54432011-06-22 16:15:25 -0700136 : mStatus(NO_INIT),
137 mPreviousPriority(ANDROID_PRIORITY_NORMAL), mPreviousSchedulingGroup(ANDROID_TGROUP_DEFAULT)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800138{
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700139 mStatus = set(streamType, sampleRate, format, channelMask,
Eric Laurent619346f2010-06-21 09:27:30 -0700140 0, flags, cbf, user, notificationFrames,
141 sharedBuffer, false, sessionId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800142}
143
144AudioTrack::~AudioTrack()
145{
Steve Block71f2cf12011-10-20 11:56:00 +0100146 ALOGV_IF(mSharedBuffer != 0, "Destructor sharedBuffer: %p", mSharedBuffer->pointer());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147
148 if (mStatus == NO_ERROR) {
149 // Make sure that callback function exits in the case where
150 // it is looping on buffer full condition in obtainBuffer().
151 // Otherwise the callback thread will never exit.
152 stop();
153 if (mAudioTrackThread != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 mAudioTrackThread->requestExitAndWait();
155 mAudioTrackThread.clear();
156 }
157 mAudioTrack.clear();
158 IPCThreadState::self()->flushCommands();
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700159 AudioSystem::releaseAudioSessionId(mSessionId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800160 }
161}
162
163status_t AudioTrack::set(
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800164 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 uint32_t sampleRate,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800166 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700167 int channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 int frameCount,
169 uint32_t flags,
170 callback_t cbf,
171 void* user,
172 int notificationFrames,
173 const sp<IMemory>& sharedBuffer,
Eric Laurent65b65452010-06-01 23:49:17 -0700174 bool threadCanCallJava,
175 int sessionId)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176{
177
Steve Block71f2cf12011-10-20 11:56:00 +0100178 ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(), sharedBuffer->size());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179
Eric Laurent421ddc02011-03-07 14:52:59 -0800180 AutoMutex lock(mLock);
Eric Laurentef028272009-04-21 07:56:33 -0700181 if (mAudioTrack != 0) {
Steve Block3762c312012-01-06 19:20:56 +0000182 ALOGE("Track already in use");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183 return INVALID_OPERATION;
184 }
185
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 int afSampleRate;
187 if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) {
188 return NO_INIT;
189 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 uint32_t afLatency;
191 if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) {
192 return NO_INIT;
193 }
194
195 // handle default values first.
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700196 if (streamType == AUDIO_STREAM_DEFAULT) {
197 streamType = AUDIO_STREAM_MUSIC;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198 }
199 if (sampleRate == 0) {
200 sampleRate = afSampleRate;
201 }
202 // these below should probably come from the audioFlinger too...
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800203 if (format == AUDIO_FORMAT_DEFAULT) {
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700204 format = AUDIO_FORMAT_PCM_16_BIT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205 }
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700206 if (channelMask == 0) {
207 channelMask = AUDIO_CHANNEL_OUT_STEREO;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208 }
209
210 // validate parameters
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700211 if (!audio_is_valid_format(format)) {
Steve Block3762c312012-01-06 19:20:56 +0000212 ALOGE("Invalid format");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800213 return BAD_VALUE;
214 }
Eric Laurenta553c252009-07-17 12:17:14 -0700215
216 // force direct flag if format is not linear PCM
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700217 if (!audio_is_linear_pcm(format)) {
218 flags |= AUDIO_POLICY_OUTPUT_FLAG_DIRECT;
Eric Laurenta553c252009-07-17 12:17:14 -0700219 }
220
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700221 if (!audio_is_output_channel(channelMask)) {
Steve Block3762c312012-01-06 19:20:56 +0000222 ALOGE("Invalid channel mask");
Eric Laurenta553c252009-07-17 12:17:14 -0700223 return BAD_VALUE;
224 }
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700225 uint32_t channelCount = popcount(channelMask);
Eric Laurenta553c252009-07-17 12:17:14 -0700226
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700227 audio_io_handle_t output = AudioSystem::getOutput(
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800228 streamType,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800229 sampleRate, format, channelMask,
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700230 (audio_policy_output_flags_t)flags);
Eric Laurenta553c252009-07-17 12:17:14 -0700231
232 if (output == 0) {
Steve Block3762c312012-01-06 19:20:56 +0000233 ALOGE("Could not get audio output for stream type %d", streamType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800234 return BAD_VALUE;
235 }
236
Eric Laurentbda74692009-11-04 08:27:26 -0800237 mVolume[LEFT] = 1.0f;
238 mVolume[RIGHT] = 1.0f;
Glenn Kasten4790bd82012-01-03 14:22:33 -0800239 mSendLevel = 0.0f;
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700240 mFrameCount = frameCount;
241 mNotificationFramesReq = notificationFrames;
Eric Laurent65b65452010-06-01 23:49:17 -0700242 mSessionId = sessionId;
Eric Laurent7070b362010-07-16 07:43:46 -0700243 mAuxEffectId = 0;
Eric Laurent65b65452010-06-01 23:49:17 -0700244
Eric Laurentbda74692009-11-04 08:27:26 -0800245 // create the IAudioTrack
Eric Laurent421ddc02011-03-07 14:52:59 -0800246 status_t status = createTrack_l(streamType,
247 sampleRate,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800248 format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700249 (uint32_t)channelMask,
Eric Laurent421ddc02011-03-07 14:52:59 -0800250 frameCount,
251 flags,
252 sharedBuffer,
253 output,
254 true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255
Eric Laurentbda74692009-11-04 08:27:26 -0800256 if (status != NO_ERROR) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257 return status;
258 }
Eric Laurentbda74692009-11-04 08:27:26 -0800259
Glenn Kasten3694ec12012-01-27 16:47:15 -0800260 if (cbf != NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261 mAudioTrackThread = new AudioTrackThread(*this, threadCanCallJava);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 }
263
264 mStatus = NO_ERROR;
265
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266 mStreamType = streamType;
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800267 mFormat = format;
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700268 mChannelMask = (uint32_t)channelMask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800269 mChannelCount = channelCount;
270 mSharedBuffer = sharedBuffer;
271 mMuted = false;
Glenn Kastene6810ff2012-01-03 09:42:47 -0800272 mActive = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800273 mCbf = cbf;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800274 mUserData = user;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275 mLoopCount = 0;
276 mMarkerPosition = 0;
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -0700277 mMarkerReached = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278 mNewPosition = 0;
279 mUpdatePeriod = 0;
Jean-Michel Trivi22cb2042011-08-25 16:47:23 -0700280 mFlushed = false;
Eric Laurenta553c252009-07-17 12:17:14 -0700281 mFlags = flags;
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700282 AudioSystem::acquireAudioSessionId(mSessionId);
Eric Laurent7e8626f2011-09-13 15:04:17 -0700283 mRestoreStatus = NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284 return NO_ERROR;
285}
286
287status_t AudioTrack::initCheck() const
288{
289 return mStatus;
290}
291
292// -------------------------------------------------------------------------
293
294uint32_t AudioTrack::latency() const
295{
296 return mLatency;
297}
298
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800299audio_stream_type_t AudioTrack::streamType() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800300{
301 return mStreamType;
302}
303
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800304audio_format_t AudioTrack::format() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800305{
306 return mFormat;
307}
308
309int AudioTrack::channelCount() const
310{
311 return mChannelCount;
312}
313
314uint32_t AudioTrack::frameCount() const
315{
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700316 return mCblk->frameCount;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317}
318
Glenn Kastenfaf354d2012-01-11 09:48:27 -0800319size_t AudioTrack::frameSize() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800320{
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700321 if (audio_is_linear_pcm(mFormat)) {
Eric Laurentc310dcb2011-06-16 21:30:45 -0700322 return channelCount()*audio_bytes_per_sample(mFormat);
Eric Laurenta553c252009-07-17 12:17:14 -0700323 } else {
324 return sizeof(uint8_t);
325 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326}
327
328sp<IMemory>& AudioTrack::sharedBuffer()
329{
330 return mSharedBuffer;
331}
332
333// -------------------------------------------------------------------------
334
335void AudioTrack::start()
336{
337 sp<AudioTrackThread> t = mAudioTrackThread;
Glenn Kasten028ab992011-06-22 16:18:04 -0700338 status_t status = NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800339
Steve Block71f2cf12011-10-20 11:56:00 +0100340 ALOGV("start %p", this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 if (t != 0) {
342 if (t->exitPending()) {
343 if (t->requestExitAndWait() == WOULD_BLOCK) {
Steve Block3762c312012-01-06 19:20:56 +0000344 ALOGE("AudioTrack::start called from thread");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800345 return;
346 }
347 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800348 }
349
Eric Laurentf3d6dd02010-11-18 08:40:16 -0800350 AutoMutex lock(mLock);
Eric Laurent421ddc02011-03-07 14:52:59 -0800351 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
352 // while we are accessing the cblk
353 sp <IAudioTrack> audioTrack = mAudioTrack;
354 sp <IMemory> iMem = mCblkMemory;
355 audio_track_cblk_t* cblk = mCblk;
356
Glenn Kastene6810ff2012-01-03 09:42:47 -0800357 if (!mActive) {
Jean-Michel Trivi22cb2042011-08-25 16:47:23 -0700358 mFlushed = false;
Glenn Kastene6810ff2012-01-03 09:42:47 -0800359 mActive = true;
Eric Laurent421ddc02011-03-07 14:52:59 -0800360 mNewPosition = cblk->server + mUpdatePeriod;
Eric Laurent913af0b2011-03-17 09:36:51 -0700361 cblk->lock.lock();
Eric Laurent421ddc02011-03-07 14:52:59 -0800362 cblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS;
363 cblk->waitTimeMs = 0;
Eric Laurentae29b762011-03-28 18:37:07 -0700364 android_atomic_and(~CBLK_DISABLED_ON, &cblk->flags);
Glenn Kasten6a20b262012-02-02 10:56:47 -0800365 pid_t tid;
Eric Laurent059b4be2009-11-09 23:32:22 -0800366 if (t != 0) {
Glenn Kasten99d54432011-06-22 16:15:25 -0700367 t->run("AudioTrackThread", ANDROID_PRIORITY_AUDIO);
Glenn Kasten6a20b262012-02-02 10:56:47 -0800368 tid = t->getTid(); // pid_t is unknown until run()
369 ALOGV("getTid=%d", tid);
370 if (tid == -1) {
371 tid = 0;
372 }
Eric Laurent059b4be2009-11-09 23:32:22 -0800373 } else {
Glenn Kasten99d54432011-06-22 16:15:25 -0700374 mPreviousPriority = getpriority(PRIO_PROCESS, 0);
375 mPreviousSchedulingGroup = androidGetThreadSchedulingGroup(0);
376 androidSetThreadPriority(0, ANDROID_PRIORITY_AUDIO);
Glenn Kasten6a20b262012-02-02 10:56:47 -0800377 tid = 0; // not gettid()
Eric Laurent059b4be2009-11-09 23:32:22 -0800378 }
379
Steve Block71f2cf12011-10-20 11:56:00 +0100380 ALOGV("start %p before lock cblk %p", this, mCblk);
Eric Laurent421ddc02011-03-07 14:52:59 -0800381 if (!(cblk->flags & CBLK_INVALID_MSK)) {
382 cblk->lock.unlock();
Glenn Kasten6a20b262012-02-02 10:56:47 -0800383 ALOGV("mAudioTrack->start(tid=%d)", tid);
384 status = mAudioTrack->start(tid);
Eric Laurent421ddc02011-03-07 14:52:59 -0800385 cblk->lock.lock();
386 if (status == DEAD_OBJECT) {
Eric Laurentae29b762011-03-28 18:37:07 -0700387 android_atomic_or(CBLK_INVALID_ON, &cblk->flags);
Eric Laurent49f02be2009-11-19 09:00:56 -0800388 }
Eric Laurent059b4be2009-11-09 23:32:22 -0800389 }
Eric Laurent421ddc02011-03-07 14:52:59 -0800390 if (cblk->flags & CBLK_INVALID_MSK) {
391 status = restoreTrack_l(cblk, true);
392 }
393 cblk->lock.unlock();
Eric Laurent059b4be2009-11-09 23:32:22 -0800394 if (status != NO_ERROR) {
Steve Block71f2cf12011-10-20 11:56:00 +0100395 ALOGV("start() failed");
Glenn Kastene6810ff2012-01-03 09:42:47 -0800396 mActive = false;
Eric Laurent059b4be2009-11-09 23:32:22 -0800397 if (t != 0) {
398 t->requestExit();
399 } else {
Glenn Kasten99d54432011-06-22 16:15:25 -0700400 setpriority(PRIO_PROCESS, 0, mPreviousPriority);
401 androidSetThreadSchedulingGroup(0, mPreviousSchedulingGroup);
Eric Laurent059b4be2009-11-09 23:32:22 -0800402 }
Eric Laurentbda74692009-11-04 08:27:26 -0800403 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800404 }
405
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406}
407
408void AudioTrack::stop()
409{
410 sp<AudioTrackThread> t = mAudioTrackThread;
411
Steve Block71f2cf12011-10-20 11:56:00 +0100412 ALOGV("stop %p", this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800413
Eric Laurentf3d6dd02010-11-18 08:40:16 -0800414 AutoMutex lock(mLock);
Glenn Kastene6810ff2012-01-03 09:42:47 -0800415 if (mActive) {
416 mActive = false;
Eric Laurentef028272009-04-21 07:56:33 -0700417 mCblk->cv.signal();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800418 mAudioTrack->stop();
419 // Cancel loops (If we are in the middle of a loop, playback
420 // would not stop until loopCount reaches 0).
Eric Laurent421ddc02011-03-07 14:52:59 -0800421 setLoop_l(0, 0, 0);
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -0700422 // the playback head position will reset to 0, so if a marker is set, we need
423 // to activate it again
424 mMarkerReached = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800425 // Force flush if a shared buffer is used otherwise audioflinger
426 // will not stop before end of buffer is reached.
427 if (mSharedBuffer != 0) {
Eric Laurent421ddc02011-03-07 14:52:59 -0800428 flush_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800429 }
430 if (t != 0) {
431 t->requestExit();
432 } else {
Glenn Kasten99d54432011-06-22 16:15:25 -0700433 setpriority(PRIO_PROCESS, 0, mPreviousPriority);
434 androidSetThreadSchedulingGroup(0, mPreviousSchedulingGroup);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800435 }
436 }
437
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800438}
439
440bool AudioTrack::stopped() const
441{
Glenn Kastene6810ff2012-01-03 09:42:47 -0800442 AutoMutex lock(mLock);
443 return stopped_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444}
445
446void AudioTrack::flush()
447{
Eric Laurent421ddc02011-03-07 14:52:59 -0800448 AutoMutex lock(mLock);
449 flush_l();
450}
451
452// must be called with mLock held
453void AudioTrack::flush_l()
454{
Steve Block71f2cf12011-10-20 11:56:00 +0100455 ALOGV("flush");
Eric Laurenta553c252009-07-17 12:17:14 -0700456
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -0700457 // clear playback marker and periodic update counter
458 mMarkerPosition = 0;
459 mMarkerReached = false;
460 mUpdatePeriod = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700461
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800462 if (!mActive) {
Jean-Michel Trivi22cb2042011-08-25 16:47:23 -0700463 mFlushed = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800464 mAudioTrack->flush();
465 // Release AudioTrack callback thread in case it was waiting for new buffers
466 // in AudioTrack::obtainBuffer()
467 mCblk->cv.signal();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800468 }
469}
470
471void AudioTrack::pause()
472{
Steve Block71f2cf12011-10-20 11:56:00 +0100473 ALOGV("pause");
Eric Laurentf3d6dd02010-11-18 08:40:16 -0800474 AutoMutex lock(mLock);
Glenn Kastene6810ff2012-01-03 09:42:47 -0800475 if (mActive) {
476 mActive = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800477 mAudioTrack->pause();
478 }
479}
480
481void AudioTrack::mute(bool e)
482{
483 mAudioTrack->mute(e);
484 mMuted = e;
485}
486
487bool AudioTrack::muted() const
488{
489 return mMuted;
490}
491
Eric Laurent65b65452010-06-01 23:49:17 -0700492status_t AudioTrack::setVolume(float left, float right)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800493{
Glenn Kasten1c50a782011-11-30 09:46:04 -0800494 if (left < 0.0f || left > 1.0f || right < 0.0f || right > 1.0f) {
Eric Laurent65b65452010-06-01 23:49:17 -0700495 return BAD_VALUE;
496 }
497
Eric Laurent421ddc02011-03-07 14:52:59 -0800498 AutoMutex lock(mLock);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 mVolume[LEFT] = left;
500 mVolume[RIGHT] = right;
501
Glenn Kastenbc4de882012-01-17 14:39:34 -0800502 mCblk->setVolumeLR((uint32_t(uint16_t(right * 0x1000)) << 16) | uint16_t(left * 0x1000));
Eric Laurent65b65452010-06-01 23:49:17 -0700503
504 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800505}
506
Glenn Kasten7c2e37d2012-01-04 12:41:44 -0800507void AudioTrack::getVolume(float* left, float* right) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800508{
Eric Laurent65b65452010-06-01 23:49:17 -0700509 if (left != NULL) {
510 *left = mVolume[LEFT];
511 }
512 if (right != NULL) {
513 *right = mVolume[RIGHT];
514 }
515}
516
Eric Laurent7070b362010-07-16 07:43:46 -0700517status_t AudioTrack::setAuxEffectSendLevel(float level)
Eric Laurent65b65452010-06-01 23:49:17 -0700518{
Steve Block71f2cf12011-10-20 11:56:00 +0100519 ALOGV("setAuxEffectSendLevel(%f)", level);
Glenn Kasten4790bd82012-01-03 14:22:33 -0800520 if (level < 0.0f || level > 1.0f) {
Eric Laurent65b65452010-06-01 23:49:17 -0700521 return BAD_VALUE;
522 }
Eric Laurent421ddc02011-03-07 14:52:59 -0800523 AutoMutex lock(mLock);
Eric Laurent65b65452010-06-01 23:49:17 -0700524
525 mSendLevel = level;
526
Glenn Kasten4790bd82012-01-03 14:22:33 -0800527 mCblk->setSendLevel(level);
Eric Laurent65b65452010-06-01 23:49:17 -0700528
529 return NO_ERROR;
530}
531
Glenn Kasten7c2e37d2012-01-04 12:41:44 -0800532void AudioTrack::getAuxEffectSendLevel(float* level) const
Eric Laurent65b65452010-06-01 23:49:17 -0700533{
534 if (level != NULL) {
535 *level = mSendLevel;
536 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800537}
538
Eric Laurent88e209d2009-07-07 07:10:45 -0700539status_t AudioTrack::setSampleRate(int rate)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800540{
541 int afSamplingRate;
542
543 if (AudioSystem::getOutputSamplingRate(&afSamplingRate, mStreamType) != NO_ERROR) {
Eric Laurent88e209d2009-07-07 07:10:45 -0700544 return NO_INIT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800545 }
546 // Resampler implementation limits input sampling rate to 2 x output sampling rate.
Eric Laurent88e209d2009-07-07 07:10:45 -0700547 if (rate <= 0 || rate > afSamplingRate*2 ) return BAD_VALUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800548
Eric Laurent421ddc02011-03-07 14:52:59 -0800549 AutoMutex lock(mLock);
Eric Laurent88e209d2009-07-07 07:10:45 -0700550 mCblk->sampleRate = rate;
551 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800552}
553
Glenn Kasten7c2e37d2012-01-04 12:41:44 -0800554uint32_t AudioTrack::getSampleRate() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800555{
Eric Laurent421ddc02011-03-07 14:52:59 -0800556 AutoMutex lock(mLock);
Eric Laurent88e209d2009-07-07 07:10:45 -0700557 return mCblk->sampleRate;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800558}
559
560status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount)
561{
Eric Laurent421ddc02011-03-07 14:52:59 -0800562 AutoMutex lock(mLock);
563 return setLoop_l(loopStart, loopEnd, loopCount);
564}
565
566// must be called with mLock held
567status_t AudioTrack::setLoop_l(uint32_t loopStart, uint32_t loopEnd, int loopCount)
568{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800569 audio_track_cblk_t* cblk = mCblk;
570
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800571 Mutex::Autolock _l(cblk->lock);
572
573 if (loopCount == 0) {
574 cblk->loopStart = UINT_MAX;
575 cblk->loopEnd = UINT_MAX;
576 cblk->loopCount = 0;
577 mLoopCount = 0;
578 return NO_ERROR;
579 }
580
581 if (loopStart >= loopEnd ||
Eric Laurent6667ac32011-03-21 11:49:00 -0700582 loopEnd - loopStart > cblk->frameCount ||
583 cblk->server > loopStart) {
Steve Block3762c312012-01-06 19:20:56 +0000584 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 -0800585 return BAD_VALUE;
586 }
587
Eric Laurent6667ac32011-03-21 11:49:00 -0700588 if ((mSharedBuffer != 0) && (loopEnd > cblk->frameCount)) {
Steve Block3762c312012-01-06 19:20:56 +0000589 ALOGE("setLoop invalid value: loop markers beyond data: loopStart %d, loopEnd %d, framecount %d",
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700590 loopStart, loopEnd, cblk->frameCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800591 return BAD_VALUE;
Eric Laurenta553c252009-07-17 12:17:14 -0700592 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800593
594 cblk->loopStart = loopStart;
595 cblk->loopEnd = loopEnd;
596 cblk->loopCount = loopCount;
597 mLoopCount = loopCount;
598
599 return NO_ERROR;
600}
601
Glenn Kasten7c2e37d2012-01-04 12:41:44 -0800602status_t AudioTrack::getLoop(uint32_t *loopStart, uint32_t *loopEnd, int *loopCount) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800603{
Eric Laurent421ddc02011-03-07 14:52:59 -0800604 AutoMutex lock(mLock);
Glenn Kasten3694ec12012-01-27 16:47:15 -0800605 if (loopStart != NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800606 *loopStart = mCblk->loopStart;
607 }
Glenn Kasten3694ec12012-01-27 16:47:15 -0800608 if (loopEnd != NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800609 *loopEnd = mCblk->loopEnd;
610 }
Glenn Kasten3694ec12012-01-27 16:47:15 -0800611 if (loopCount != NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800612 if (mCblk->loopCount < 0) {
613 *loopCount = -1;
614 } else {
615 *loopCount = mCblk->loopCount;
616 }
617 }
618
619 return NO_ERROR;
620}
621
622status_t AudioTrack::setMarkerPosition(uint32_t marker)
623{
Glenn Kasten3694ec12012-01-27 16:47:15 -0800624 if (mCbf == NULL) return INVALID_OPERATION;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800625
626 mMarkerPosition = marker;
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -0700627 mMarkerReached = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628
629 return NO_ERROR;
630}
631
Glenn Kasten7c2e37d2012-01-04 12:41:44 -0800632status_t AudioTrack::getMarkerPosition(uint32_t *marker) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800633{
Glenn Kasten3694ec12012-01-27 16:47:15 -0800634 if (marker == NULL) return BAD_VALUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800635
636 *marker = mMarkerPosition;
637
638 return NO_ERROR;
639}
640
641status_t AudioTrack::setPositionUpdatePeriod(uint32_t updatePeriod)
642{
Glenn Kasten3694ec12012-01-27 16:47:15 -0800643 if (mCbf == NULL) return INVALID_OPERATION;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800644
645 uint32_t curPosition;
646 getPosition(&curPosition);
647 mNewPosition = curPosition + updatePeriod;
648 mUpdatePeriod = updatePeriod;
649
650 return NO_ERROR;
651}
652
Glenn Kasten7c2e37d2012-01-04 12:41:44 -0800653status_t AudioTrack::getPositionUpdatePeriod(uint32_t *updatePeriod) const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654{
Glenn Kasten3694ec12012-01-27 16:47:15 -0800655 if (updatePeriod == NULL) return BAD_VALUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800656
657 *updatePeriod = mUpdatePeriod;
658
659 return NO_ERROR;
660}
661
662status_t AudioTrack::setPosition(uint32_t position)
663{
Eric Laurent421ddc02011-03-07 14:52:59 -0800664 AutoMutex lock(mLock);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800665
Glenn Kastene6810ff2012-01-03 09:42:47 -0800666 if (!stopped_l()) return INVALID_OPERATION;
667
668 Mutex::Autolock _l(mCblk->lock);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800669
670 if (position > mCblk->user) return BAD_VALUE;
671
672 mCblk->server = position;
Eric Laurentae29b762011-03-28 18:37:07 -0700673 android_atomic_or(CBLK_FORCEREADY_ON, &mCblk->flags);
Eric Laurenta553c252009-07-17 12:17:14 -0700674
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800675 return NO_ERROR;
676}
677
678status_t AudioTrack::getPosition(uint32_t *position)
679{
Glenn Kasten3694ec12012-01-27 16:47:15 -0800680 if (position == NULL) return BAD_VALUE;
Eric Laurent421ddc02011-03-07 14:52:59 -0800681 AutoMutex lock(mLock);
Jean-Michel Trivi22cb2042011-08-25 16:47:23 -0700682 *position = mFlushed ? 0 : mCblk->server;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800683
684 return NO_ERROR;
685}
686
687status_t AudioTrack::reload()
688{
Eric Laurent421ddc02011-03-07 14:52:59 -0800689 AutoMutex lock(mLock);
690
Glenn Kastene6810ff2012-01-03 09:42:47 -0800691 if (!stopped_l()) return INVALID_OPERATION;
Eric Laurenta553c252009-07-17 12:17:14 -0700692
Eric Laurent421ddc02011-03-07 14:52:59 -0800693 flush_l();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800694
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700695 mCblk->stepUser(mCblk->frameCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800696
697 return NO_ERROR;
698}
699
Eric Laurenta553c252009-07-17 12:17:14 -0700700audio_io_handle_t AudioTrack::getOutput()
701{
Eric Laurent421ddc02011-03-07 14:52:59 -0800702 AutoMutex lock(mLock);
703 return getOutput_l();
704}
705
706// must be called with mLock held
707audio_io_handle_t AudioTrack::getOutput_l()
708{
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800709 return AudioSystem::getOutput(mStreamType,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700710 mCblk->sampleRate, mFormat, mChannelMask, (audio_policy_output_flags_t)mFlags);
Eric Laurenta553c252009-07-17 12:17:14 -0700711}
712
Glenn Kasten7c2e37d2012-01-04 12:41:44 -0800713int AudioTrack::getSessionId() const
Eric Laurent65b65452010-06-01 23:49:17 -0700714{
715 return mSessionId;
716}
717
718status_t AudioTrack::attachAuxEffect(int effectId)
719{
Steve Block71f2cf12011-10-20 11:56:00 +0100720 ALOGV("attachAuxEffect(%d)", effectId);
Eric Laurent7070b362010-07-16 07:43:46 -0700721 status_t status = mAudioTrack->attachAuxEffect(effectId);
722 if (status == NO_ERROR) {
723 mAuxEffectId = effectId;
724 }
725 return status;
Eric Laurent65b65452010-06-01 23:49:17 -0700726}
727
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800728// -------------------------------------------------------------------------
729
Eric Laurent421ddc02011-03-07 14:52:59 -0800730// must be called with mLock held
731status_t AudioTrack::createTrack_l(
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800732 audio_stream_type_t streamType,
Eric Laurentbda74692009-11-04 08:27:26 -0800733 uint32_t sampleRate,
Glenn Kasten1c5a89d2012-01-04 09:36:37 -0800734 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700735 uint32_t channelMask,
Eric Laurentbda74692009-11-04 08:27:26 -0800736 int frameCount,
737 uint32_t flags,
738 const sp<IMemory>& sharedBuffer,
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700739 audio_io_handle_t output,
740 bool enforceFrameCount)
Eric Laurentbda74692009-11-04 08:27:26 -0800741{
742 status_t status;
743 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
744 if (audioFlinger == 0) {
Steve Block3762c312012-01-06 19:20:56 +0000745 ALOGE("Could not get audioflinger");
Eric Laurentbda74692009-11-04 08:27:26 -0800746 return NO_INIT;
747 }
748
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700749 int afSampleRate;
750 if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) {
751 return NO_INIT;
752 }
753 int afFrameCount;
754 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
755 return NO_INIT;
756 }
757 uint32_t afLatency;
758 if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) {
759 return NO_INIT;
760 }
761
762 mNotificationFramesAct = mNotificationFramesReq;
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700763 if (!audio_is_linear_pcm(format)) {
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700764 if (sharedBuffer != 0) {
765 frameCount = sharedBuffer->size();
766 }
767 } else {
768 // Ensure that buffer depth covers at least audio hardware latency
769 uint32_t minBufCount = afLatency / ((1000 * afFrameCount)/afSampleRate);
770 if (minBufCount < 2) minBufCount = 2;
771
772 int minFrameCount = (afFrameCount*sampleRate*minBufCount)/afSampleRate;
773
774 if (sharedBuffer == 0) {
775 if (frameCount == 0) {
776 frameCount = minFrameCount;
777 }
778 if (mNotificationFramesAct == 0) {
779 mNotificationFramesAct = frameCount/2;
780 }
781 // Make sure that application is notified with sufficient margin
782 // before underrun
783 if (mNotificationFramesAct > (uint32_t)frameCount/2) {
784 mNotificationFramesAct = frameCount/2;
785 }
786 if (frameCount < minFrameCount) {
787 if (enforceFrameCount) {
Steve Block3762c312012-01-06 19:20:56 +0000788 ALOGE("Invalid buffer size: minFrameCount %d, frameCount %d", minFrameCount, frameCount);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700789 return BAD_VALUE;
790 } else {
791 frameCount = minFrameCount;
792 }
793 }
794 } else {
Glenn Kastenb3db2132012-01-19 08:59:58 -0800795 // Ensure that buffer alignment matches channelCount
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700796 int channelCount = popcount(channelMask);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700797 if (((uint32_t)sharedBuffer->pointer() & (channelCount | 1)) != 0) {
Steve Block3762c312012-01-06 19:20:56 +0000798 ALOGE("Invalid buffer alignement: address %p, channelCount %d", sharedBuffer->pointer(), channelCount);
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700799 return BAD_VALUE;
800 }
801 frameCount = sharedBuffer->size()/channelCount/sizeof(int16_t);
802 }
803 }
804
Eric Laurentbda74692009-11-04 08:27:26 -0800805 sp<IAudioTrack> track = audioFlinger->createTrack(getpid(),
806 streamType,
807 sampleRate,
808 format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -0700809 channelMask,
Eric Laurentbda74692009-11-04 08:27:26 -0800810 frameCount,
811 ((uint16_t)flags) << 16,
812 sharedBuffer,
813 output,
Eric Laurent65b65452010-06-01 23:49:17 -0700814 &mSessionId,
Eric Laurentbda74692009-11-04 08:27:26 -0800815 &status);
816
817 if (track == 0) {
Steve Block3762c312012-01-06 19:20:56 +0000818 ALOGE("AudioFlinger could not create track, status: %d", status);
Eric Laurentbda74692009-11-04 08:27:26 -0800819 return status;
820 }
821 sp<IMemory> cblk = track->getCblk();
822 if (cblk == 0) {
Steve Block3762c312012-01-06 19:20:56 +0000823 ALOGE("Could not get control block");
Eric Laurentbda74692009-11-04 08:27:26 -0800824 return NO_INIT;
825 }
Eric Laurentbda74692009-11-04 08:27:26 -0800826 mAudioTrack = track;
Eric Laurentbda74692009-11-04 08:27:26 -0800827 mCblkMemory = cblk;
828 mCblk = static_cast<audio_track_cblk_t*>(cblk->pointer());
Eric Laurentae29b762011-03-28 18:37:07 -0700829 android_atomic_or(CBLK_DIRECTION_OUT, &mCblk->flags);
Eric Laurentbda74692009-11-04 08:27:26 -0800830 if (sharedBuffer == 0) {
831 mCblk->buffers = (char*)mCblk + sizeof(audio_track_cblk_t);
832 } else {
833 mCblk->buffers = sharedBuffer->pointer();
834 // Force buffer full condition as data is already present in shared memory
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700835 mCblk->stepUser(mCblk->frameCount);
Eric Laurentbda74692009-11-04 08:27:26 -0800836 }
837
Glenn Kastenbc4de882012-01-17 14:39:34 -0800838 mCblk->setVolumeLR((uint32_t(uint16_t(mVolume[RIGHT] * 0x1000)) << 16) | uint16_t(mVolume[LEFT] * 0x1000));
Glenn Kasten4790bd82012-01-03 14:22:33 -0800839 mCblk->setSendLevel(mSendLevel);
Eric Laurent7070b362010-07-16 07:43:46 -0700840 mAudioTrack->attachAuxEffect(mAuxEffectId);
Eric Laurent49f02be2009-11-19 09:00:56 -0800841 mCblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS;
842 mCblk->waitTimeMs = 0;
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700843 mRemainingFrames = mNotificationFramesAct;
844 mLatency = afLatency + (1000*mCblk->frameCount) / sampleRate;
Eric Laurentbda74692009-11-04 08:27:26 -0800845 return NO_ERROR;
846}
847
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800848status_t AudioTrack::obtainBuffer(Buffer* audioBuffer, int32_t waitCount)
849{
Eric Laurent421ddc02011-03-07 14:52:59 -0800850 AutoMutex lock(mLock);
Glenn Kastene6810ff2012-01-03 09:42:47 -0800851 bool active;
Glenn Kasten028ab992011-06-22 16:18:04 -0700852 status_t result = NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853 audio_track_cblk_t* cblk = mCblk;
854 uint32_t framesReq = audioBuffer->frameCount;
Eric Laurentef028272009-04-21 07:56:33 -0700855 uint32_t waitTimeMs = (waitCount < 0) ? cblk->bufferTimeoutMs : WAIT_PERIOD_MS;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800856
857 audioBuffer->frameCount = 0;
858 audioBuffer->size = 0;
859
860 uint32_t framesAvail = cblk->framesAvailable();
861
Eric Laurent6667ac32011-03-21 11:49:00 -0700862 cblk->lock.lock();
863 if (cblk->flags & CBLK_INVALID_MSK) {
864 goto create_new_track;
865 }
866 cblk->lock.unlock();
867
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800868 if (framesAvail == 0) {
Eric Laurentbda74692009-11-04 08:27:26 -0800869 cblk->lock.lock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800870 goto start_loop_here;
871 while (framesAvail == 0) {
872 active = mActive;
Glenn Kastene80a4cc2011-12-15 09:51:17 -0800873 if (CC_UNLIKELY(!active)) {
Steve Block71f2cf12011-10-20 11:56:00 +0100874 ALOGV("Not active and NO_MORE_BUFFERS");
Eric Laurentbda74692009-11-04 08:27:26 -0800875 cblk->lock.unlock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800876 return NO_MORE_BUFFERS;
877 }
Glenn Kastene80a4cc2011-12-15 09:51:17 -0800878 if (CC_UNLIKELY(!waitCount)) {
Eric Laurentbda74692009-11-04 08:27:26 -0800879 cblk->lock.unlock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800880 return WOULD_BLOCK;
Eric Laurentbda74692009-11-04 08:27:26 -0800881 }
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700882 if (!(cblk->flags & CBLK_INVALID_MSK)) {
Eric Laurent421ddc02011-03-07 14:52:59 -0800883 mLock.unlock();
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700884 result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs));
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700885 cblk->lock.unlock();
Eric Laurent421ddc02011-03-07 14:52:59 -0800886 mLock.lock();
Glenn Kastene6810ff2012-01-03 09:42:47 -0800887 if (!mActive) {
Eric Laurent421ddc02011-03-07 14:52:59 -0800888 return status_t(STOPPED);
889 }
890 cblk->lock.lock();
891 }
892
893 if (cblk->flags & CBLK_INVALID_MSK) {
Eric Laurenteb8f850d2010-05-14 03:26:45 -0700894 goto create_new_track;
895 }
Glenn Kastene80a4cc2011-12-15 09:51:17 -0800896 if (CC_UNLIKELY(result != NO_ERROR)) {
Eric Laurentef028272009-04-21 07:56:33 -0700897 cblk->waitTimeMs += waitTimeMs;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800898 if (cblk->waitTimeMs >= cblk->bufferTimeoutMs) {
899 // timing out when a loop has been set and we have already written upto loop end
900 // is a normal condition: no need to wake AudioFlinger up.
901 if (cblk->user < cblk->loopEnd) {
Steve Block8564c8d2012-01-05 23:22:43 +0000902 ALOGW( "obtainBuffer timed out (is the CPU pegged?) %p "
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800903 "user=%08x, server=%08x", this, cblk->user, cblk->server);
Eric Laurenta553c252009-07-17 12:17:14 -0700904 //unlock cblk mutex before calling mAudioTrack->start() (see issue #1617140)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800905 cblk->lock.unlock();
Glenn Kasten6a20b262012-02-02 10:56:47 -0800906 result = mAudioTrack->start(0); // callback thread hasn't changed
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800907 cblk->lock.lock();
Eric Laurent421ddc02011-03-07 14:52:59 -0800908 if (result == DEAD_OBJECT) {
Eric Laurentae29b762011-03-28 18:37:07 -0700909 android_atomic_or(CBLK_INVALID_ON, &cblk->flags);
Eric Laurent421ddc02011-03-07 14:52:59 -0800910create_new_track:
911 result = restoreTrack_l(cblk, false);
912 }
913 if (result != NO_ERROR) {
Steve Block8564c8d2012-01-05 23:22:43 +0000914 ALOGW("obtainBuffer create Track error %d", result);
Eric Laurent421ddc02011-03-07 14:52:59 -0800915 cblk->lock.unlock();
916 return result;
917 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800918 }
919 cblk->waitTimeMs = 0;
920 }
Eric Laurenta553c252009-07-17 12:17:14 -0700921
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800922 if (--waitCount == 0) {
Eric Laurentbda74692009-11-04 08:27:26 -0800923 cblk->lock.unlock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800924 return TIMED_OUT;
925 }
926 }
927 // read the server count again
928 start_loop_here:
929 framesAvail = cblk->framesAvailable_l();
930 }
Eric Laurentbda74692009-11-04 08:27:26 -0800931 cblk->lock.unlock();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800932 }
933
Eric Laurent4712baa2010-09-30 16:12:31 -0700934 // restart track if it was disabled by audioflinger due to previous underrun
Eric Laurent421ddc02011-03-07 14:52:59 -0800935 if (mActive && (cblk->flags & CBLK_DISABLED_MSK)) {
Eric Laurentae29b762011-03-28 18:37:07 -0700936 android_atomic_and(~CBLK_DISABLED_ON, &cblk->flags);
Steve Block8564c8d2012-01-05 23:22:43 +0000937 ALOGW("obtainBuffer() track %p disabled, restarting", this);
Glenn Kasten6a20b262012-02-02 10:56:47 -0800938 mAudioTrack->start(0); // callback thread hasn't changed
Eric Laurent4712baa2010-09-30 16:12:31 -0700939 }
940
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800941 cblk->waitTimeMs = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700942
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800943 if (framesReq > framesAvail) {
944 framesReq = framesAvail;
945 }
946
947 uint32_t u = cblk->user;
948 uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
949
950 if (u + framesReq > bufferEnd) {
951 framesReq = bufferEnd - u;
952 }
953
Eric Laurenta553c252009-07-17 12:17:14 -0700954 audioBuffer->flags = mMuted ? Buffer::MUTE : 0;
955 audioBuffer->channelCount = mChannelCount;
956 audioBuffer->frameCount = framesReq;
957 audioBuffer->size = framesReq * cblk->frameSize;
Dima Zavin24fc2fb2011-04-19 22:30:36 -0700958 if (audio_is_linear_pcm(mFormat)) {
959 audioBuffer->format = AUDIO_FORMAT_PCM_16_BIT;
Eric Laurenta553c252009-07-17 12:17:14 -0700960 } else {
961 audioBuffer->format = mFormat;
962 }
963 audioBuffer->raw = (int8_t *)cblk->buffer(u);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800964 active = mActive;
965 return active ? status_t(NO_ERROR) : status_t(STOPPED);
966}
967
968void AudioTrack::releaseBuffer(Buffer* audioBuffer)
969{
Eric Laurent421ddc02011-03-07 14:52:59 -0800970 AutoMutex lock(mLock);
971 mCblk->stepUser(audioBuffer->frameCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800972}
973
974// -------------------------------------------------------------------------
975
976ssize_t AudioTrack::write(const void* buffer, size_t userSize)
977{
978
979 if (mSharedBuffer != 0) return INVALID_OPERATION;
980
981 if (ssize_t(userSize) < 0) {
Glenn Kastenb3db2132012-01-19 08:59:58 -0800982 // Sanity-check: user is most-likely passing an error code, and it would
983 // make the return value ambiguous (actualSize vs error).
Steve Block3762c312012-01-06 19:20:56 +0000984 ALOGE("AudioTrack::write(buffer=%p, size=%u (%d)",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800985 buffer, userSize, userSize);
986 return BAD_VALUE;
987 }
988
Steve Block71f2cf12011-10-20 11:56:00 +0100989 ALOGV("write %p: %d bytes, mActive=%d", this, userSize, mActive);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800990
Eric Laurent421ddc02011-03-07 14:52:59 -0800991 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
992 // while we are accessing the cblk
993 mLock.lock();
994 sp <IAudioTrack> audioTrack = mAudioTrack;
995 sp <IMemory> iMem = mCblkMemory;
996 mLock.unlock();
997
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800998 ssize_t written = 0;
999 const int8_t *src = (const int8_t *)buffer;
1000 Buffer audioBuffer;
Glenn Kastenfaf354d2012-01-11 09:48:27 -08001001 size_t frameSz = frameSize();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001002
1003 do {
Eric Laurent913af0b2011-03-17 09:36:51 -07001004 audioBuffer.frameCount = userSize/frameSz;
Eric Laurenta553c252009-07-17 12:17:14 -07001005
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001006 status_t err = obtainBuffer(&audioBuffer, -1);
1007 if (err < 0) {
1008 // out of buffers, return #bytes written
1009 if (err == status_t(NO_MORE_BUFFERS))
1010 break;
1011 return ssize_t(err);
1012 }
1013
1014 size_t toWrite;
Eric Laurenta553c252009-07-17 12:17:14 -07001015
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001016 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001017 // Divide capacity by 2 to take expansion into account
1018 toWrite = audioBuffer.size>>1;
Glenn Kastencc2302d2012-01-11 09:52:19 -08001019 memcpy_to_i16_from_u8(audioBuffer.i16, (const uint8_t *) src, toWrite);
Eric Laurent28ad42b2009-08-04 10:42:26 -07001020 } else {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001021 toWrite = audioBuffer.size;
1022 memcpy(audioBuffer.i8, src, toWrite);
1023 src += toWrite;
1024 }
1025 userSize -= toWrite;
1026 written += toWrite;
1027
1028 releaseBuffer(&audioBuffer);
Eric Laurent913af0b2011-03-17 09:36:51 -07001029 } while (userSize >= frameSz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001030
1031 return written;
1032}
1033
1034// -------------------------------------------------------------------------
1035
1036bool AudioTrack::processAudioBuffer(const sp<AudioTrackThread>& thread)
1037{
1038 Buffer audioBuffer;
1039 uint32_t frames;
1040 size_t writtenSize;
1041
Eric Laurent421ddc02011-03-07 14:52:59 -08001042 mLock.lock();
1043 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
1044 // while we are accessing the cblk
1045 sp <IAudioTrack> audioTrack = mAudioTrack;
1046 sp <IMemory> iMem = mCblkMemory;
1047 audio_track_cblk_t* cblk = mCblk;
Glenn Kastene6810ff2012-01-03 09:42:47 -08001048 bool active = mActive;
Eric Laurent421ddc02011-03-07 14:52:59 -08001049 mLock.unlock();
1050
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001051 // Manage underrun callback
Glenn Kastene6810ff2012-01-03 09:42:47 -08001052 if (active && (cblk->framesAvailable() == cblk->frameCount)) {
Steve Block71f2cf12011-10-20 11:56:00 +01001053 ALOGV("Underrun user: %x, server: %x, flags %04x", cblk->user, cblk->server, cblk->flags);
Eric Laurentae29b762011-03-28 18:37:07 -07001054 if (!(android_atomic_or(CBLK_UNDERRUN_ON, &cblk->flags) & CBLK_UNDERRUN_MSK)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001055 mCbf(EVENT_UNDERRUN, mUserData, 0);
Eric Laurent421ddc02011-03-07 14:52:59 -08001056 if (cblk->server == cblk->frameCount) {
Eric Laurenta553c252009-07-17 12:17:14 -07001057 mCbf(EVENT_BUFFER_END, mUserData, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001058 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001059 if (mSharedBuffer != 0) return false;
1060 }
1061 }
Eric Laurenta553c252009-07-17 12:17:14 -07001062
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001063 // Manage loop end callback
Eric Laurent421ddc02011-03-07 14:52:59 -08001064 while (mLoopCount > cblk->loopCount) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001065 int loopCount = -1;
1066 mLoopCount--;
1067 if (mLoopCount >= 0) loopCount = mLoopCount;
1068
1069 mCbf(EVENT_LOOP_END, mUserData, (void *)&loopCount);
1070 }
1071
1072 // Manage marker callback
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -07001073 if (!mMarkerReached && (mMarkerPosition > 0)) {
Eric Laurent421ddc02011-03-07 14:52:59 -08001074 if (cblk->server >= mMarkerPosition) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001075 mCbf(EVENT_MARKER, mUserData, (void *)&mMarkerPosition);
Jean-Michel Trivi4a5c1a72009-03-24 18:11:07 -07001076 mMarkerReached = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001077 }
1078 }
1079
1080 // Manage new position callback
Eric Laurenta553c252009-07-17 12:17:14 -07001081 if (mUpdatePeriod > 0) {
Eric Laurent421ddc02011-03-07 14:52:59 -08001082 while (cblk->server >= mNewPosition) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001083 mCbf(EVENT_NEW_POS, mUserData, (void *)&mNewPosition);
1084 mNewPosition += mUpdatePeriod;
1085 }
1086 }
1087
1088 // If Shared buffer is used, no data is requested from client.
1089 if (mSharedBuffer != 0) {
1090 frames = 0;
1091 } else {
1092 frames = mRemainingFrames;
1093 }
1094
Glenn Kastenb3db2132012-01-19 08:59:58 -08001095 // See description of waitCount parameter at declaration of obtainBuffer().
1096 // The logic below prevents us from being stuck below at obtainBuffer()
1097 // not being able to handle timed events (position, markers, loops).
Eric Laurentf1d360a2011-09-07 11:13:23 -07001098 int32_t waitCount = -1;
1099 if (mUpdatePeriod || (!mMarkerReached && mMarkerPosition) || mLoopCount) {
1100 waitCount = 1;
1101 }
1102
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001103 do {
1104
1105 audioBuffer.frameCount = frames;
Eric Laurenta553c252009-07-17 12:17:14 -07001106
Eric Laurentf1d360a2011-09-07 11:13:23 -07001107 status_t err = obtainBuffer(&audioBuffer, waitCount);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001108 if (err < NO_ERROR) {
1109 if (err != TIMED_OUT) {
Steve Block3762c312012-01-06 19:20:56 +00001110 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 -08001111 return false;
1112 }
1113 break;
1114 }
1115 if (err == status_t(STOPPED)) return false;
1116
1117 // Divide buffer size by 2 to take into account the expansion
1118 // due to 8 to 16 bit conversion: the callback must fill only half
1119 // of the destination buffer
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001120 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001121 audioBuffer.size >>= 1;
1122 }
1123
1124 size_t reqSize = audioBuffer.size;
1125 mCbf(EVENT_MORE_DATA, mUserData, &audioBuffer);
1126 writtenSize = audioBuffer.size;
1127
1128 // Sanity check on returned size
The Android Open Source Project4df24232009-03-05 14:34:35 -08001129 if (ssize_t(writtenSize) <= 0) {
1130 // The callback is done filling buffers
1131 // Keep this thread going to handle timed events and
1132 // still try to get more data in intervals of WAIT_PERIOD_MS
1133 // but don't just loop and block the CPU, so wait
1134 usleep(WAIT_PERIOD_MS*1000);
1135 break;
1136 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001137 if (writtenSize > reqSize) writtenSize = reqSize;
1138
Dima Zavin24fc2fb2011-04-19 22:30:36 -07001139 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT)) {
Glenn Kastencc2302d2012-01-11 09:52:19 -08001140 // 8 to 16 bit conversion, note that source and destination are the same address
1141 memcpy_to_i16_from_u8(audioBuffer.i16, (const uint8_t *) audioBuffer.i8, writtenSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001142 writtenSize <<= 1;
1143 }
1144
1145 audioBuffer.size = writtenSize;
Eric Laurenta553c252009-07-17 12:17:14 -07001146 // NOTE: mCblk->frameSize is not equal to AudioTrack::frameSize() for
Glenn Kastenfaf354d2012-01-11 09:48:27 -08001147 // 8 bit PCM data: in this case, mCblk->frameSize is based on a sample size of
Eric Laurenta553c252009-07-17 12:17:14 -07001148 // 16 bit.
1149 audioBuffer.frameCount = writtenSize/mCblk->frameSize;
1150
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001151 frames -= audioBuffer.frameCount;
1152
1153 releaseBuffer(&audioBuffer);
1154 }
1155 while (frames);
1156
1157 if (frames == 0) {
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001158 mRemainingFrames = mNotificationFramesAct;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001159 } else {
1160 mRemainingFrames = frames;
1161 }
1162 return true;
1163}
1164
Eric Laurent421ddc02011-03-07 14:52:59 -08001165// must be called with mLock and cblk.lock held. Callers must also hold strong references on
1166// the IAudioTrack and IMemory in case they are recreated here.
1167// If the IAudioTrack is successfully restored, the cblk pointer is updated
1168status_t AudioTrack::restoreTrack_l(audio_track_cblk_t*& cblk, bool fromStart)
1169{
1170 status_t result;
1171
Eric Laurentae29b762011-03-28 18:37:07 -07001172 if (!(android_atomic_or(CBLK_RESTORING_ON, &cblk->flags) & CBLK_RESTORING_MSK)) {
Steve Block8564c8d2012-01-05 23:22:43 +00001173 ALOGW("dead IAudioTrack, creating a new one from %s TID %d",
Eric Laurent7e8626f2011-09-13 15:04:17 -07001174 fromStart ? "start()" : "obtainBuffer()", gettid());
Eric Laurent421ddc02011-03-07 14:52:59 -08001175
Eric Laurent421ddc02011-03-07 14:52:59 -08001176 // signal old cblk condition so that other threads waiting for available buffers stop
1177 // waiting now
1178 cblk->cv.broadcast();
1179 cblk->lock.unlock();
1180
Eric Laurent05ce0942011-08-30 10:18:54 -07001181 // refresh the audio configuration cache in this process to make sure we get new
1182 // output parameters in getOutput_l() and createTrack_l()
1183 AudioSystem::clearAudioConfigCache();
1184
Eric Laurent421ddc02011-03-07 14:52:59 -08001185 // if the new IAudioTrack is created, createTrack_l() will modify the
1186 // following member variables: mAudioTrack, mCblkMemory and mCblk.
1187 // It will also delete the strong references on previous IAudioTrack and IMemory
1188 result = createTrack_l(mStreamType,
1189 cblk->sampleRate,
1190 mFormat,
Jean-Michel Trivi54392232011-05-24 15:53:33 -07001191 mChannelMask,
Eric Laurent421ddc02011-03-07 14:52:59 -08001192 mFrameCount,
1193 mFlags,
1194 mSharedBuffer,
1195 getOutput_l(),
1196 false);
1197
1198 if (result == NO_ERROR) {
Eric Laurentb0808f92011-09-06 12:36:15 -07001199 uint32_t user = cblk->user;
1200 uint32_t server = cblk->server;
Eric Laurent6667ac32011-03-21 11:49:00 -07001201 // restore write index and set other indexes to reflect empty buffer status
Eric Laurentb0808f92011-09-06 12:36:15 -07001202 mCblk->user = user;
1203 mCblk->server = user;
1204 mCblk->userBase = user;
1205 mCblk->serverBase = user;
Eric Laurent6667ac32011-03-21 11:49:00 -07001206 // restore loop: this is not guaranteed to succeed if new frame count is not
1207 // compatible with loop length
1208 setLoop_l(cblk->loopStart, cblk->loopEnd, cblk->loopCount);
Eric Laurent421ddc02011-03-07 14:52:59 -08001209 if (!fromStart) {
1210 mCblk->bufferTimeoutMs = MAX_RUN_TIMEOUT_MS;
Eric Laurentb0808f92011-09-06 12:36:15 -07001211 // Make sure that a client relying on callback events indicating underrun or
1212 // the actual amount of audio frames played (e.g SoundPool) receives them.
1213 if (mSharedBuffer == 0) {
1214 uint32_t frames = 0;
1215 if (user > server) {
1216 frames = ((user - server) > mCblk->frameCount) ?
1217 mCblk->frameCount : (user - server);
1218 memset(mCblk->buffers, 0, frames * mCblk->frameSize);
1219 }
1220 // restart playback even if buffer is not completely filled.
1221 android_atomic_or(CBLK_FORCEREADY_ON, &mCblk->flags);
1222 // stepUser() clears CBLK_UNDERRUN_ON flag enabling underrun callbacks to
1223 // the client
1224 mCblk->stepUser(frames);
1225 }
Eric Laurent421ddc02011-03-07 14:52:59 -08001226 }
Eric Laurent6667ac32011-03-21 11:49:00 -07001227 if (mActive) {
Glenn Kasten6a20b262012-02-02 10:56:47 -08001228 result = mAudioTrack->start(0); // callback thread hasn't changed
Steve Block8564c8d2012-01-05 23:22:43 +00001229 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() start() failed status %d", result);
Eric Laurent6667ac32011-03-21 11:49:00 -07001230 }
Eric Laurent421ddc02011-03-07 14:52:59 -08001231 if (fromStart && result == NO_ERROR) {
1232 mNewPosition = mCblk->server + mUpdatePeriod;
1233 }
1234 }
1235 if (result != NO_ERROR) {
Eric Laurent7e8626f2011-09-13 15:04:17 -07001236 android_atomic_and(~CBLK_RESTORING_ON, &cblk->flags);
Steve Block8564c8d2012-01-05 23:22:43 +00001237 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() failed status %d", result);
Eric Laurent421ddc02011-03-07 14:52:59 -08001238 }
Eric Laurent7e8626f2011-09-13 15:04:17 -07001239 mRestoreStatus = result;
Eric Laurent421ddc02011-03-07 14:52:59 -08001240 // signal old cblk condition for other threads waiting for restore completion
Eric Laurentae29b762011-03-28 18:37:07 -07001241 android_atomic_or(CBLK_RESTORED_ON, &cblk->flags);
Eric Laurent421ddc02011-03-07 14:52:59 -08001242 cblk->cv.broadcast();
Eric Laurent421ddc02011-03-07 14:52:59 -08001243 } else {
1244 if (!(cblk->flags & CBLK_RESTORED_MSK)) {
Steve Block8564c8d2012-01-05 23:22:43 +00001245 ALOGW("dead IAudioTrack, waiting for a new one TID %d", gettid());
Eric Laurent421ddc02011-03-07 14:52:59 -08001246 mLock.unlock();
1247 result = cblk->cv.waitRelative(cblk->lock, milliseconds(RESTORE_TIMEOUT_MS));
Eric Laurent7e8626f2011-09-13 15:04:17 -07001248 if (result == NO_ERROR) {
1249 result = mRestoreStatus;
1250 }
Eric Laurent421ddc02011-03-07 14:52:59 -08001251 cblk->lock.unlock();
1252 mLock.lock();
1253 } else {
Steve Block8564c8d2012-01-05 23:22:43 +00001254 ALOGW("dead IAudioTrack, already restored TID %d", gettid());
Eric Laurent7e8626f2011-09-13 15:04:17 -07001255 result = mRestoreStatus;
Eric Laurent421ddc02011-03-07 14:52:59 -08001256 cblk->lock.unlock();
1257 }
Eric Laurent421ddc02011-03-07 14:52:59 -08001258 }
Steve Block71f2cf12011-10-20 11:56:00 +01001259 ALOGV("restoreTrack_l() status %d mActive %d cblk %p, old cblk %p flags %08x old flags %08x",
Eric Laurent421ddc02011-03-07 14:52:59 -08001260 result, mActive, mCblk, cblk, mCblk->flags, cblk->flags);
1261
1262 if (result == NO_ERROR) {
1263 // from now on we switch to the newly created cblk
1264 cblk = mCblk;
1265 }
1266 cblk->lock.lock();
1267
Steve Block8564c8d2012-01-05 23:22:43 +00001268 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() error %d TID %d", result, gettid());
Eric Laurent421ddc02011-03-07 14:52:59 -08001269
1270 return result;
1271}
1272
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001273status_t AudioTrack::dump(int fd, const Vector<String16>& args) const
1274{
1275
1276 const size_t SIZE = 256;
1277 char buffer[SIZE];
1278 String8 result;
1279
1280 result.append(" AudioTrack::dump\n");
1281 snprintf(buffer, 255, " stream type(%d), left - right volume(%f, %f)\n", mStreamType, mVolume[0], mVolume[1]);
1282 result.append(buffer);
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001283 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 -08001284 result.append(buffer);
Eric Laurent88e209d2009-07-07 07:10:45 -07001285 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 -08001286 result.append(buffer);
1287 snprintf(buffer, 255, " active(%d), latency (%d)\n", mActive, mLatency);
1288 result.append(buffer);
1289 ::write(fd, result.string(), result.size());
1290 return NO_ERROR;
1291}
1292
1293// =========================================================================
1294
1295AudioTrack::AudioTrackThread::AudioTrackThread(AudioTrack& receiver, bool bCanCallJava)
1296 : Thread(bCanCallJava), mReceiver(receiver)
1297{
1298}
1299
1300bool AudioTrack::AudioTrackThread::threadLoop()
1301{
1302 return mReceiver.processAudioBuffer(this);
1303}
1304
1305status_t AudioTrack::AudioTrackThread::readyToRun()
1306{
1307 return NO_ERROR;
1308}
1309
1310void AudioTrack::AudioTrackThread::onFirstRef()
1311{
1312}
1313
1314// =========================================================================
1315
Eric Laurentae29b762011-03-28 18:37:07 -07001316
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001317audio_track_cblk_t::audio_track_cblk_t()
Mathias Agopiana729f972010-03-19 16:14:13 -07001318 : lock(Mutex::SHARED), cv(Condition::SHARED), user(0), server(0),
Glenn Kasten3694ec12012-01-27 16:47:15 -08001319 userBase(0), serverBase(0), buffers(NULL), frameCount(0),
Glenn Kastenbc4de882012-01-17 14:39:34 -08001320 loopStart(UINT_MAX), loopEnd(UINT_MAX), loopCount(0), mVolumeLR(0x10001000),
Glenn Kasten4790bd82012-01-03 14:22:33 -08001321 mSendLevel(0), flags(0)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001322{
1323}
1324
1325uint32_t audio_track_cblk_t::stepUser(uint32_t frameCount)
1326{
Glenn Kastendb298a42011-12-13 11:45:07 -08001327 uint32_t u = user;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001328
1329 u += frameCount;
1330 // Ensure that user is never ahead of server for AudioRecord
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001331 if (flags & CBLK_DIRECTION_MSK) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001332 // If stepServer() has been called once, switch to normal obtainBuffer() timeout period
1333 if (bufferTimeoutMs == MAX_STARTUP_TIMEOUT_MS-1) {
1334 bufferTimeoutMs = MAX_RUN_TIMEOUT_MS;
1335 }
Glenn Kastendb298a42011-12-13 11:45:07 -08001336 } else if (u > server) {
Steve Block8564c8d2012-01-05 23:22:43 +00001337 ALOGW("stepServer occurred after track reset");
Glenn Kastendb298a42011-12-13 11:45:07 -08001338 u = server;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001339 }
1340
1341 if (u >= userBase + this->frameCount) {
1342 userBase += this->frameCount;
1343 }
1344
Glenn Kastendb298a42011-12-13 11:45:07 -08001345 user = u;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001346
1347 // Clear flow control error condition as new data has been written/read to/from buffer.
Eric Laurent913af0b2011-03-17 09:36:51 -07001348 if (flags & CBLK_UNDERRUN_MSK) {
Eric Laurentae29b762011-03-28 18:37:07 -07001349 android_atomic_and(~CBLK_UNDERRUN_MSK, &flags);
Eric Laurent913af0b2011-03-17 09:36:51 -07001350 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001351
1352 return u;
1353}
1354
1355bool audio_track_cblk_t::stepServer(uint32_t frameCount)
1356{
Eric Laurentae29b762011-03-28 18:37:07 -07001357 if (!tryLock()) {
Steve Block8564c8d2012-01-05 23:22:43 +00001358 ALOGW("stepServer() could not lock cblk");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001359 return false;
1360 }
1361
Glenn Kastendb298a42011-12-13 11:45:07 -08001362 uint32_t s = server;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001363
1364 s += frameCount;
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001365 if (flags & CBLK_DIRECTION_MSK) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001366 // Mark that we have read the first buffer so that next time stepUser() is called
1367 // we switch to normal obtainBuffer() timeout period
1368 if (bufferTimeoutMs == MAX_STARTUP_TIMEOUT_MS) {
Eric Laurentbda74692009-11-04 08:27:26 -08001369 bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS - 1;
Eric Laurenta553c252009-07-17 12:17:14 -07001370 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001371 // It is possible that we receive a flush()
1372 // while the mixer is processing a block: in this case,
1373 // stepServer() is called After the flush() has reset u & s and
1374 // we have s > u
Glenn Kastendb298a42011-12-13 11:45:07 -08001375 if (s > user) {
Steve Block8564c8d2012-01-05 23:22:43 +00001376 ALOGW("stepServer occurred after track reset");
Glenn Kastendb298a42011-12-13 11:45:07 -08001377 s = user;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001378 }
1379 }
1380
1381 if (s >= loopEnd) {
Steve Block8564c8d2012-01-05 23:22:43 +00001382 ALOGW_IF(s > loopEnd, "stepServer: s %u > loopEnd %u", s, loopEnd);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001383 s = loopStart;
1384 if (--loopCount == 0) {
1385 loopEnd = UINT_MAX;
1386 loopStart = UINT_MAX;
1387 }
1388 }
1389 if (s >= serverBase + this->frameCount) {
1390 serverBase += this->frameCount;
1391 }
1392
Glenn Kastendb298a42011-12-13 11:45:07 -08001393 server = s;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001394
Eric Laurent421ddc02011-03-07 14:52:59 -08001395 if (!(flags & CBLK_INVALID_MSK)) {
1396 cv.signal();
1397 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001398 lock.unlock();
1399 return true;
1400}
1401
1402void* audio_track_cblk_t::buffer(uint32_t offset) const
1403{
Glenn Kastendb298a42011-12-13 11:45:07 -08001404 return (int8_t *)buffers + (offset - userBase) * frameSize;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001405}
1406
1407uint32_t audio_track_cblk_t::framesAvailable()
1408{
1409 Mutex::Autolock _l(lock);
1410 return framesAvailable_l();
1411}
1412
1413uint32_t audio_track_cblk_t::framesAvailable_l()
1414{
Glenn Kastendb298a42011-12-13 11:45:07 -08001415 uint32_t u = user;
1416 uint32_t s = server;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001417
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001418 if (flags & CBLK_DIRECTION_MSK) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001419 uint32_t limit = (s < loopStart) ? s : loopStart;
1420 return limit + frameCount - u;
1421 } else {
1422 return frameCount + u - s;
1423 }
1424}
1425
1426uint32_t audio_track_cblk_t::framesReady()
1427{
Glenn Kastendb298a42011-12-13 11:45:07 -08001428 uint32_t u = user;
1429 uint32_t s = server;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001430
Eric Laurenteb8f850d2010-05-14 03:26:45 -07001431 if (flags & CBLK_DIRECTION_MSK) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001432 if (u < loopEnd) {
1433 return u - s;
1434 } else {
Eric Laurentae29b762011-03-28 18:37:07 -07001435 // do not block on mutex shared with client on AudioFlinger side
1436 if (!tryLock()) {
Steve Block8564c8d2012-01-05 23:22:43 +00001437 ALOGW("framesReady() could not lock cblk");
Eric Laurentae29b762011-03-28 18:37:07 -07001438 return 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001439 }
Eric Laurentae29b762011-03-28 18:37:07 -07001440 uint32_t frames = UINT_MAX;
1441 if (loopCount >= 0) {
1442 frames = (loopEnd - loopStart)*loopCount + u - s;
1443 }
1444 lock.unlock();
1445 return frames;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001446 }
1447 } else {
1448 return s - u;
1449 }
1450}
1451
Eric Laurentae29b762011-03-28 18:37:07 -07001452bool audio_track_cblk_t::tryLock()
1453{
1454 // the code below simulates lock-with-timeout
1455 // we MUST do this to protect the AudioFlinger server
1456 // as this lock is shared with the client.
1457 status_t err;
1458
1459 err = lock.tryLock();
1460 if (err == -EBUSY) { // just wait a bit
1461 usleep(1000);
1462 err = lock.tryLock();
1463 }
1464 if (err != NO_ERROR) {
1465 // probably, the client just died.
1466 return false;
1467 }
1468 return true;
1469}
1470
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001471// -------------------------------------------------------------------------
1472
1473}; // namespace android