blob: 523d844920e1f92e5389700d651bc529001bf3c2 [file] [log] [blame]
Glenn Kasten99e53b82012-01-19 08:59:58 -08001/*
The Android Open Source Project89fa4ad2009-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 Agopian75624082009-05-19 19:08:10 -070035#include <binder/Parcel.h>
36#include <binder/IPCThreadState.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080037#include <utils/Timers.h>
Eric Laurent38ccae22011-03-28 18:37:07 -070038#include <utils/Atomic.h>
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080039
Dima Zavinfce7a472011-04-19 22:30:36 -070040#include <cutils/bitops.h>
Glenn Kastenf6b16782011-12-15 09:51:17 -080041#include <cutils/compiler.h>
Dima Zavinfce7a472011-04-19 22:30:36 -070042
Dima Zavin64760242011-05-11 14:15:23 -070043#include <system/audio.h>
Dima Zavin7394a4f2011-06-13 18:16:26 -070044#include <system/audio_policy.h>
Dima Zavinfce7a472011-04-19 22:30:36 -070045
Glenn Kasten511754b2012-01-11 09:52:19 -080046#include <audio_utils/primitives.h>
47
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080048namespace android {
Chia-chi Yeh33005a92010-06-16 06:33:13 +080049// ---------------------------------------------------------------------------
50
51// static
52status_t AudioTrack::getMinFrameCount(
53 int* frameCount,
Glenn Kastenfff6d712012-01-12 16:38:12 -080054 audio_stream_type_t streamType,
Chia-chi Yeh33005a92010-06-16 06:33:13 +080055 uint32_t sampleRate)
56{
Glenn Kasten04cd0182012-06-25 11:49:27 -070057 if (frameCount == NULL) return BAD_VALUE;
58
59 // default to 0 in case of error
60 *frameCount = 0;
61
Glenn Kastene0fa4672012-04-24 14:35:14 -070062 // FIXME merge with similar code in createTrack_l(), except we're missing
63 // some information here that is available in createTrack_l():
64 // audio_io_handle_t output
65 // audio_format_t format
66 // audio_channel_mask_t channelMask
67 // audio_output_flags_t flags
Chia-chi Yeh33005a92010-06-16 06:33:13 +080068 int afSampleRate;
69 if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) {
70 return NO_INIT;
71 }
72 int afFrameCount;
73 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
74 return NO_INIT;
75 }
76 uint32_t afLatency;
77 if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) {
78 return NO_INIT;
79 }
80
81 // Ensure that buffer depth covers at least audio hardware latency
82 uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
83 if (minBufCount < 2) minBufCount = 2;
84
85 *frameCount = (sampleRate == 0) ? afFrameCount * minBufCount :
Glenn Kastene53b9ea2012-03-12 16:29:55 -070086 afFrameCount * minBufCount * sampleRate / afSampleRate;
Glenn Kasten3acbd052012-02-28 10:39:56 -080087 ALOGV("getMinFrameCount=%d: afFrameCount=%d, minBufCount=%d, afSampleRate=%d, afLatency=%d",
88 *frameCount, afFrameCount, minBufCount, afSampleRate, afLatency);
Chia-chi Yeh33005a92010-06-16 06:33:13 +080089 return NO_ERROR;
90}
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080091
92// ---------------------------------------------------------------------------
93
94AudioTrack::AudioTrack()
Glenn Kasten87913512011-06-22 16:15:25 -070095 : mStatus(NO_INIT),
John Grossman4ff14ba2012-02-08 16:37:41 -080096 mIsTimed(false),
97 mPreviousPriority(ANDROID_PRIORITY_NORMAL),
Glenn Kastena6364332012-04-19 09:35:04 -070098 mPreviousSchedulingGroup(SP_DEFAULT)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080099{
100}
101
102AudioTrack::AudioTrack(
Glenn Kastenfff6d712012-01-12 16:38:12 -0800103 audio_stream_type_t streamType,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800104 uint32_t sampleRate,
Glenn Kastene1c39622012-01-04 09:36:37 -0800105 audio_format_t format,
Glenn Kasten28b76b32012-07-03 17:24:41 -0700106 audio_channel_mask_t channelMask,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800107 int frameCount,
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700108 audio_output_flags_t flags,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800109 callback_t cbf,
110 void* user,
Eric Laurentbe916aa2010-06-01 23:49:17 -0700111 int notificationFrames,
112 int sessionId)
Glenn Kasten87913512011-06-22 16:15:25 -0700113 : mStatus(NO_INIT),
John Grossman4ff14ba2012-02-08 16:37:41 -0800114 mIsTimed(false),
115 mPreviousPriority(ANDROID_PRIORITY_NORMAL),
Glenn Kastena6364332012-04-19 09:35:04 -0700116 mPreviousSchedulingGroup(SP_DEFAULT)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800117{
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700118 mStatus = set(streamType, sampleRate, format, channelMask,
Eric Laurenta514bdb2010-06-21 09:27:30 -0700119 frameCount, flags, cbf, user, notificationFrames,
Glenn Kasten17a736c2012-02-14 08:52:15 -0800120 0 /*sharedBuffer*/, false /*threadCanCallJava*/, sessionId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800121}
122
Andreas Huberc8139852012-01-18 10:51:55 -0800123AudioTrack::AudioTrack(
Glenn Kastenfff6d712012-01-12 16:38:12 -0800124 audio_stream_type_t streamType,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800125 uint32_t sampleRate,
Glenn Kastene1c39622012-01-04 09:36:37 -0800126 audio_format_t format,
Glenn Kasten28b76b32012-07-03 17:24:41 -0700127 audio_channel_mask_t channelMask,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800128 const sp<IMemory>& sharedBuffer,
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700129 audio_output_flags_t flags,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800130 callback_t cbf,
131 void* user,
Eric Laurentbe916aa2010-06-01 23:49:17 -0700132 int notificationFrames,
133 int sessionId)
Glenn Kasten87913512011-06-22 16:15:25 -0700134 : mStatus(NO_INIT),
John Grossman4ff14ba2012-02-08 16:37:41 -0800135 mIsTimed(false),
136 mPreviousPriority(ANDROID_PRIORITY_NORMAL),
Glenn Kastena6364332012-04-19 09:35:04 -0700137 mPreviousSchedulingGroup(SP_DEFAULT)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800138{
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700139 mStatus = set(streamType, sampleRate, format, channelMask,
Glenn Kasten17a736c2012-02-14 08:52:15 -0800140 0 /*frameCount*/, flags, cbf, user, notificationFrames,
141 sharedBuffer, false /*threadCanCallJava*/, sessionId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800142}
143
144AudioTrack::~AudioTrack()
145{
Steve Block3856b092011-10-20 11:56:00 +0100146 ALOGV_IF(mSharedBuffer != 0, "Destructor sharedBuffer: %p", mSharedBuffer->pointer());
The Android Open Source Project89fa4ad2009-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) {
Glenn Kasten3acbd052012-02-28 10:39:56 -0800154 mAudioTrackThread->requestExit(); // see comment in AudioTrack.h
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800155 mAudioTrackThread->requestExitAndWait();
156 mAudioTrackThread.clear();
157 }
158 mAudioTrack.clear();
159 IPCThreadState::self()->flushCommands();
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700160 AudioSystem::releaseAudioSessionId(mSessionId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800161 }
162}
163
164status_t AudioTrack::set(
Glenn Kastenfff6d712012-01-12 16:38:12 -0800165 audio_stream_type_t streamType,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800166 uint32_t sampleRate,
Glenn Kastene1c39622012-01-04 09:36:37 -0800167 audio_format_t format,
Glenn Kasten28b76b32012-07-03 17:24:41 -0700168 audio_channel_mask_t channelMask,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800169 int frameCount,
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700170 audio_output_flags_t flags,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800171 callback_t cbf,
172 void* user,
173 int notificationFrames,
174 const sp<IMemory>& sharedBuffer,
Eric Laurentbe916aa2010-06-01 23:49:17 -0700175 bool threadCanCallJava,
176 int sessionId)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800177{
178
Glenn Kasten8af901c2012-11-01 11:11:38 -0700179 ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(),
180 sharedBuffer->size());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800181
Eric Laurent1a9ed112012-03-20 18:36:01 -0700182 ALOGV("set() streamType %d frameCount %d flags %04x", streamType, frameCount, flags);
183
Eric Laurent1703cdf2011-03-07 14:52:59 -0800184 AutoMutex lock(mLock);
Eric Laurent1dd70b92009-04-21 07:56:33 -0700185 if (mAudioTrack != 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000186 ALOGE("Track already in use");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800187 return INVALID_OPERATION;
188 }
189
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800190 // handle default values first.
Dima Zavinfce7a472011-04-19 22:30:36 -0700191 if (streamType == AUDIO_STREAM_DEFAULT) {
192 streamType = AUDIO_STREAM_MUSIC;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800193 }
Glenn Kastenea7939a2012-03-14 12:56:26 -0700194
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800195 if (sampleRate == 0) {
Glenn Kastene0fa4672012-04-24 14:35:14 -0700196 int afSampleRate;
197 if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) {
198 return NO_INIT;
199 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800200 sampleRate = afSampleRate;
201 }
Glenn Kastenea7939a2012-03-14 12:56:26 -0700202
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800203 // these below should probably come from the audioFlinger too...
Glenn Kastene1c39622012-01-04 09:36:37 -0800204 if (format == AUDIO_FORMAT_DEFAULT) {
Dima Zavinfce7a472011-04-19 22:30:36 -0700205 format = AUDIO_FORMAT_PCM_16_BIT;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800206 }
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700207 if (channelMask == 0) {
208 channelMask = AUDIO_CHANNEL_OUT_STEREO;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800209 }
210
211 // validate parameters
Dima Zavinfce7a472011-04-19 22:30:36 -0700212 if (!audio_is_valid_format(format)) {
Steve Block29357bc2012-01-06 19:20:56 +0000213 ALOGE("Invalid format");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800214 return BAD_VALUE;
215 }
Eric Laurentc2f1f072009-07-17 12:17:14 -0700216
Glenn Kastene0fa4672012-04-24 14:35:14 -0700217 // AudioFlinger does not currently support 8-bit data in shared memory
218 if (format == AUDIO_FORMAT_PCM_8_BIT && sharedBuffer != 0) {
219 ALOGE("8-bit data in shared memory is not supported");
220 return BAD_VALUE;
221 }
222
Eric Laurentc2f1f072009-07-17 12:17:14 -0700223 // force direct flag if format is not linear PCM
Dima Zavinfce7a472011-04-19 22:30:36 -0700224 if (!audio_is_linear_pcm(format)) {
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700225 flags = (audio_output_flags_t)
Glenn Kasten3acbd052012-02-28 10:39:56 -0800226 // FIXME why can't we allow direct AND fast?
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700227 ((flags | AUDIO_OUTPUT_FLAG_DIRECT) & ~AUDIO_OUTPUT_FLAG_FAST);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700228 }
Eric Laurent1948eb32012-04-13 16:50:19 -0700229 // only allow deep buffering for music stream type
230 if (streamType != AUDIO_STREAM_MUSIC) {
231 flags = (audio_output_flags_t)(flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
232 }
Eric Laurentc2f1f072009-07-17 12:17:14 -0700233
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700234 if (!audio_is_output_channel(channelMask)) {
Glenn Kasten28b76b32012-07-03 17:24:41 -0700235 ALOGE("Invalid channel mask %#x", channelMask);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700236 return BAD_VALUE;
237 }
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700238 uint32_t channelCount = popcount(channelMask);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700239
Dima Zavinfce7a472011-04-19 22:30:36 -0700240 audio_io_handle_t output = AudioSystem::getOutput(
Glenn Kastenfff6d712012-01-12 16:38:12 -0800241 streamType,
Glenn Kastene1c39622012-01-04 09:36:37 -0800242 sampleRate, format, channelMask,
Glenn Kasten18868c52012-03-07 09:15:37 -0800243 flags);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700244
245 if (output == 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000246 ALOGE("Could not get audio output for stream type %d", streamType);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800247 return BAD_VALUE;
248 }
249
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800250 mVolume[LEFT] = 1.0f;
251 mVolume[RIGHT] = 1.0f;
Glenn Kasten05632a52012-01-03 14:22:33 -0800252 mSendLevel = 0.0f;
Eric Laurentd1b449a2010-05-14 03:26:45 -0700253 mFrameCount = frameCount;
254 mNotificationFramesReq = notificationFrames;
Eric Laurentbe916aa2010-06-01 23:49:17 -0700255 mSessionId = sessionId;
Eric Laurent2beeb502010-07-16 07:43:46 -0700256 mAuxEffectId = 0;
Glenn Kasten093000f2012-05-03 09:35:36 -0700257 mFlags = flags;
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700258 mCbf = cbf;
Eric Laurentbe916aa2010-06-01 23:49:17 -0700259
Glenn Kastena997e7a2012-08-07 09:44:19 -0700260 if (cbf != NULL) {
Eric Laurentef6be0b2012-09-13 11:18:23 -0700261 mAudioTrackThread = new AudioTrackThread(*this, threadCanCallJava);
Glenn Kastena997e7a2012-08-07 09:44:19 -0700262 mAudioTrackThread->run("AudioTrack", ANDROID_PRIORITY_AUDIO, 0 /*stack*/);
263 }
264
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800265 // create the IAudioTrack
Eric Laurent1703cdf2011-03-07 14:52:59 -0800266 status_t status = createTrack_l(streamType,
267 sampleRate,
Glenn Kastene1c39622012-01-04 09:36:37 -0800268 format,
Glenn Kasten28b76b32012-07-03 17:24:41 -0700269 channelMask,
Eric Laurent1703cdf2011-03-07 14:52:59 -0800270 frameCount,
271 flags,
272 sharedBuffer,
Glenn Kasten291f4d52012-03-19 12:16:56 -0700273 output);
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800274
Glenn Kastena997e7a2012-08-07 09:44:19 -0700275 if (status != NO_ERROR) {
276 if (mAudioTrackThread != 0) {
277 mAudioTrackThread->requestExit();
278 mAudioTrackThread.clear();
279 }
280 return status;
Glenn Kasten5d464eb2012-06-22 17:19:53 -0700281 }
282
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800283 mStatus = NO_ERROR;
284
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800285 mStreamType = streamType;
Glenn Kastene1c39622012-01-04 09:36:37 -0800286 mFormat = format;
Glenn Kasten28b76b32012-07-03 17:24:41 -0700287 mChannelMask = channelMask;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800288 mChannelCount = channelCount;
289 mSharedBuffer = sharedBuffer;
290 mMuted = false;
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800291 mActive = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800292 mUserData = user;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800293 mLoopCount = 0;
294 mMarkerPosition = 0;
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -0700295 mMarkerReached = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800296 mNewPosition = 0;
297 mUpdatePeriod = 0;
Jean-Michel Trivicd075942011-08-25 16:47:23 -0700298 mFlushed = false;
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700299 AudioSystem::acquireAudioSessionId(mSessionId);
Eric Laurentcfe2ba62011-09-13 15:04:17 -0700300 mRestoreStatus = NO_ERROR;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800301 return NO_ERROR;
302}
303
304status_t AudioTrack::initCheck() const
305{
306 return mStatus;
307}
308
309// -------------------------------------------------------------------------
310
311uint32_t AudioTrack::latency() const
312{
313 return mLatency;
314}
315
Glenn Kastenfff6d712012-01-12 16:38:12 -0800316audio_stream_type_t AudioTrack::streamType() const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800317{
318 return mStreamType;
319}
320
Glenn Kastene1c39622012-01-04 09:36:37 -0800321audio_format_t AudioTrack::format() const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800322{
323 return mFormat;
324}
325
326int AudioTrack::channelCount() const
327{
328 return mChannelCount;
329}
330
331uint32_t AudioTrack::frameCount() const
332{
Eric Laurentd1b449a2010-05-14 03:26:45 -0700333 return mCblk->frameCount;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800334}
335
Glenn Kastenb9980652012-01-11 09:48:27 -0800336size_t AudioTrack::frameSize() const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800337{
Dima Zavinfce7a472011-04-19 22:30:36 -0700338 if (audio_is_linear_pcm(mFormat)) {
Eric Laurent671a6362011-06-16 21:30:45 -0700339 return channelCount()*audio_bytes_per_sample(mFormat);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700340 } else {
341 return sizeof(uint8_t);
342 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800343}
344
345sp<IMemory>& AudioTrack::sharedBuffer()
346{
347 return mSharedBuffer;
348}
349
350// -------------------------------------------------------------------------
351
352void AudioTrack::start()
353{
354 sp<AudioTrackThread> t = mAudioTrackThread;
355
Steve Block3856b092011-10-20 11:56:00 +0100356 ALOGV("start %p", this);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800357
Eric Laurentf5aafb22010-11-18 08:40:16 -0800358 AutoMutex lock(mLock);
Eric Laurent1703cdf2011-03-07 14:52:59 -0800359 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
360 // while we are accessing the cblk
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700361 sp<IAudioTrack> audioTrack = mAudioTrack;
362 sp<IMemory> iMem = mCblkMemory;
Eric Laurent1703cdf2011-03-07 14:52:59 -0800363 audio_track_cblk_t* cblk = mCblk;
364
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800365 if (!mActive) {
Jean-Michel Trivicd075942011-08-25 16:47:23 -0700366 mFlushed = false;
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800367 mActive = true;
Eric Laurent1703cdf2011-03-07 14:52:59 -0800368 mNewPosition = cblk->server + mUpdatePeriod;
Eric Laurent33797ea2011-03-17 09:36:51 -0700369 cblk->lock.lock();
Eric Laurent1703cdf2011-03-07 14:52:59 -0800370 cblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS;
371 cblk->waitTimeMs = 0;
Glenn Kastend12b0332012-11-05 13:38:15 -0800372 android_atomic_and(~CBLK_DISABLED, &cblk->flags);
Eric Laurent2b584242009-11-09 23:32:22 -0800373 if (t != 0) {
Glenn Kasten3acbd052012-02-28 10:39:56 -0800374 t->resume();
Eric Laurent2b584242009-11-09 23:32:22 -0800375 } else {
Glenn Kasten87913512011-06-22 16:15:25 -0700376 mPreviousPriority = getpriority(PRIO_PROCESS, 0);
Glenn Kastena6364332012-04-19 09:35:04 -0700377 get_sched_policy(0, &mPreviousSchedulingGroup);
Glenn Kasten87913512011-06-22 16:15:25 -0700378 androidSetThreadPriority(0, ANDROID_PRIORITY_AUDIO);
Eric Laurent2b584242009-11-09 23:32:22 -0800379 }
380
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700381 ALOGV("start %p before lock cblk %p", this, cblk);
Glenn Kastend3a9ff42012-06-21 12:11:38 -0700382 status_t status = NO_ERROR;
Glenn Kastend12b0332012-11-05 13:38:15 -0800383 if (!(cblk->flags & CBLK_INVALID)) {
Eric Laurent1703cdf2011-03-07 14:52:59 -0800384 cblk->lock.unlock();
Glenn Kasten3acbd052012-02-28 10:39:56 -0800385 ALOGV("mAudioTrack->start()");
386 status = mAudioTrack->start();
Eric Laurent1703cdf2011-03-07 14:52:59 -0800387 cblk->lock.lock();
388 if (status == DEAD_OBJECT) {
Glenn Kastend12b0332012-11-05 13:38:15 -0800389 android_atomic_or(CBLK_INVALID, &cblk->flags);
Eric Laurent6100d2d2009-11-19 09:00:56 -0800390 }
Eric Laurent2b584242009-11-09 23:32:22 -0800391 }
Glenn Kastend12b0332012-11-05 13:38:15 -0800392 if (cblk->flags & CBLK_INVALID) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700393 audio_track_cblk_t* temp = cblk;
394 status = restoreTrack_l(temp, true);
395 cblk = temp;
Eric Laurent1703cdf2011-03-07 14:52:59 -0800396 }
397 cblk->lock.unlock();
Eric Laurent2b584242009-11-09 23:32:22 -0800398 if (status != NO_ERROR) {
Steve Block3856b092011-10-20 11:56:00 +0100399 ALOGV("start() failed");
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800400 mActive = false;
Eric Laurent2b584242009-11-09 23:32:22 -0800401 if (t != 0) {
Glenn Kasten3acbd052012-02-28 10:39:56 -0800402 t->pause();
Eric Laurent2b584242009-11-09 23:32:22 -0800403 } else {
Glenn Kasten87913512011-06-22 16:15:25 -0700404 setpriority(PRIO_PROCESS, 0, mPreviousPriority);
Glenn Kastena6364332012-04-19 09:35:04 -0700405 set_sched_policy(0, mPreviousSchedulingGroup);
Eric Laurent2b584242009-11-09 23:32:22 -0800406 }
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800407 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800408 }
409
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800410}
411
412void AudioTrack::stop()
413{
414 sp<AudioTrackThread> t = mAudioTrackThread;
415
Steve Block3856b092011-10-20 11:56:00 +0100416 ALOGV("stop %p", this);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800417
Eric Laurentf5aafb22010-11-18 08:40:16 -0800418 AutoMutex lock(mLock);
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800419 if (mActive) {
420 mActive = false;
Eric Laurent1dd70b92009-04-21 07:56:33 -0700421 mCblk->cv.signal();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800422 mAudioTrack->stop();
423 // Cancel loops (If we are in the middle of a loop, playback
424 // would not stop until loopCount reaches 0).
Eric Laurent1703cdf2011-03-07 14:52:59 -0800425 setLoop_l(0, 0, 0);
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -0700426 // the playback head position will reset to 0, so if a marker is set, we need
427 // to activate it again
428 mMarkerReached = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800429 // Force flush if a shared buffer is used otherwise audioflinger
430 // will not stop before end of buffer is reached.
431 if (mSharedBuffer != 0) {
Eric Laurent1703cdf2011-03-07 14:52:59 -0800432 flush_l();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800433 }
434 if (t != 0) {
Glenn Kasten3acbd052012-02-28 10:39:56 -0800435 t->pause();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800436 } else {
Glenn Kasten87913512011-06-22 16:15:25 -0700437 setpriority(PRIO_PROCESS, 0, mPreviousPriority);
Glenn Kastena6364332012-04-19 09:35:04 -0700438 set_sched_policy(0, mPreviousSchedulingGroup);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800439 }
440 }
441
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800442}
443
444bool AudioTrack::stopped() const
445{
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800446 AutoMutex lock(mLock);
447 return stopped_l();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800448}
449
450void AudioTrack::flush()
451{
Eric Laurent1703cdf2011-03-07 14:52:59 -0800452 AutoMutex lock(mLock);
453 flush_l();
454}
455
456// must be called with mLock held
457void AudioTrack::flush_l()
458{
Steve Block3856b092011-10-20 11:56:00 +0100459 ALOGV("flush");
Eric Laurentc2f1f072009-07-17 12:17:14 -0700460
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -0700461 // clear playback marker and periodic update counter
462 mMarkerPosition = 0;
463 mMarkerReached = false;
464 mUpdatePeriod = 0;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700465
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800466 if (!mActive) {
Jean-Michel Trivicd075942011-08-25 16:47:23 -0700467 mFlushed = true;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800468 mAudioTrack->flush();
469 // Release AudioTrack callback thread in case it was waiting for new buffers
470 // in AudioTrack::obtainBuffer()
471 mCblk->cv.signal();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800472 }
473}
474
475void AudioTrack::pause()
476{
Steve Block3856b092011-10-20 11:56:00 +0100477 ALOGV("pause");
Eric Laurentf5aafb22010-11-18 08:40:16 -0800478 AutoMutex lock(mLock);
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800479 if (mActive) {
480 mActive = false;
Eric Laurent192cbba2012-06-13 08:38:36 -0700481 mCblk->cv.signal();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800482 mAudioTrack->pause();
483 }
484}
485
486void AudioTrack::mute(bool e)
487{
488 mAudioTrack->mute(e);
489 mMuted = e;
490}
491
492bool AudioTrack::muted() const
493{
494 return mMuted;
495}
496
Eric Laurentbe916aa2010-06-01 23:49:17 -0700497status_t AudioTrack::setVolume(float left, float right)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800498{
Glenn Kastenf0c49502011-11-30 09:46:04 -0800499 if (left < 0.0f || left > 1.0f || right < 0.0f || right > 1.0f) {
Eric Laurentbe916aa2010-06-01 23:49:17 -0700500 return BAD_VALUE;
501 }
502
Eric Laurent1703cdf2011-03-07 14:52:59 -0800503 AutoMutex lock(mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800504 mVolume[LEFT] = left;
505 mVolume[RIGHT] = right;
506
Glenn Kasten83d86532012-01-17 14:39:34 -0800507 mCblk->setVolumeLR((uint32_t(uint16_t(right * 0x1000)) << 16) | uint16_t(left * 0x1000));
Eric Laurentbe916aa2010-06-01 23:49:17 -0700508
509 return NO_ERROR;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800510}
511
Glenn Kastena5224f32012-01-04 12:41:44 -0800512void AudioTrack::getVolume(float* left, float* right) const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800513{
Eric Laurentbe916aa2010-06-01 23:49:17 -0700514 if (left != NULL) {
515 *left = mVolume[LEFT];
516 }
517 if (right != NULL) {
518 *right = mVolume[RIGHT];
519 }
520}
521
Eric Laurent2beeb502010-07-16 07:43:46 -0700522status_t AudioTrack::setAuxEffectSendLevel(float level)
Eric Laurentbe916aa2010-06-01 23:49:17 -0700523{
Steve Block3856b092011-10-20 11:56:00 +0100524 ALOGV("setAuxEffectSendLevel(%f)", level);
Glenn Kasten05632a52012-01-03 14:22:33 -0800525 if (level < 0.0f || level > 1.0f) {
Eric Laurentbe916aa2010-06-01 23:49:17 -0700526 return BAD_VALUE;
527 }
Eric Laurent1703cdf2011-03-07 14:52:59 -0800528 AutoMutex lock(mLock);
Eric Laurentbe916aa2010-06-01 23:49:17 -0700529
530 mSendLevel = level;
531
Glenn Kasten05632a52012-01-03 14:22:33 -0800532 mCblk->setSendLevel(level);
Eric Laurentbe916aa2010-06-01 23:49:17 -0700533
534 return NO_ERROR;
535}
536
Glenn Kastena5224f32012-01-04 12:41:44 -0800537void AudioTrack::getAuxEffectSendLevel(float* level) const
Eric Laurentbe916aa2010-06-01 23:49:17 -0700538{
539 if (level != NULL) {
540 *level = mSendLevel;
541 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800542}
543
Eric Laurent57326622009-07-07 07:10:45 -0700544status_t AudioTrack::setSampleRate(int rate)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800545{
546 int afSamplingRate;
547
John Grossman4ff14ba2012-02-08 16:37:41 -0800548 if (mIsTimed) {
549 return INVALID_OPERATION;
550 }
551
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800552 if (AudioSystem::getOutputSamplingRate(&afSamplingRate, mStreamType) != NO_ERROR) {
Eric Laurent57326622009-07-07 07:10:45 -0700553 return NO_INIT;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800554 }
555 // Resampler implementation limits input sampling rate to 2 x output sampling rate.
Eric Laurent57326622009-07-07 07:10:45 -0700556 if (rate <= 0 || rate > afSamplingRate*2 ) return BAD_VALUE;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800557
Eric Laurent1703cdf2011-03-07 14:52:59 -0800558 AutoMutex lock(mLock);
Eric Laurent57326622009-07-07 07:10:45 -0700559 mCblk->sampleRate = rate;
560 return NO_ERROR;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800561}
562
Glenn Kastena5224f32012-01-04 12:41:44 -0800563uint32_t AudioTrack::getSampleRate() const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800564{
John Grossman4ff14ba2012-02-08 16:37:41 -0800565 if (mIsTimed) {
566 return INVALID_OPERATION;
567 }
568
Eric Laurent1703cdf2011-03-07 14:52:59 -0800569 AutoMutex lock(mLock);
Eric Laurent57326622009-07-07 07:10:45 -0700570 return mCblk->sampleRate;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800571}
572
573status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount)
574{
Eric Laurent1703cdf2011-03-07 14:52:59 -0800575 AutoMutex lock(mLock);
576 return setLoop_l(loopStart, loopEnd, loopCount);
577}
578
579// must be called with mLock held
580status_t AudioTrack::setLoop_l(uint32_t loopStart, uint32_t loopEnd, int loopCount)
581{
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800582 audio_track_cblk_t* cblk = mCblk;
583
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800584 Mutex::Autolock _l(cblk->lock);
585
586 if (loopCount == 0) {
587 cblk->loopStart = UINT_MAX;
588 cblk->loopEnd = UINT_MAX;
589 cblk->loopCount = 0;
590 mLoopCount = 0;
591 return NO_ERROR;
592 }
593
John Grossman4ff14ba2012-02-08 16:37:41 -0800594 if (mIsTimed) {
595 return INVALID_OPERATION;
596 }
597
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800598 if (loopStart >= loopEnd ||
Eric Laurent9b7d9502011-03-21 11:49:00 -0700599 loopEnd - loopStart > cblk->frameCount ||
600 cblk->server > loopStart) {
Glenn Kasten8af901c2012-11-01 11:11:38 -0700601 ALOGE("setLoop invalid value: loopStart %d, loopEnd %d, loopCount %d, framecount %d, "
602 "user %d", loopStart, loopEnd, loopCount, cblk->frameCount, cblk->user);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800603 return BAD_VALUE;
604 }
605
Eric Laurent9b7d9502011-03-21 11:49:00 -0700606 if ((mSharedBuffer != 0) && (loopEnd > cblk->frameCount)) {
Glenn Kasten8af901c2012-11-01 11:11:38 -0700607 ALOGE("setLoop invalid value: loop markers beyond data: loopStart %d, loopEnd %d, "
608 "framecount %d",
Eric Laurentd1b449a2010-05-14 03:26:45 -0700609 loopStart, loopEnd, cblk->frameCount);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800610 return BAD_VALUE;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700611 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800612
613 cblk->loopStart = loopStart;
614 cblk->loopEnd = loopEnd;
615 cblk->loopCount = loopCount;
616 mLoopCount = loopCount;
617
618 return NO_ERROR;
619}
620
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800621status_t AudioTrack::setMarkerPosition(uint32_t marker)
622{
Glenn Kastena0d68332012-01-27 16:47:15 -0800623 if (mCbf == NULL) return INVALID_OPERATION;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800624
625 mMarkerPosition = marker;
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -0700626 mMarkerReached = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800627
628 return NO_ERROR;
629}
630
Glenn Kastena5224f32012-01-04 12:41:44 -0800631status_t AudioTrack::getMarkerPosition(uint32_t *marker) const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800632{
Glenn Kastena0d68332012-01-27 16:47:15 -0800633 if (marker == NULL) return BAD_VALUE;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800634
635 *marker = mMarkerPosition;
636
637 return NO_ERROR;
638}
639
640status_t AudioTrack::setPositionUpdatePeriod(uint32_t updatePeriod)
641{
Glenn Kastena0d68332012-01-27 16:47:15 -0800642 if (mCbf == NULL) return INVALID_OPERATION;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800643
644 uint32_t curPosition;
645 getPosition(&curPosition);
646 mNewPosition = curPosition + updatePeriod;
647 mUpdatePeriod = updatePeriod;
648
649 return NO_ERROR;
650}
651
Glenn Kastena5224f32012-01-04 12:41:44 -0800652status_t AudioTrack::getPositionUpdatePeriod(uint32_t *updatePeriod) const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800653{
Glenn Kastena0d68332012-01-27 16:47:15 -0800654 if (updatePeriod == NULL) return BAD_VALUE;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800655
656 *updatePeriod = mUpdatePeriod;
657
658 return NO_ERROR;
659}
660
661status_t AudioTrack::setPosition(uint32_t position)
662{
John Grossman4ff14ba2012-02-08 16:37:41 -0800663 if (mIsTimed) return INVALID_OPERATION;
664
Eric Laurent1703cdf2011-03-07 14:52:59 -0800665 AutoMutex lock(mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800666
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800667 if (!stopped_l()) return INVALID_OPERATION;
668
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700669 audio_track_cblk_t* cblk = mCblk;
670 Mutex::Autolock _l(cblk->lock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800671
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700672 if (position > cblk->user) return BAD_VALUE;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800673
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700674 cblk->server = position;
675 android_atomic_or(CBLK_FORCEREADY, &cblk->flags);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700676
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800677 return NO_ERROR;
678}
679
680status_t AudioTrack::getPosition(uint32_t *position)
681{
Glenn Kastena0d68332012-01-27 16:47:15 -0800682 if (position == NULL) return BAD_VALUE;
Eric Laurent1703cdf2011-03-07 14:52:59 -0800683 AutoMutex lock(mLock);
Jean-Michel Trivicd075942011-08-25 16:47:23 -0700684 *position = mFlushed ? 0 : mCblk->server;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800685
686 return NO_ERROR;
687}
688
689status_t AudioTrack::reload()
690{
Eric Laurent1703cdf2011-03-07 14:52:59 -0800691 AutoMutex lock(mLock);
692
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800693 if (!stopped_l()) return INVALID_OPERATION;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700694
Eric Laurent1703cdf2011-03-07 14:52:59 -0800695 flush_l();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800696
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700697 audio_track_cblk_t* cblk = mCblk;
698 cblk->stepUser(cblk->frameCount);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800699
700 return NO_ERROR;
701}
702
Eric Laurentc2f1f072009-07-17 12:17:14 -0700703audio_io_handle_t AudioTrack::getOutput()
704{
Eric Laurent1703cdf2011-03-07 14:52:59 -0800705 AutoMutex lock(mLock);
706 return getOutput_l();
707}
708
709// must be called with mLock held
710audio_io_handle_t AudioTrack::getOutput_l()
711{
Glenn Kastenfff6d712012-01-12 16:38:12 -0800712 return AudioSystem::getOutput(mStreamType,
Glenn Kasten18868c52012-03-07 09:15:37 -0800713 mCblk->sampleRate, mFormat, mChannelMask, mFlags);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700714}
715
Glenn Kastena5224f32012-01-04 12:41:44 -0800716int AudioTrack::getSessionId() const
Eric Laurentbe916aa2010-06-01 23:49:17 -0700717{
718 return mSessionId;
719}
720
721status_t AudioTrack::attachAuxEffect(int effectId)
722{
Steve Block3856b092011-10-20 11:56:00 +0100723 ALOGV("attachAuxEffect(%d)", effectId);
Eric Laurent2beeb502010-07-16 07:43:46 -0700724 status_t status = mAudioTrack->attachAuxEffect(effectId);
725 if (status == NO_ERROR) {
726 mAuxEffectId = effectId;
727 }
728 return status;
Eric Laurentbe916aa2010-06-01 23:49:17 -0700729}
730
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800731// -------------------------------------------------------------------------
732
Eric Laurent1703cdf2011-03-07 14:52:59 -0800733// must be called with mLock held
734status_t AudioTrack::createTrack_l(
Glenn Kastenfff6d712012-01-12 16:38:12 -0800735 audio_stream_type_t streamType,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800736 uint32_t sampleRate,
Glenn Kastene1c39622012-01-04 09:36:37 -0800737 audio_format_t format,
Glenn Kasten28b76b32012-07-03 17:24:41 -0700738 audio_channel_mask_t channelMask,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800739 int frameCount,
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700740 audio_output_flags_t flags,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800741 const sp<IMemory>& sharedBuffer,
Glenn Kasten291f4d52012-03-19 12:16:56 -0700742 audio_io_handle_t output)
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800743{
744 status_t status;
745 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
746 if (audioFlinger == 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700747 ALOGE("Could not get audioflinger");
748 return NO_INIT;
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800749 }
750
Eric Laurentd1b449a2010-05-14 03:26:45 -0700751 uint32_t afLatency;
Eric Laurent1a9ed112012-03-20 18:36:01 -0700752 if (AudioSystem::getLatency(output, streamType, &afLatency) != NO_ERROR) {
Eric Laurentd1b449a2010-05-14 03:26:45 -0700753 return NO_INIT;
754 }
755
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700756 // Client decides whether the track is TIMED (see below), but can only express a preference
757 // for FAST. Server will perform additional tests.
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700758 if ((flags & AUDIO_OUTPUT_FLAG_FAST) && !(
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700759 // either of these use cases:
760 // use case 1: shared buffer
761 (sharedBuffer != 0) ||
762 // use case 2: callback handler
763 (mCbf != NULL))) {
Glenn Kasten3acbd052012-02-28 10:39:56 -0800764 ALOGW("AUDIO_OUTPUT_FLAG_FAST denied by client");
Glenn Kasten093000f2012-05-03 09:35:36 -0700765 // once denied, do not request again if IAudioTrack is re-created
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700766 flags = (audio_output_flags_t) (flags & ~AUDIO_OUTPUT_FLAG_FAST);
Glenn Kasten093000f2012-05-03 09:35:36 -0700767 mFlags = flags;
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700768 }
Glenn Kastene0fa4672012-04-24 14:35:14 -0700769 ALOGV("createTrack_l() output %d afLatency %d", output, afLatency);
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700770
Eric Laurentd1b449a2010-05-14 03:26:45 -0700771 mNotificationFramesAct = mNotificationFramesReq;
Glenn Kastene0fa4672012-04-24 14:35:14 -0700772
Dima Zavinfce7a472011-04-19 22:30:36 -0700773 if (!audio_is_linear_pcm(format)) {
Glenn Kastene0fa4672012-04-24 14:35:14 -0700774
Eric Laurentd1b449a2010-05-14 03:26:45 -0700775 if (sharedBuffer != 0) {
Glenn Kastene0fa4672012-04-24 14:35:14 -0700776 // Same comment as below about ignoring frameCount parameter for set()
Eric Laurentd1b449a2010-05-14 03:26:45 -0700777 frameCount = sharedBuffer->size();
Glenn Kastene0fa4672012-04-24 14:35:14 -0700778 } else if (frameCount == 0) {
779 int afFrameCount;
780 if (AudioSystem::getFrameCount(output, streamType, &afFrameCount) != NO_ERROR) {
781 return NO_INIT;
782 }
783 frameCount = afFrameCount;
Eric Laurentd1b449a2010-05-14 03:26:45 -0700784 }
Glenn Kastene0fa4672012-04-24 14:35:14 -0700785
786 } else if (sharedBuffer != 0) {
787
788 // Ensure that buffer alignment matches channelCount
789 int channelCount = popcount(channelMask);
790 // 8-bit data in shared memory is not currently supported by AudioFlinger
791 size_t alignment = /* format == AUDIO_FORMAT_PCM_8_BIT ? 1 : */ 2;
792 if (channelCount > 1) {
793 // More than 2 channels does not require stronger alignment than stereo
794 alignment <<= 1;
795 }
796 if (((uint32_t)sharedBuffer->pointer() & (alignment - 1)) != 0) {
797 ALOGE("Invalid buffer alignment: address %p, channelCount %d",
798 sharedBuffer->pointer(), channelCount);
799 return BAD_VALUE;
800 }
801
802 // When initializing a shared buffer AudioTrack via constructors,
803 // there's no frameCount parameter.
804 // But when initializing a shared buffer AudioTrack via set(),
805 // there _is_ a frameCount parameter. We silently ignore it.
806 frameCount = sharedBuffer->size()/channelCount/sizeof(int16_t);
807
808 } else if (!(flags & AUDIO_OUTPUT_FLAG_FAST)) {
809
810 // FIXME move these calculations and associated checks to server
811 int afSampleRate;
812 if (AudioSystem::getSamplingRate(output, streamType, &afSampleRate) != NO_ERROR) {
813 return NO_INIT;
814 }
815 int afFrameCount;
816 if (AudioSystem::getFrameCount(output, streamType, &afFrameCount) != NO_ERROR) {
817 return NO_INIT;
818 }
819
Eric Laurentd1b449a2010-05-14 03:26:45 -0700820 // Ensure that buffer depth covers at least audio hardware latency
821 uint32_t minBufCount = afLatency / ((1000 * afFrameCount)/afSampleRate);
822 if (minBufCount < 2) minBufCount = 2;
823
824 int minFrameCount = (afFrameCount*sampleRate*minBufCount)/afSampleRate;
Glenn Kasten3acbd052012-02-28 10:39:56 -0800825 ALOGV("minFrameCount: %d, afFrameCount=%d, minBufCount=%d, sampleRate=%d, afSampleRate=%d"
826 ", afLatency=%d",
827 minFrameCount, afFrameCount, minBufCount, sampleRate, afSampleRate, afLatency);
Glenn Kastene0fa4672012-04-24 14:35:14 -0700828
829 if (frameCount == 0) {
830 frameCount = minFrameCount;
831 }
832 if (mNotificationFramesAct == 0) {
833 mNotificationFramesAct = frameCount/2;
834 }
835 // Make sure that application is notified with sufficient margin
836 // before underrun
837 if (mNotificationFramesAct > (uint32_t)frameCount/2) {
838 mNotificationFramesAct = frameCount/2;
839 }
840 if (frameCount < minFrameCount) {
841 // not ALOGW because it happens all the time when playing key clicks over A2DP
842 ALOGV("Minimum buffer size corrected from %d to %d",
843 frameCount, minFrameCount);
844 frameCount = minFrameCount;
Glenn Kasten3acbd052012-02-28 10:39:56 -0800845 }
Eric Laurentd1b449a2010-05-14 03:26:45 -0700846
Glenn Kastene0fa4672012-04-24 14:35:14 -0700847 } else {
848 // For fast tracks, the frame count calculations and checks are done by server
Eric Laurentd1b449a2010-05-14 03:26:45 -0700849 }
850
Glenn Kastena075db42012-03-06 11:22:44 -0800851 IAudioFlinger::track_flags_t trackFlags = IAudioFlinger::TRACK_DEFAULT;
852 if (mIsTimed) {
853 trackFlags |= IAudioFlinger::TRACK_TIMED;
854 }
Glenn Kasten3acbd052012-02-28 10:39:56 -0800855
856 pid_t tid = -1;
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700857 if (flags & AUDIO_OUTPUT_FLAG_FAST) {
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700858 trackFlags |= IAudioFlinger::TRACK_FAST;
Glenn Kasten3acbd052012-02-28 10:39:56 -0800859 if (mAudioTrackThread != 0) {
860 tid = mAudioTrackThread->getTid();
861 }
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700862 }
863
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800864 sp<IAudioTrack> track = audioFlinger->createTrack(getpid(),
865 streamType,
866 sampleRate,
867 format,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700868 channelMask,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800869 frameCount,
Glenn Kastena075db42012-03-06 11:22:44 -0800870 trackFlags,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800871 sharedBuffer,
872 output,
Glenn Kasten3acbd052012-02-28 10:39:56 -0800873 tid,
Eric Laurentbe916aa2010-06-01 23:49:17 -0700874 &mSessionId,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800875 &status);
876
877 if (track == 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000878 ALOGE("AudioFlinger could not create track, status: %d", status);
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800879 return status;
880 }
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700881 sp<IMemory> iMem = track->getCblk();
882 if (iMem == 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000883 ALOGE("Could not get control block");
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800884 return NO_INIT;
885 }
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800886 mAudioTrack = track;
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700887 mCblkMemory = iMem;
888 audio_track_cblk_t* cblk = static_cast<audio_track_cblk_t*>(iMem->pointer());
889 mCblk = cblk;
890 // old has the previous value of cblk->flags before the "or" operation
891 int32_t old = android_atomic_or(CBLK_DIRECTION, &cblk->flags);
Glenn Kasten3acbd052012-02-28 10:39:56 -0800892 if (flags & AUDIO_OUTPUT_FLAG_FAST) {
893 if (old & CBLK_FAST) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700894 ALOGV("AUDIO_OUTPUT_FLAG_FAST successful; frameCount %u", cblk->frameCount);
Glenn Kasten3acbd052012-02-28 10:39:56 -0800895 } else {
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700896 ALOGV("AUDIO_OUTPUT_FLAG_FAST denied by server; frameCount %u", cblk->frameCount);
Glenn Kasten093000f2012-05-03 09:35:36 -0700897 // once denied, do not request again if IAudioTrack is re-created
898 flags = (audio_output_flags_t) (flags & ~AUDIO_OUTPUT_FLAG_FAST);
899 mFlags = flags;
Glenn Kasten3acbd052012-02-28 10:39:56 -0800900 }
Glenn Kastene0fa4672012-04-24 14:35:14 -0700901 if (sharedBuffer == 0) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700902 mNotificationFramesAct = cblk->frameCount/2;
Glenn Kastene0fa4672012-04-24 14:35:14 -0700903 }
Glenn Kasten3acbd052012-02-28 10:39:56 -0800904 }
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800905 if (sharedBuffer == 0) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700906 cblk->buffers = (char*)cblk + sizeof(audio_track_cblk_t);
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800907 } else {
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700908 cblk->buffers = sharedBuffer->pointer();
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700909 // Force buffer full condition as data is already present in shared memory
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700910 cblk->stepUser(cblk->frameCount);
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800911 }
912
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700913 cblk->setVolumeLR((uint32_t(uint16_t(mVolume[RIGHT] * 0x1000)) << 16) |
Glenn Kasten8af901c2012-11-01 11:11:38 -0700914 uint16_t(mVolume[LEFT] * 0x1000));
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700915 cblk->setSendLevel(mSendLevel);
Eric Laurent2beeb502010-07-16 07:43:46 -0700916 mAudioTrack->attachAuxEffect(mAuxEffectId);
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700917 cblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS;
918 cblk->waitTimeMs = 0;
Eric Laurentd1b449a2010-05-14 03:26:45 -0700919 mRemainingFrames = mNotificationFramesAct;
Glenn Kastene0fa4672012-04-24 14:35:14 -0700920 // FIXME don't believe this lie
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700921 mLatency = afLatency + (1000*cblk->frameCount) / sampleRate;
Glenn Kasten093000f2012-05-03 09:35:36 -0700922 // If IAudioTrack is re-created, don't let the requested frameCount
923 // decrease. This can confuse clients that cache frameCount().
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700924 if (cblk->frameCount > mFrameCount) {
925 mFrameCount = cblk->frameCount;
Glenn Kasten093000f2012-05-03 09:35:36 -0700926 }
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800927 return NO_ERROR;
928}
929
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800930status_t AudioTrack::obtainBuffer(Buffer* audioBuffer, int32_t waitCount)
931{
Eric Laurent1703cdf2011-03-07 14:52:59 -0800932 AutoMutex lock(mLock);
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800933 bool active;
Glenn Kastend0965dd2011-06-22 16:18:04 -0700934 status_t result = NO_ERROR;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800935 audio_track_cblk_t* cblk = mCblk;
936 uint32_t framesReq = audioBuffer->frameCount;
Eric Laurent1dd70b92009-04-21 07:56:33 -0700937 uint32_t waitTimeMs = (waitCount < 0) ? cblk->bufferTimeoutMs : WAIT_PERIOD_MS;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800938
939 audioBuffer->frameCount = 0;
940 audioBuffer->size = 0;
941
942 uint32_t framesAvail = cblk->framesAvailable();
943
Eric Laurent9b7d9502011-03-21 11:49:00 -0700944 cblk->lock.lock();
Glenn Kastend12b0332012-11-05 13:38:15 -0800945 if (cblk->flags & CBLK_INVALID) {
Eric Laurent9b7d9502011-03-21 11:49:00 -0700946 goto create_new_track;
947 }
948 cblk->lock.unlock();
949
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800950 if (framesAvail == 0) {
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800951 cblk->lock.lock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800952 goto start_loop_here;
953 while (framesAvail == 0) {
954 active = mActive;
Glenn Kastenf6b16782011-12-15 09:51:17 -0800955 if (CC_UNLIKELY(!active)) {
Steve Block3856b092011-10-20 11:56:00 +0100956 ALOGV("Not active and NO_MORE_BUFFERS");
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800957 cblk->lock.unlock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800958 return NO_MORE_BUFFERS;
959 }
Glenn Kastenf6b16782011-12-15 09:51:17 -0800960 if (CC_UNLIKELY(!waitCount)) {
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800961 cblk->lock.unlock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800962 return WOULD_BLOCK;
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800963 }
Glenn Kastend12b0332012-11-05 13:38:15 -0800964 if (!(cblk->flags & CBLK_INVALID)) {
Eric Laurent1703cdf2011-03-07 14:52:59 -0800965 mLock.unlock();
Eric Laurentd1b449a2010-05-14 03:26:45 -0700966 result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs));
Eric Laurentd1b449a2010-05-14 03:26:45 -0700967 cblk->lock.unlock();
Eric Laurent1703cdf2011-03-07 14:52:59 -0800968 mLock.lock();
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800969 if (!mActive) {
Eric Laurent1703cdf2011-03-07 14:52:59 -0800970 return status_t(STOPPED);
971 }
972 cblk->lock.lock();
973 }
974
Glenn Kastend12b0332012-11-05 13:38:15 -0800975 if (cblk->flags & CBLK_INVALID) {
Eric Laurentd1b449a2010-05-14 03:26:45 -0700976 goto create_new_track;
977 }
Glenn Kastenf6b16782011-12-15 09:51:17 -0800978 if (CC_UNLIKELY(result != NO_ERROR)) {
Eric Laurent1dd70b92009-04-21 07:56:33 -0700979 cblk->waitTimeMs += waitTimeMs;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800980 if (cblk->waitTimeMs >= cblk->bufferTimeoutMs) {
981 // timing out when a loop has been set and we have already written upto loop end
982 // is a normal condition: no need to wake AudioFlinger up.
983 if (cblk->user < cblk->loopEnd) {
Glenn Kasten8af901c2012-11-01 11:11:38 -0700984 ALOGW("obtainBuffer timed out (is the CPU pegged?) %p name=%#x user=%08x, "
985 "server=%08x", this, cblk->mName, cblk->user, cblk->server);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700986 //unlock cblk mutex before calling mAudioTrack->start() (see issue #1617140)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800987 cblk->lock.unlock();
Glenn Kasten3acbd052012-02-28 10:39:56 -0800988 result = mAudioTrack->start();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800989 cblk->lock.lock();
Eric Laurent1703cdf2011-03-07 14:52:59 -0800990 if (result == DEAD_OBJECT) {
Glenn Kastend12b0332012-11-05 13:38:15 -0800991 android_atomic_or(CBLK_INVALID, &cblk->flags);
Eric Laurent1703cdf2011-03-07 14:52:59 -0800992create_new_track:
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700993 audio_track_cblk_t* temp = cblk;
994 result = restoreTrack_l(temp, false);
995 cblk = temp;
Eric Laurent1703cdf2011-03-07 14:52:59 -0800996 }
997 if (result != NO_ERROR) {
Steve Block5ff1dd52012-01-05 23:22:43 +0000998 ALOGW("obtainBuffer create Track error %d", result);
Eric Laurent1703cdf2011-03-07 14:52:59 -0800999 cblk->lock.unlock();
1000 return result;
1001 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001002 }
1003 cblk->waitTimeMs = 0;
1004 }
Eric Laurentc2f1f072009-07-17 12:17:14 -07001005
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001006 if (--waitCount == 0) {
Eric Laurent34f1d8e2009-11-04 08:27:26 -08001007 cblk->lock.unlock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001008 return TIMED_OUT;
1009 }
1010 }
1011 // read the server count again
1012 start_loop_here:
1013 framesAvail = cblk->framesAvailable_l();
1014 }
Eric Laurent34f1d8e2009-11-04 08:27:26 -08001015 cblk->lock.unlock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001016 }
1017
1018 cblk->waitTimeMs = 0;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001019
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001020 if (framesReq > framesAvail) {
1021 framesReq = framesAvail;
1022 }
1023
1024 uint32_t u = cblk->user;
1025 uint32_t bufferEnd = cblk->userBase + cblk->frameCount;
1026
Marco Nelissena1472d92012-03-30 14:36:54 -07001027 if (framesReq > bufferEnd - u) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001028 framesReq = bufferEnd - u;
1029 }
1030
Eric Laurentc2f1f072009-07-17 12:17:14 -07001031 audioBuffer->flags = mMuted ? Buffer::MUTE : 0;
1032 audioBuffer->channelCount = mChannelCount;
1033 audioBuffer->frameCount = framesReq;
1034 audioBuffer->size = framesReq * cblk->frameSize;
Dima Zavinfce7a472011-04-19 22:30:36 -07001035 if (audio_is_linear_pcm(mFormat)) {
1036 audioBuffer->format = AUDIO_FORMAT_PCM_16_BIT;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001037 } else {
1038 audioBuffer->format = mFormat;
1039 }
1040 audioBuffer->raw = (int8_t *)cblk->buffer(u);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001041 active = mActive;
1042 return active ? status_t(NO_ERROR) : status_t(STOPPED);
1043}
1044
1045void AudioTrack::releaseBuffer(Buffer* audioBuffer)
1046{
Eric Laurent1703cdf2011-03-07 14:52:59 -08001047 AutoMutex lock(mLock);
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001048 audio_track_cblk_t* cblk = mCblk;
1049 cblk->stepUser(audioBuffer->frameCount);
Eric Laurentdf839842012-05-31 14:27:14 -07001050 if (audioBuffer->frameCount > 0) {
1051 // restart track if it was disabled by audioflinger due to previous underrun
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001052 if (mActive && (cblk->flags & CBLK_DISABLED)) {
1053 android_atomic_and(~CBLK_DISABLED, &cblk->flags);
1054 ALOGW("releaseBuffer() track %p name=%#x disabled, restarting", this, cblk->mName);
Eric Laurentdf839842012-05-31 14:27:14 -07001055 mAudioTrack->start();
1056 }
1057 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001058}
1059
1060// -------------------------------------------------------------------------
1061
1062ssize_t AudioTrack::write(const void* buffer, size_t userSize)
1063{
1064
1065 if (mSharedBuffer != 0) return INVALID_OPERATION;
John Grossman4ff14ba2012-02-08 16:37:41 -08001066 if (mIsTimed) return INVALID_OPERATION;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001067
1068 if (ssize_t(userSize) < 0) {
Glenn Kasten99e53b82012-01-19 08:59:58 -08001069 // Sanity-check: user is most-likely passing an error code, and it would
1070 // make the return value ambiguous (actualSize vs error).
Steve Block29357bc2012-01-06 19:20:56 +00001071 ALOGE("AudioTrack::write(buffer=%p, size=%u (%d)",
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001072 buffer, userSize, userSize);
1073 return BAD_VALUE;
1074 }
1075
Steve Block3856b092011-10-20 11:56:00 +01001076 ALOGV("write %p: %d bytes, mActive=%d", this, userSize, mActive);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001077
Eric Laurentdf839842012-05-31 14:27:14 -07001078 if (userSize == 0) {
1079 return 0;
1080 }
1081
Eric Laurent1703cdf2011-03-07 14:52:59 -08001082 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
1083 // while we are accessing the cblk
1084 mLock.lock();
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001085 sp<IAudioTrack> audioTrack = mAudioTrack;
1086 sp<IMemory> iMem = mCblkMemory;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001087 mLock.unlock();
1088
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001089 ssize_t written = 0;
1090 const int8_t *src = (const int8_t *)buffer;
1091 Buffer audioBuffer;
Glenn Kastenb9980652012-01-11 09:48:27 -08001092 size_t frameSz = frameSize();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001093
1094 do {
Eric Laurent33797ea2011-03-17 09:36:51 -07001095 audioBuffer.frameCount = userSize/frameSz;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001096
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001097 status_t err = obtainBuffer(&audioBuffer, -1);
1098 if (err < 0) {
1099 // out of buffers, return #bytes written
1100 if (err == status_t(NO_MORE_BUFFERS))
1101 break;
1102 return ssize_t(err);
1103 }
1104
1105 size_t toWrite;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001106
Eric Laurent0ca3cf92012-04-18 09:24:29 -07001107 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_OUTPUT_FLAG_DIRECT)) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001108 // Divide capacity by 2 to take expansion into account
1109 toWrite = audioBuffer.size>>1;
Glenn Kasten511754b2012-01-11 09:52:19 -08001110 memcpy_to_i16_from_u8(audioBuffer.i16, (const uint8_t *) src, toWrite);
Eric Laurent33025262009-08-04 10:42:26 -07001111 } else {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001112 toWrite = audioBuffer.size;
1113 memcpy(audioBuffer.i8, src, toWrite);
1114 src += toWrite;
1115 }
1116 userSize -= toWrite;
1117 written += toWrite;
1118
1119 releaseBuffer(&audioBuffer);
Eric Laurent33797ea2011-03-17 09:36:51 -07001120 } while (userSize >= frameSz);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001121
1122 return written;
1123}
1124
1125// -------------------------------------------------------------------------
1126
John Grossman4ff14ba2012-02-08 16:37:41 -08001127TimedAudioTrack::TimedAudioTrack() {
1128 mIsTimed = true;
1129}
1130
1131status_t TimedAudioTrack::allocateTimedBuffer(size_t size, sp<IMemory>* buffer)
1132{
1133 status_t result = UNKNOWN_ERROR;
1134
1135 // If the track is not invalid already, try to allocate a buffer. alloc
1136 // fails indicating that the server is dead, flag the track as invalid so
Glenn Kasten2662ac92012-07-30 10:59:30 -07001137 // we can attempt to restore in just a bit.
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001138 audio_track_cblk_t* cblk = mCblk;
1139 if (!(cblk->flags & CBLK_INVALID)) {
John Grossman4ff14ba2012-02-08 16:37:41 -08001140 result = mAudioTrack->allocateTimedBuffer(size, buffer);
1141 if (result == DEAD_OBJECT) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001142 android_atomic_or(CBLK_INVALID, &cblk->flags);
John Grossman4ff14ba2012-02-08 16:37:41 -08001143 }
1144 }
1145
1146 // If the track is invalid at this point, attempt to restore it. and try the
1147 // allocation one more time.
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001148 if (cblk->flags & CBLK_INVALID) {
1149 cblk->lock.lock();
1150 audio_track_cblk_t* temp = cblk;
1151 result = restoreTrack_l(temp, false);
1152 cblk = temp;
1153 cblk->lock.unlock();
John Grossman4ff14ba2012-02-08 16:37:41 -08001154
1155 if (result == OK)
1156 result = mAudioTrack->allocateTimedBuffer(size, buffer);
1157 }
1158
1159 return result;
1160}
1161
1162status_t TimedAudioTrack::queueTimedBuffer(const sp<IMemory>& buffer,
1163 int64_t pts)
1164{
Eric Laurentdf839842012-05-31 14:27:14 -07001165 status_t status = mAudioTrack->queueTimedBuffer(buffer, pts);
1166 {
1167 AutoMutex lock(mLock);
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001168 audio_track_cblk_t* cblk = mCblk;
Eric Laurentdf839842012-05-31 14:27:14 -07001169 // restart track if it was disabled by audioflinger due to previous underrun
1170 if (buffer->size() != 0 && status == NO_ERROR &&
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001171 mActive && (cblk->flags & CBLK_DISABLED)) {
1172 android_atomic_and(~CBLK_DISABLED, &cblk->flags);
Eric Laurentdf839842012-05-31 14:27:14 -07001173 ALOGW("queueTimedBuffer() track %p disabled, restarting", this);
1174 mAudioTrack->start();
1175 }
John Grossman4ff14ba2012-02-08 16:37:41 -08001176 }
Eric Laurentdf839842012-05-31 14:27:14 -07001177 return status;
John Grossman4ff14ba2012-02-08 16:37:41 -08001178}
1179
1180status_t TimedAudioTrack::setMediaTimeTransform(const LinearTransform& xform,
1181 TargetTimeline target)
1182{
1183 return mAudioTrack->setMediaTimeTransform(xform, target);
1184}
1185
1186// -------------------------------------------------------------------------
1187
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001188bool AudioTrack::processAudioBuffer(const sp<AudioTrackThread>& thread)
1189{
1190 Buffer audioBuffer;
1191 uint32_t frames;
1192 size_t writtenSize;
1193
Eric Laurent1703cdf2011-03-07 14:52:59 -08001194 mLock.lock();
1195 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
1196 // while we are accessing the cblk
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001197 sp<IAudioTrack> audioTrack = mAudioTrack;
1198 sp<IMemory> iMem = mCblkMemory;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001199 audio_track_cblk_t* cblk = mCblk;
Glenn Kasten9a2aaf92012-01-03 09:42:47 -08001200 bool active = mActive;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001201 mLock.unlock();
1202
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001203 // Manage underrun callback
Glenn Kasten9a2aaf92012-01-03 09:42:47 -08001204 if (active && (cblk->framesAvailable() == cblk->frameCount)) {
Steve Block3856b092011-10-20 11:56:00 +01001205 ALOGV("Underrun user: %x, server: %x, flags %04x", cblk->user, cblk->server, cblk->flags);
Glenn Kastend12b0332012-11-05 13:38:15 -08001206 if (!(android_atomic_or(CBLK_UNDERRUN, &cblk->flags) & CBLK_UNDERRUN)) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001207 mCbf(EVENT_UNDERRUN, mUserData, 0);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001208 if (cblk->server == cblk->frameCount) {
Eric Laurentc2f1f072009-07-17 12:17:14 -07001209 mCbf(EVENT_BUFFER_END, mUserData, 0);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001210 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001211 if (mSharedBuffer != 0) return false;
1212 }
1213 }
Eric Laurentc2f1f072009-07-17 12:17:14 -07001214
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001215 // Manage loop end callback
Eric Laurent1703cdf2011-03-07 14:52:59 -08001216 while (mLoopCount > cblk->loopCount) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001217 int loopCount = -1;
1218 mLoopCount--;
1219 if (mLoopCount >= 0) loopCount = mLoopCount;
1220
1221 mCbf(EVENT_LOOP_END, mUserData, (void *)&loopCount);
1222 }
1223
1224 // Manage marker callback
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -07001225 if (!mMarkerReached && (mMarkerPosition > 0)) {
Eric Laurent1703cdf2011-03-07 14:52:59 -08001226 if (cblk->server >= mMarkerPosition) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001227 mCbf(EVENT_MARKER, mUserData, (void *)&mMarkerPosition);
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -07001228 mMarkerReached = true;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001229 }
1230 }
1231
1232 // Manage new position callback
Eric Laurentc2f1f072009-07-17 12:17:14 -07001233 if (mUpdatePeriod > 0) {
Eric Laurent1703cdf2011-03-07 14:52:59 -08001234 while (cblk->server >= mNewPosition) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001235 mCbf(EVENT_NEW_POS, mUserData, (void *)&mNewPosition);
1236 mNewPosition += mUpdatePeriod;
1237 }
1238 }
1239
1240 // If Shared buffer is used, no data is requested from client.
1241 if (mSharedBuffer != 0) {
1242 frames = 0;
1243 } else {
1244 frames = mRemainingFrames;
1245 }
1246
Glenn Kasten99e53b82012-01-19 08:59:58 -08001247 // See description of waitCount parameter at declaration of obtainBuffer().
1248 // The logic below prevents us from being stuck below at obtainBuffer()
1249 // not being able to handle timed events (position, markers, loops).
Eric Laurent2267ba12011-09-07 11:13:23 -07001250 int32_t waitCount = -1;
1251 if (mUpdatePeriod || (!mMarkerReached && mMarkerPosition) || mLoopCount) {
1252 waitCount = 1;
1253 }
1254
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001255 do {
1256
1257 audioBuffer.frameCount = frames;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001258
Eric Laurent2267ba12011-09-07 11:13:23 -07001259 status_t err = obtainBuffer(&audioBuffer, waitCount);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001260 if (err < NO_ERROR) {
1261 if (err != TIMED_OUT) {
Glenn Kasten8af901c2012-11-01 11:11:38 -07001262 ALOGE_IF(err != status_t(NO_MORE_BUFFERS),
1263 "Error obtaining an audio buffer, giving up.");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001264 return false;
1265 }
1266 break;
1267 }
1268 if (err == status_t(STOPPED)) return false;
1269
1270 // Divide buffer size by 2 to take into account the expansion
1271 // due to 8 to 16 bit conversion: the callback must fill only half
1272 // of the destination buffer
Eric Laurent0ca3cf92012-04-18 09:24:29 -07001273 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_OUTPUT_FLAG_DIRECT)) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001274 audioBuffer.size >>= 1;
1275 }
1276
1277 size_t reqSize = audioBuffer.size;
1278 mCbf(EVENT_MORE_DATA, mUserData, &audioBuffer);
1279 writtenSize = audioBuffer.size;
1280
1281 // Sanity check on returned size
The Android Open Source Project8555d082009-03-05 14:34:35 -08001282 if (ssize_t(writtenSize) <= 0) {
1283 // The callback is done filling buffers
1284 // Keep this thread going to handle timed events and
1285 // still try to get more data in intervals of WAIT_PERIOD_MS
1286 // but don't just loop and block the CPU, so wait
1287 usleep(WAIT_PERIOD_MS*1000);
1288 break;
1289 }
Eric Laurentdf839842012-05-31 14:27:14 -07001290
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001291 if (writtenSize > reqSize) writtenSize = reqSize;
1292
Eric Laurent0ca3cf92012-04-18 09:24:29 -07001293 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_OUTPUT_FLAG_DIRECT)) {
Glenn Kasten511754b2012-01-11 09:52:19 -08001294 // 8 to 16 bit conversion, note that source and destination are the same address
1295 memcpy_to_i16_from_u8(audioBuffer.i16, (const uint8_t *) audioBuffer.i8, writtenSize);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001296 writtenSize <<= 1;
1297 }
1298
1299 audioBuffer.size = writtenSize;
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001300 // NOTE: cblk->frameSize is not equal to AudioTrack::frameSize() for
1301 // 8 bit PCM data: in this case, cblk->frameSize is based on a sample size of
Eric Laurentc2f1f072009-07-17 12:17:14 -07001302 // 16 bit.
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001303 audioBuffer.frameCount = writtenSize/cblk->frameSize;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001304
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001305 frames -= audioBuffer.frameCount;
1306
1307 releaseBuffer(&audioBuffer);
1308 }
1309 while (frames);
1310
1311 if (frames == 0) {
Eric Laurentd1b449a2010-05-14 03:26:45 -07001312 mRemainingFrames = mNotificationFramesAct;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001313 } else {
1314 mRemainingFrames = frames;
1315 }
1316 return true;
1317}
1318
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001319// must be called with mLock and refCblk.lock held. Callers must also hold strong references on
Eric Laurent1703cdf2011-03-07 14:52:59 -08001320// the IAudioTrack and IMemory in case they are recreated here.
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001321// If the IAudioTrack is successfully restored, the refCblk pointer is updated
1322// FIXME Don't depend on caller to hold strong references.
1323status_t AudioTrack::restoreTrack_l(audio_track_cblk_t*& refCblk, bool fromStart)
Eric Laurent1703cdf2011-03-07 14:52:59 -08001324{
1325 status_t result;
1326
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001327 audio_track_cblk_t* cblk = refCblk;
1328 audio_track_cblk_t* newCblk = cblk;
Glenn Kastend12b0332012-11-05 13:38:15 -08001329 if (!(android_atomic_or(CBLK_RESTORING, &cblk->flags) & CBLK_RESTORING)) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001330 ALOGW("dead IAudioTrack, creating a new one from %s TID %d",
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001331 fromStart ? "start()" : "obtainBuffer()", gettid());
Eric Laurent1703cdf2011-03-07 14:52:59 -08001332
Eric Laurent1703cdf2011-03-07 14:52:59 -08001333 // signal old cblk condition so that other threads waiting for available buffers stop
1334 // waiting now
1335 cblk->cv.broadcast();
1336 cblk->lock.unlock();
1337
Eric Laurent9f6530f2011-08-30 10:18:54 -07001338 // refresh the audio configuration cache in this process to make sure we get new
1339 // output parameters in getOutput_l() and createTrack_l()
1340 AudioSystem::clearAudioConfigCache();
1341
Eric Laurent1703cdf2011-03-07 14:52:59 -08001342 // if the new IAudioTrack is created, createTrack_l() will modify the
1343 // following member variables: mAudioTrack, mCblkMemory and mCblk.
1344 // It will also delete the strong references on previous IAudioTrack and IMemory
1345 result = createTrack_l(mStreamType,
1346 cblk->sampleRate,
1347 mFormat,
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -07001348 mChannelMask,
Eric Laurent1703cdf2011-03-07 14:52:59 -08001349 mFrameCount,
1350 mFlags,
1351 mSharedBuffer,
Glenn Kasten291f4d52012-03-19 12:16:56 -07001352 getOutput_l());
Eric Laurent1703cdf2011-03-07 14:52:59 -08001353
1354 if (result == NO_ERROR) {
Eric Laurent408b8dc2011-09-06 12:36:15 -07001355 uint32_t user = cblk->user;
1356 uint32_t server = cblk->server;
Eric Laurent9b7d9502011-03-21 11:49:00 -07001357 // restore write index and set other indexes to reflect empty buffer status
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001358 newCblk = mCblk;
1359 newCblk->user = user;
1360 newCblk->server = user;
1361 newCblk->userBase = user;
1362 newCblk->serverBase = user;
Eric Laurent9b7d9502011-03-21 11:49:00 -07001363 // restore loop: this is not guaranteed to succeed if new frame count is not
1364 // compatible with loop length
1365 setLoop_l(cblk->loopStart, cblk->loopEnd, cblk->loopCount);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001366 if (!fromStart) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001367 newCblk->bufferTimeoutMs = MAX_RUN_TIMEOUT_MS;
Eric Laurent408b8dc2011-09-06 12:36:15 -07001368 // Make sure that a client relying on callback events indicating underrun or
1369 // the actual amount of audio frames played (e.g SoundPool) receives them.
1370 if (mSharedBuffer == 0) {
1371 uint32_t frames = 0;
1372 if (user > server) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001373 frames = ((user - server) > newCblk->frameCount) ?
1374 newCblk->frameCount : (user - server);
1375 memset(newCblk->buffers, 0, frames * newCblk->frameSize);
Eric Laurent408b8dc2011-09-06 12:36:15 -07001376 }
1377 // restart playback even if buffer is not completely filled.
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001378 android_atomic_or(CBLK_FORCEREADY, &newCblk->flags);
Glenn Kastend12b0332012-11-05 13:38:15 -08001379 // stepUser() clears CBLK_UNDERRUN flag enabling underrun callbacks to
Eric Laurent408b8dc2011-09-06 12:36:15 -07001380 // the client
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001381 newCblk->stepUser(frames);
Eric Laurent408b8dc2011-09-06 12:36:15 -07001382 }
Eric Laurent1703cdf2011-03-07 14:52:59 -08001383 }
Eric Laurent29864602012-05-08 18:57:51 -07001384 if (mSharedBuffer != 0) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001385 newCblk->stepUser(newCblk->frameCount);
Eric Laurent29864602012-05-08 18:57:51 -07001386 }
Eric Laurent9b7d9502011-03-21 11:49:00 -07001387 if (mActive) {
Glenn Kasten3acbd052012-02-28 10:39:56 -08001388 result = mAudioTrack->start();
Steve Block5ff1dd52012-01-05 23:22:43 +00001389 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() start() failed status %d", result);
Eric Laurent9b7d9502011-03-21 11:49:00 -07001390 }
Eric Laurent1703cdf2011-03-07 14:52:59 -08001391 if (fromStart && result == NO_ERROR) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001392 mNewPosition = newCblk->server + mUpdatePeriod;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001393 }
1394 }
1395 if (result != NO_ERROR) {
Glenn Kastend12b0332012-11-05 13:38:15 -08001396 android_atomic_and(~CBLK_RESTORING, &cblk->flags);
Steve Block5ff1dd52012-01-05 23:22:43 +00001397 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() failed status %d", result);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001398 }
Eric Laurentcfe2ba62011-09-13 15:04:17 -07001399 mRestoreStatus = result;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001400 // signal old cblk condition for other threads waiting for restore completion
Glenn Kastend12b0332012-11-05 13:38:15 -08001401 android_atomic_or(CBLK_RESTORED, &cblk->flags);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001402 cblk->cv.broadcast();
Eric Laurent1703cdf2011-03-07 14:52:59 -08001403 } else {
Glenn Kasten36665ac2012-11-02 09:59:51 -07001404 bool haveLogged = false;
1405 for (;;) {
Glenn Kastend12b0332012-11-05 13:38:15 -08001406 if (cblk->flags & CBLK_RESTORED) {
Glenn Kasten36665ac2012-11-02 09:59:51 -07001407 ALOGW("dead IAudioTrack restored");
1408 result = mRestoreStatus;
1409 cblk->lock.unlock();
1410 break;
1411 }
1412 if (!haveLogged) {
1413 ALOGW("dead IAudioTrack, waiting for a new one");
1414 haveLogged = true;
1415 }
Eric Laurent1703cdf2011-03-07 14:52:59 -08001416 mLock.unlock();
1417 result = cblk->cv.waitRelative(cblk->lock, milliseconds(RESTORE_TIMEOUT_MS));
1418 cblk->lock.unlock();
1419 mLock.lock();
Glenn Kasten36665ac2012-11-02 09:59:51 -07001420 if (result != NO_ERROR) {
1421 ALOGW("timed out");
1422 break;
1423 }
1424 cblk->lock.lock();
Eric Laurent1703cdf2011-03-07 14:52:59 -08001425 }
Eric Laurent1703cdf2011-03-07 14:52:59 -08001426 }
Steve Block3856b092011-10-20 11:56:00 +01001427 ALOGV("restoreTrack_l() status %d mActive %d cblk %p, old cblk %p flags %08x old flags %08x",
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001428 result, mActive, newCblk, cblk, newCblk->flags, cblk->flags);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001429
1430 if (result == NO_ERROR) {
1431 // from now on we switch to the newly created cblk
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001432 refCblk = newCblk;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001433 }
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001434 newCblk->lock.lock();
Eric Laurent1703cdf2011-03-07 14:52:59 -08001435
Steve Block5ff1dd52012-01-05 23:22:43 +00001436 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() error %d TID %d", result, gettid());
Eric Laurent1703cdf2011-03-07 14:52:59 -08001437
1438 return result;
1439}
1440
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001441status_t AudioTrack::dump(int fd, const Vector<String16>& args) const
1442{
1443
1444 const size_t SIZE = 256;
1445 char buffer[SIZE];
1446 String8 result;
1447
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001448 audio_track_cblk_t* cblk = mCblk;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001449 result.append(" AudioTrack::dump\n");
Glenn Kasten8af901c2012-11-01 11:11:38 -07001450 snprintf(buffer, 255, " stream type(%d), left - right volume(%f, %f)\n", mStreamType,
1451 mVolume[0], mVolume[1]);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001452 result.append(buffer);
Glenn Kasten8af901c2012-11-01 11:11:38 -07001453 snprintf(buffer, 255, " format(%d), channel count(%d), frame count(%d)\n", mFormat,
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001454 mChannelCount, cblk->frameCount);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001455 result.append(buffer);
Glenn Kasten8af901c2012-11-01 11:11:38 -07001456 snprintf(buffer, 255, " sample rate(%d), status(%d), muted(%d)\n",
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001457 (cblk == 0) ? 0 : cblk->sampleRate, mStatus, mMuted);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001458 result.append(buffer);
1459 snprintf(buffer, 255, " active(%d), latency (%d)\n", mActive, mLatency);
1460 result.append(buffer);
1461 ::write(fd, result.string(), result.size());
1462 return NO_ERROR;
1463}
1464
1465// =========================================================================
1466
1467AudioTrack::AudioTrackThread::AudioTrackThread(AudioTrack& receiver, bool bCanCallJava)
Glenn Kasten3acbd052012-02-28 10:39:56 -08001468 : Thread(bCanCallJava), mReceiver(receiver), mPaused(true)
1469{
1470}
1471
1472AudioTrack::AudioTrackThread::~AudioTrackThread()
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001473{
1474}
1475
1476bool AudioTrack::AudioTrackThread::threadLoop()
1477{
Glenn Kasten3acbd052012-02-28 10:39:56 -08001478 {
1479 AutoMutex _l(mMyLock);
1480 if (mPaused) {
1481 mMyCond.wait(mMyLock);
1482 // caller will check for exitPending()
1483 return true;
1484 }
1485 }
Glenn Kastenca8b2802012-04-23 13:58:16 -07001486 if (!mReceiver.processAudioBuffer(this)) {
1487 pause();
1488 }
1489 return true;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001490}
1491
Glenn Kasten3acbd052012-02-28 10:39:56 -08001492void AudioTrack::AudioTrackThread::requestExit()
1493{
1494 // must be in this order to avoid a race condition
1495 Thread::requestExit();
Glenn Kastenf4022f92012-05-02 10:34:59 -07001496 resume();
Glenn Kasten3acbd052012-02-28 10:39:56 -08001497}
1498
1499void AudioTrack::AudioTrackThread::pause()
1500{
1501 AutoMutex _l(mMyLock);
1502 mPaused = true;
1503}
1504
1505void AudioTrack::AudioTrackThread::resume()
1506{
1507 AutoMutex _l(mMyLock);
1508 if (mPaused) {
1509 mPaused = false;
1510 mMyCond.signal();
1511 }
1512}
1513
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001514// =========================================================================
1515
Eric Laurent38ccae22011-03-28 18:37:07 -07001516
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001517audio_track_cblk_t::audio_track_cblk_t()
Mathias Agopian54b1a052010-03-19 16:14:13 -07001518 : lock(Mutex::SHARED), cv(Condition::SHARED), user(0), server(0),
Glenn Kastena0d68332012-01-27 16:47:15 -08001519 userBase(0), serverBase(0), buffers(NULL), frameCount(0),
Glenn Kasten83d86532012-01-17 14:39:34 -08001520 loopStart(UINT_MAX), loopEnd(UINT_MAX), loopCount(0), mVolumeLR(0x10001000),
Glenn Kasten05632a52012-01-03 14:22:33 -08001521 mSendLevel(0), flags(0)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001522{
1523}
1524
1525uint32_t audio_track_cblk_t::stepUser(uint32_t frameCount)
1526{
Marco Nelissena1472d92012-03-30 14:36:54 -07001527 ALOGV("stepuser %08x %08x %d", user, server, frameCount);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001528
Marco Nelissena1472d92012-03-30 14:36:54 -07001529 uint32_t u = user;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001530 u += frameCount;
1531 // Ensure that user is never ahead of server for AudioRecord
Glenn Kastend12b0332012-11-05 13:38:15 -08001532 if (flags & CBLK_DIRECTION) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001533 // If stepServer() has been called once, switch to normal obtainBuffer() timeout period
1534 if (bufferTimeoutMs == MAX_STARTUP_TIMEOUT_MS-1) {
1535 bufferTimeoutMs = MAX_RUN_TIMEOUT_MS;
1536 }
Glenn Kasten90548972011-12-13 11:45:07 -08001537 } else if (u > server) {
Marco Nelissena1472d92012-03-30 14:36:54 -07001538 ALOGW("stepUser occurred after track reset");
Glenn Kasten90548972011-12-13 11:45:07 -08001539 u = server;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001540 }
1541
Marco Nelissena1472d92012-03-30 14:36:54 -07001542 uint32_t fc = this->frameCount;
1543 if (u >= fc) {
1544 // common case, user didn't just wrap
1545 if (u - fc >= userBase ) {
1546 userBase += fc;
1547 }
1548 } else if (u >= userBase + fc) {
1549 // user just wrapped
1550 userBase += fc;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001551 }
1552
Glenn Kasten90548972011-12-13 11:45:07 -08001553 user = u;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001554
1555 // Clear flow control error condition as new data has been written/read to/from buffer.
Glenn Kastend12b0332012-11-05 13:38:15 -08001556 if (flags & CBLK_UNDERRUN) {
1557 android_atomic_and(~CBLK_UNDERRUN, &flags);
Eric Laurent33797ea2011-03-17 09:36:51 -07001558 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001559
1560 return u;
1561}
1562
1563bool audio_track_cblk_t::stepServer(uint32_t frameCount)
1564{
Marco Nelissena1472d92012-03-30 14:36:54 -07001565 ALOGV("stepserver %08x %08x %d", user, server, frameCount);
1566
Eric Laurent38ccae22011-03-28 18:37:07 -07001567 if (!tryLock()) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001568 ALOGW("stepServer() could not lock cblk");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001569 return false;
1570 }
1571
Glenn Kasten90548972011-12-13 11:45:07 -08001572 uint32_t s = server;
Marco Nelissena1472d92012-03-30 14:36:54 -07001573 bool flushed = (s == user);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001574
1575 s += frameCount;
Glenn Kastend12b0332012-11-05 13:38:15 -08001576 if (flags & CBLK_DIRECTION) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001577 // Mark that we have read the first buffer so that next time stepUser() is called
1578 // we switch to normal obtainBuffer() timeout period
1579 if (bufferTimeoutMs == MAX_STARTUP_TIMEOUT_MS) {
Eric Laurent34f1d8e2009-11-04 08:27:26 -08001580 bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS - 1;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001581 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001582 // It is possible that we receive a flush()
1583 // while the mixer is processing a block: in this case,
1584 // stepServer() is called After the flush() has reset u & s and
1585 // we have s > u
Marco Nelissena1472d92012-03-30 14:36:54 -07001586 if (flushed) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001587 ALOGW("stepServer occurred after track reset");
Glenn Kasten90548972011-12-13 11:45:07 -08001588 s = user;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001589 }
1590 }
1591
1592 if (s >= loopEnd) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001593 ALOGW_IF(s > loopEnd, "stepServer: s %u > loopEnd %u", s, loopEnd);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001594 s = loopStart;
1595 if (--loopCount == 0) {
1596 loopEnd = UINT_MAX;
1597 loopStart = UINT_MAX;
1598 }
1599 }
Marco Nelissena1472d92012-03-30 14:36:54 -07001600
1601 uint32_t fc = this->frameCount;
1602 if (s >= fc) {
1603 // common case, server didn't just wrap
1604 if (s - fc >= serverBase ) {
1605 serverBase += fc;
1606 }
1607 } else if (s >= serverBase + fc) {
1608 // server just wrapped
1609 serverBase += fc;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001610 }
1611
Glenn Kasten90548972011-12-13 11:45:07 -08001612 server = s;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001613
Glenn Kastend12b0332012-11-05 13:38:15 -08001614 if (!(flags & CBLK_INVALID)) {
Eric Laurent1703cdf2011-03-07 14:52:59 -08001615 cv.signal();
1616 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001617 lock.unlock();
1618 return true;
1619}
1620
1621void* audio_track_cblk_t::buffer(uint32_t offset) const
1622{
Glenn Kasten90548972011-12-13 11:45:07 -08001623 return (int8_t *)buffers + (offset - userBase) * frameSize;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001624}
1625
1626uint32_t audio_track_cblk_t::framesAvailable()
1627{
1628 Mutex::Autolock _l(lock);
1629 return framesAvailable_l();
1630}
1631
1632uint32_t audio_track_cblk_t::framesAvailable_l()
1633{
Glenn Kasten90548972011-12-13 11:45:07 -08001634 uint32_t u = user;
1635 uint32_t s = server;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001636
Glenn Kastend12b0332012-11-05 13:38:15 -08001637 if (flags & CBLK_DIRECTION) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001638 uint32_t limit = (s < loopStart) ? s : loopStart;
1639 return limit + frameCount - u;
1640 } else {
1641 return frameCount + u - s;
1642 }
1643}
1644
1645uint32_t audio_track_cblk_t::framesReady()
1646{
Glenn Kasten90548972011-12-13 11:45:07 -08001647 uint32_t u = user;
1648 uint32_t s = server;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001649
Glenn Kastend12b0332012-11-05 13:38:15 -08001650 if (flags & CBLK_DIRECTION) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001651 if (u < loopEnd) {
1652 return u - s;
1653 } else {
Eric Laurent38ccae22011-03-28 18:37:07 -07001654 // do not block on mutex shared with client on AudioFlinger side
1655 if (!tryLock()) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001656 ALOGW("framesReady() could not lock cblk");
Eric Laurent38ccae22011-03-28 18:37:07 -07001657 return 0;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001658 }
Eric Laurent38ccae22011-03-28 18:37:07 -07001659 uint32_t frames = UINT_MAX;
1660 if (loopCount >= 0) {
1661 frames = (loopEnd - loopStart)*loopCount + u - s;
1662 }
1663 lock.unlock();
1664 return frames;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001665 }
1666 } else {
1667 return s - u;
1668 }
1669}
1670
Eric Laurent38ccae22011-03-28 18:37:07 -07001671bool audio_track_cblk_t::tryLock()
1672{
1673 // the code below simulates lock-with-timeout
1674 // we MUST do this to protect the AudioFlinger server
1675 // as this lock is shared with the client.
1676 status_t err;
1677
1678 err = lock.tryLock();
1679 if (err == -EBUSY) { // just wait a bit
1680 usleep(1000);
1681 err = lock.tryLock();
1682 }
1683 if (err != NO_ERROR) {
1684 // probably, the client just died.
1685 return false;
1686 }
1687 return true;
1688}
1689
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001690// -------------------------------------------------------------------------
1691
1692}; // namespace android