blob: 7eeb4f8d0313f58b0edef32f28cb22e101a06fea [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(
Glenn Kasten7da35f22012-11-14 12:54:39 -080053 size_t* 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 Kastena2049222012-06-22 17:21:07 -070057 if (frameCount == NULL) {
58 return BAD_VALUE;
59 }
Glenn Kasten04cd0182012-06-25 11:49:27 -070060
61 // default to 0 in case of error
62 *frameCount = 0;
63
Glenn Kastene0fa4672012-04-24 14:35:14 -070064 // FIXME merge with similar code in createTrack_l(), except we're missing
65 // some information here that is available in createTrack_l():
66 // audio_io_handle_t output
67 // audio_format_t format
68 // audio_channel_mask_t channelMask
69 // audio_output_flags_t flags
Glenn Kasten1127d652012-11-14 08:44:39 -080070 uint32_t afSampleRate;
Chia-chi Yeh33005a92010-06-16 06:33:13 +080071 if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) {
72 return NO_INIT;
73 }
Glenn Kasten7da35f22012-11-14 12:54:39 -080074 size_t afFrameCount;
Chia-chi Yeh33005a92010-06-16 06:33:13 +080075 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
76 return NO_INIT;
77 }
78 uint32_t afLatency;
79 if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) {
80 return NO_INIT;
81 }
82
83 // Ensure that buffer depth covers at least audio hardware latency
84 uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
85 if (minBufCount < 2) minBufCount = 2;
86
87 *frameCount = (sampleRate == 0) ? afFrameCount * minBufCount :
Glenn Kastene53b9ea2012-03-12 16:29:55 -070088 afFrameCount * minBufCount * sampleRate / afSampleRate;
Glenn Kasten3acbd052012-02-28 10:39:56 -080089 ALOGV("getMinFrameCount=%d: afFrameCount=%d, minBufCount=%d, afSampleRate=%d, afLatency=%d",
90 *frameCount, afFrameCount, minBufCount, afSampleRate, afLatency);
Chia-chi Yeh33005a92010-06-16 06:33:13 +080091 return NO_ERROR;
92}
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -080093
94// ---------------------------------------------------------------------------
95
96AudioTrack::AudioTrack()
Glenn Kasten87913512011-06-22 16:15:25 -070097 : mStatus(NO_INIT),
John Grossman4ff14ba2012-02-08 16:37:41 -080098 mIsTimed(false),
99 mPreviousPriority(ANDROID_PRIORITY_NORMAL),
Glenn Kasten552f2742012-12-04 12:22:46 -0800100 mPreviousSchedulingGroup(SP_DEFAULT),
101 mProxy(NULL)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800102{
103}
104
105AudioTrack::AudioTrack(
Glenn Kastenfff6d712012-01-12 16:38:12 -0800106 audio_stream_type_t streamType,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800107 uint32_t sampleRate,
Glenn Kastene1c39622012-01-04 09:36:37 -0800108 audio_format_t format,
Glenn Kasten28b76b32012-07-03 17:24:41 -0700109 audio_channel_mask_t channelMask,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800110 int frameCount,
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700111 audio_output_flags_t flags,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800112 callback_t cbf,
113 void* user,
Eric Laurentbe916aa2010-06-01 23:49:17 -0700114 int notificationFrames,
115 int sessionId)
Glenn Kasten87913512011-06-22 16:15:25 -0700116 : mStatus(NO_INIT),
John Grossman4ff14ba2012-02-08 16:37:41 -0800117 mIsTimed(false),
118 mPreviousPriority(ANDROID_PRIORITY_NORMAL),
Glenn Kasten552f2742012-12-04 12:22:46 -0800119 mPreviousSchedulingGroup(SP_DEFAULT),
120 mProxy(NULL)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800121{
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700122 mStatus = set(streamType, sampleRate, format, channelMask,
Eric Laurenta514bdb2010-06-21 09:27:30 -0700123 frameCount, flags, cbf, user, notificationFrames,
Glenn Kasten17a736c2012-02-14 08:52:15 -0800124 0 /*sharedBuffer*/, false /*threadCanCallJava*/, sessionId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800125}
126
Andreas Huberc8139852012-01-18 10:51:55 -0800127AudioTrack::AudioTrack(
Glenn Kastenfff6d712012-01-12 16:38:12 -0800128 audio_stream_type_t streamType,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800129 uint32_t sampleRate,
Glenn Kastene1c39622012-01-04 09:36:37 -0800130 audio_format_t format,
Glenn Kasten28b76b32012-07-03 17:24:41 -0700131 audio_channel_mask_t channelMask,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800132 const sp<IMemory>& sharedBuffer,
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700133 audio_output_flags_t flags,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800134 callback_t cbf,
135 void* user,
Eric Laurentbe916aa2010-06-01 23:49:17 -0700136 int notificationFrames,
137 int sessionId)
Glenn Kasten87913512011-06-22 16:15:25 -0700138 : mStatus(NO_INIT),
John Grossman4ff14ba2012-02-08 16:37:41 -0800139 mIsTimed(false),
140 mPreviousPriority(ANDROID_PRIORITY_NORMAL),
Glenn Kasten552f2742012-12-04 12:22:46 -0800141 mPreviousSchedulingGroup(SP_DEFAULT),
142 mProxy(NULL)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800143{
Glenn Kasten8f7453f2012-11-30 15:00:36 -0800144 if (sharedBuffer == 0) {
145 ALOGE("sharedBuffer must be non-0");
146 mStatus = BAD_VALUE;
147 return;
148 }
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700149 mStatus = set(streamType, sampleRate, format, channelMask,
Glenn Kasten17a736c2012-02-14 08:52:15 -0800150 0 /*frameCount*/, flags, cbf, user, notificationFrames,
151 sharedBuffer, false /*threadCanCallJava*/, sessionId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800152}
153
154AudioTrack::~AudioTrack()
155{
Steve Block3856b092011-10-20 11:56:00 +0100156 ALOGV_IF(mSharedBuffer != 0, "Destructor sharedBuffer: %p", mSharedBuffer->pointer());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800157
158 if (mStatus == NO_ERROR) {
159 // Make sure that callback function exits in the case where
160 // it is looping on buffer full condition in obtainBuffer().
161 // Otherwise the callback thread will never exit.
162 stop();
163 if (mAudioTrackThread != 0) {
Glenn Kasten3acbd052012-02-28 10:39:56 -0800164 mAudioTrackThread->requestExit(); // see comment in AudioTrack.h
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800165 mAudioTrackThread->requestExitAndWait();
166 mAudioTrackThread.clear();
167 }
168 mAudioTrack.clear();
169 IPCThreadState::self()->flushCommands();
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700170 AudioSystem::releaseAudioSessionId(mSessionId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800171 }
Glenn Kasten552f2742012-12-04 12:22:46 -0800172 delete mProxy;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800173}
174
175status_t AudioTrack::set(
Glenn Kastenfff6d712012-01-12 16:38:12 -0800176 audio_stream_type_t streamType,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800177 uint32_t sampleRate,
Glenn Kastene1c39622012-01-04 09:36:37 -0800178 audio_format_t format,
Glenn Kasten28b76b32012-07-03 17:24:41 -0700179 audio_channel_mask_t channelMask,
Glenn Kasten7da35f22012-11-14 12:54:39 -0800180 int frameCountInt,
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700181 audio_output_flags_t flags,
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800182 callback_t cbf,
183 void* user,
184 int notificationFrames,
185 const sp<IMemory>& sharedBuffer,
Eric Laurentbe916aa2010-06-01 23:49:17 -0700186 bool threadCanCallJava,
187 int sessionId)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800188{
Glenn Kasten7da35f22012-11-14 12:54:39 -0800189 // FIXME "int" here is legacy and will be replaced by size_t later
190 if (frameCountInt < 0) {
191 ALOGE("Invalid frame count %d", frameCountInt);
192 return BAD_VALUE;
193 }
194 size_t frameCount = frameCountInt;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800195
Glenn Kasten8af901c2012-11-01 11:11:38 -0700196 ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(),
197 sharedBuffer->size());
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800198
Glenn Kasten7da35f22012-11-14 12:54:39 -0800199 ALOGV("set() streamType %d frameCount %u flags %04x", streamType, frameCount, flags);
Eric Laurent1a9ed112012-03-20 18:36:01 -0700200
Eric Laurent1703cdf2011-03-07 14:52:59 -0800201 AutoMutex lock(mLock);
Eric Laurent1dd70b92009-04-21 07:56:33 -0700202 if (mAudioTrack != 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000203 ALOGE("Track already in use");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800204 return INVALID_OPERATION;
205 }
206
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800207 // handle default values first.
Dima Zavinfce7a472011-04-19 22:30:36 -0700208 if (streamType == AUDIO_STREAM_DEFAULT) {
209 streamType = AUDIO_STREAM_MUSIC;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800210 }
Glenn Kastenea7939a2012-03-14 12:56:26 -0700211
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800212 if (sampleRate == 0) {
Glenn Kasten1127d652012-11-14 08:44:39 -0800213 uint32_t afSampleRate;
Glenn Kastene0fa4672012-04-24 14:35:14 -0700214 if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) {
215 return NO_INIT;
216 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800217 sampleRate = afSampleRate;
218 }
Glenn Kasten552f2742012-12-04 12:22:46 -0800219 mSampleRate = sampleRate;
Glenn Kastenea7939a2012-03-14 12:56:26 -0700220
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800221 // these below should probably come from the audioFlinger too...
Glenn Kastene1c39622012-01-04 09:36:37 -0800222 if (format == AUDIO_FORMAT_DEFAULT) {
Dima Zavinfce7a472011-04-19 22:30:36 -0700223 format = AUDIO_FORMAT_PCM_16_BIT;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800224 }
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700225 if (channelMask == 0) {
226 channelMask = AUDIO_CHANNEL_OUT_STEREO;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800227 }
228
229 // validate parameters
Dima Zavinfce7a472011-04-19 22:30:36 -0700230 if (!audio_is_valid_format(format)) {
Steve Block29357bc2012-01-06 19:20:56 +0000231 ALOGE("Invalid format");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800232 return BAD_VALUE;
233 }
Eric Laurentc2f1f072009-07-17 12:17:14 -0700234
Glenn Kastene0fa4672012-04-24 14:35:14 -0700235 // AudioFlinger does not currently support 8-bit data in shared memory
236 if (format == AUDIO_FORMAT_PCM_8_BIT && sharedBuffer != 0) {
237 ALOGE("8-bit data in shared memory is not supported");
238 return BAD_VALUE;
239 }
240
Eric Laurentc2f1f072009-07-17 12:17:14 -0700241 // force direct flag if format is not linear PCM
Dima Zavinfce7a472011-04-19 22:30:36 -0700242 if (!audio_is_linear_pcm(format)) {
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700243 flags = (audio_output_flags_t)
Glenn Kasten3acbd052012-02-28 10:39:56 -0800244 // FIXME why can't we allow direct AND fast?
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700245 ((flags | AUDIO_OUTPUT_FLAG_DIRECT) & ~AUDIO_OUTPUT_FLAG_FAST);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700246 }
Eric Laurent1948eb32012-04-13 16:50:19 -0700247 // only allow deep buffering for music stream type
248 if (streamType != AUDIO_STREAM_MUSIC) {
249 flags = (audio_output_flags_t)(flags &~AUDIO_OUTPUT_FLAG_DEEP_BUFFER);
250 }
Eric Laurentc2f1f072009-07-17 12:17:14 -0700251
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700252 if (!audio_is_output_channel(channelMask)) {
Glenn Kasten28b76b32012-07-03 17:24:41 -0700253 ALOGE("Invalid channel mask %#x", channelMask);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700254 return BAD_VALUE;
255 }
Glenn Kastenc45128a2012-11-14 12:47:55 -0800256 mChannelMask = channelMask;
Jean-Michel Trivi0d255b22011-05-24 15:53:33 -0700257 uint32_t channelCount = popcount(channelMask);
Glenn Kastenc45128a2012-11-14 12:47:55 -0800258 mChannelCount = channelCount;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700259
Glenn Kasten552f2742012-12-04 12:22:46 -0800260 if (audio_is_linear_pcm(format)) {
261 mFrameSize = channelCount * audio_bytes_per_sample(format);
262 mFrameSizeAF = channelCount * sizeof(int16_t);
263 } else {
264 mFrameSize = sizeof(uint8_t);
265 mFrameSizeAF = sizeof(uint8_t);
266 }
267
Dima Zavinfce7a472011-04-19 22:30:36 -0700268 audio_io_handle_t output = AudioSystem::getOutput(
Glenn Kastenfff6d712012-01-12 16:38:12 -0800269 streamType,
Glenn Kastene1c39622012-01-04 09:36:37 -0800270 sampleRate, format, channelMask,
Glenn Kasten18868c52012-03-07 09:15:37 -0800271 flags);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700272
273 if (output == 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000274 ALOGE("Could not get audio output for stream type %d", streamType);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800275 return BAD_VALUE;
276 }
277
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800278 mVolume[LEFT] = 1.0f;
279 mVolume[RIGHT] = 1.0f;
Glenn Kasten05632a52012-01-03 14:22:33 -0800280 mSendLevel = 0.0f;
Eric Laurentd1b449a2010-05-14 03:26:45 -0700281 mFrameCount = frameCount;
Glenn Kastend7101432012-11-14 13:42:25 -0800282 mReqFrameCount = frameCount;
Eric Laurentd1b449a2010-05-14 03:26:45 -0700283 mNotificationFramesReq = notificationFrames;
Eric Laurentbe916aa2010-06-01 23:49:17 -0700284 mSessionId = sessionId;
Eric Laurent2beeb502010-07-16 07:43:46 -0700285 mAuxEffectId = 0;
Glenn Kasten093000f2012-05-03 09:35:36 -0700286 mFlags = flags;
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700287 mCbf = cbf;
Eric Laurentbe916aa2010-06-01 23:49:17 -0700288
Glenn Kastena997e7a2012-08-07 09:44:19 -0700289 if (cbf != NULL) {
Eric Laurentef6be0b2012-09-13 11:18:23 -0700290 mAudioTrackThread = new AudioTrackThread(*this, threadCanCallJava);
Glenn Kastena997e7a2012-08-07 09:44:19 -0700291 mAudioTrackThread->run("AudioTrack", ANDROID_PRIORITY_AUDIO, 0 /*stack*/);
292 }
293
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800294 // create the IAudioTrack
Eric Laurent1703cdf2011-03-07 14:52:59 -0800295 status_t status = createTrack_l(streamType,
296 sampleRate,
Glenn Kastene1c39622012-01-04 09:36:37 -0800297 format,
Eric Laurent1703cdf2011-03-07 14:52:59 -0800298 frameCount,
299 flags,
300 sharedBuffer,
Glenn Kasten291f4d52012-03-19 12:16:56 -0700301 output);
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800302
Glenn Kastena997e7a2012-08-07 09:44:19 -0700303 if (status != NO_ERROR) {
304 if (mAudioTrackThread != 0) {
305 mAudioTrackThread->requestExit();
306 mAudioTrackThread.clear();
307 }
308 return status;
Glenn Kasten5d464eb2012-06-22 17:19:53 -0700309 }
310
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800311 mStatus = NO_ERROR;
312
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800313 mStreamType = streamType;
Glenn Kastene1c39622012-01-04 09:36:37 -0800314 mFormat = format;
Glenn Kasten5aab59a2012-11-12 07:58:20 -0800315
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800316 mSharedBuffer = sharedBuffer;
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800317 mActive = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800318 mUserData = user;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800319 mLoopCount = 0;
320 mMarkerPosition = 0;
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -0700321 mMarkerReached = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800322 mNewPosition = 0;
323 mUpdatePeriod = 0;
Jean-Michel Trivicd075942011-08-25 16:47:23 -0700324 mFlushed = false;
Marco Nelissen3a34bef2011-08-02 13:33:41 -0700325 AudioSystem::acquireAudioSessionId(mSessionId);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800326 return NO_ERROR;
327}
328
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800329// -------------------------------------------------------------------------
330
331void AudioTrack::start()
332{
333 sp<AudioTrackThread> t = mAudioTrackThread;
334
Steve Block3856b092011-10-20 11:56:00 +0100335 ALOGV("start %p", this);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800336
Eric Laurentf5aafb22010-11-18 08:40:16 -0800337 AutoMutex lock(mLock);
Eric Laurent1703cdf2011-03-07 14:52:59 -0800338 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
339 // while we are accessing the cblk
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700340 sp<IAudioTrack> audioTrack = mAudioTrack;
341 sp<IMemory> iMem = mCblkMemory;
Eric Laurent1703cdf2011-03-07 14:52:59 -0800342 audio_track_cblk_t* cblk = mCblk;
343
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800344 if (!mActive) {
Jean-Michel Trivicd075942011-08-25 16:47:23 -0700345 mFlushed = false;
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800346 mActive = true;
Eric Laurent1703cdf2011-03-07 14:52:59 -0800347 mNewPosition = cblk->server + mUpdatePeriod;
Eric Laurent33797ea2011-03-17 09:36:51 -0700348 cblk->lock.lock();
Eric Laurent1703cdf2011-03-07 14:52:59 -0800349 cblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS;
350 cblk->waitTimeMs = 0;
Glenn Kastend12b0332012-11-05 13:38:15 -0800351 android_atomic_and(~CBLK_DISABLED, &cblk->flags);
Eric Laurent2b584242009-11-09 23:32:22 -0800352 if (t != 0) {
Glenn Kasten3acbd052012-02-28 10:39:56 -0800353 t->resume();
Eric Laurent2b584242009-11-09 23:32:22 -0800354 } else {
Glenn Kasten87913512011-06-22 16:15:25 -0700355 mPreviousPriority = getpriority(PRIO_PROCESS, 0);
Glenn Kastena6364332012-04-19 09:35:04 -0700356 get_sched_policy(0, &mPreviousSchedulingGroup);
Glenn Kasten87913512011-06-22 16:15:25 -0700357 androidSetThreadPriority(0, ANDROID_PRIORITY_AUDIO);
Eric Laurent2b584242009-11-09 23:32:22 -0800358 }
359
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700360 ALOGV("start %p before lock cblk %p", this, cblk);
Glenn Kastend3a9ff42012-06-21 12:11:38 -0700361 status_t status = NO_ERROR;
Glenn Kastend12b0332012-11-05 13:38:15 -0800362 if (!(cblk->flags & CBLK_INVALID)) {
Eric Laurent1703cdf2011-03-07 14:52:59 -0800363 cblk->lock.unlock();
Glenn Kasten3acbd052012-02-28 10:39:56 -0800364 ALOGV("mAudioTrack->start()");
365 status = mAudioTrack->start();
Eric Laurent1703cdf2011-03-07 14:52:59 -0800366 cblk->lock.lock();
367 if (status == DEAD_OBJECT) {
Glenn Kastend12b0332012-11-05 13:38:15 -0800368 android_atomic_or(CBLK_INVALID, &cblk->flags);
Eric Laurent6100d2d2009-11-19 09:00:56 -0800369 }
Eric Laurent2b584242009-11-09 23:32:22 -0800370 }
Glenn Kastend12b0332012-11-05 13:38:15 -0800371 if (cblk->flags & CBLK_INVALID) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700372 audio_track_cblk_t* temp = cblk;
Glenn Kasten020f79f2012-11-07 14:03:00 -0800373 status = restoreTrack_l(temp, true /*fromStart*/);
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700374 cblk = temp;
Eric Laurent1703cdf2011-03-07 14:52:59 -0800375 }
376 cblk->lock.unlock();
Eric Laurent2b584242009-11-09 23:32:22 -0800377 if (status != NO_ERROR) {
Steve Block3856b092011-10-20 11:56:00 +0100378 ALOGV("start() failed");
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800379 mActive = false;
Eric Laurent2b584242009-11-09 23:32:22 -0800380 if (t != 0) {
Glenn Kasten3acbd052012-02-28 10:39:56 -0800381 t->pause();
Eric Laurent2b584242009-11-09 23:32:22 -0800382 } else {
Glenn Kasten87913512011-06-22 16:15:25 -0700383 setpriority(PRIO_PROCESS, 0, mPreviousPriority);
Glenn Kastena6364332012-04-19 09:35:04 -0700384 set_sched_policy(0, mPreviousSchedulingGroup);
Eric Laurent2b584242009-11-09 23:32:22 -0800385 }
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800386 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800387 }
388
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800389}
390
391void AudioTrack::stop()
392{
393 sp<AudioTrackThread> t = mAudioTrackThread;
394
Steve Block3856b092011-10-20 11:56:00 +0100395 ALOGV("stop %p", this);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800396
Eric Laurentf5aafb22010-11-18 08:40:16 -0800397 AutoMutex lock(mLock);
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800398 if (mActive) {
399 mActive = false;
Eric Laurent1dd70b92009-04-21 07:56:33 -0700400 mCblk->cv.signal();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800401 mAudioTrack->stop();
402 // Cancel loops (If we are in the middle of a loop, playback
403 // would not stop until loopCount reaches 0).
Eric Laurent1703cdf2011-03-07 14:52:59 -0800404 setLoop_l(0, 0, 0);
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -0700405 // the playback head position will reset to 0, so if a marker is set, we need
406 // to activate it again
407 mMarkerReached = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800408 // Force flush if a shared buffer is used otherwise audioflinger
409 // will not stop before end of buffer is reached.
Glenn Kastenec7dcac2012-11-30 13:41:12 -0800410 // It may be needed to make sure that we stop playback, likely in case looping is on.
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800411 if (mSharedBuffer != 0) {
Eric Laurent1703cdf2011-03-07 14:52:59 -0800412 flush_l();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800413 }
414 if (t != 0) {
Glenn Kasten3acbd052012-02-28 10:39:56 -0800415 t->pause();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800416 } else {
Glenn Kasten87913512011-06-22 16:15:25 -0700417 setpriority(PRIO_PROCESS, 0, mPreviousPriority);
Glenn Kastena6364332012-04-19 09:35:04 -0700418 set_sched_policy(0, mPreviousSchedulingGroup);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800419 }
420 }
421
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800422}
423
424bool AudioTrack::stopped() const
425{
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800426 AutoMutex lock(mLock);
427 return stopped_l();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800428}
429
430void AudioTrack::flush()
431{
Eric Laurent1703cdf2011-03-07 14:52:59 -0800432 AutoMutex lock(mLock);
Glenn Kastenec7dcac2012-11-30 13:41:12 -0800433 if (!mActive && mSharedBuffer == 0) {
434 flush_l();
435 }
Eric Laurent1703cdf2011-03-07 14:52:59 -0800436}
437
Eric Laurent1703cdf2011-03-07 14:52:59 -0800438void AudioTrack::flush_l()
439{
Steve Block3856b092011-10-20 11:56:00 +0100440 ALOGV("flush");
Glenn Kastenec7dcac2012-11-30 13:41:12 -0800441 ALOG_ASSERT(!mActive);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700442
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -0700443 // clear playback marker and periodic update counter
444 mMarkerPosition = 0;
445 mMarkerReached = false;
446 mUpdatePeriod = 0;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700447
Glenn Kastenec7dcac2012-11-30 13:41:12 -0800448 mFlushed = true;
449 mAudioTrack->flush();
450 // Release AudioTrack callback thread in case it was waiting for new buffers
451 // in AudioTrack::obtainBuffer()
452 mCblk->cv.signal();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800453}
454
455void AudioTrack::pause()
456{
Steve Block3856b092011-10-20 11:56:00 +0100457 ALOGV("pause");
Eric Laurentf5aafb22010-11-18 08:40:16 -0800458 AutoMutex lock(mLock);
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800459 if (mActive) {
460 mActive = false;
Eric Laurent192cbba2012-06-13 08:38:36 -0700461 mCblk->cv.signal();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800462 mAudioTrack->pause();
463 }
464}
465
Eric Laurentbe916aa2010-06-01 23:49:17 -0700466status_t AudioTrack::setVolume(float left, float right)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800467{
Glenn Kasten552f2742012-12-04 12:22:46 -0800468 if (mStatus != NO_ERROR) {
469 return mStatus;
470 }
471 ALOG_ASSERT(mProxy != NULL);
472
Glenn Kastenf0c49502011-11-30 09:46:04 -0800473 if (left < 0.0f || left > 1.0f || right < 0.0f || right > 1.0f) {
Eric Laurentbe916aa2010-06-01 23:49:17 -0700474 return BAD_VALUE;
475 }
476
Eric Laurent1703cdf2011-03-07 14:52:59 -0800477 AutoMutex lock(mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800478 mVolume[LEFT] = left;
479 mVolume[RIGHT] = right;
480
Glenn Kasten552f2742012-12-04 12:22:46 -0800481 mProxy->setVolumeLR((uint32_t(uint16_t(right * 0x1000)) << 16) | uint16_t(left * 0x1000));
Eric Laurentbe916aa2010-06-01 23:49:17 -0700482
483 return NO_ERROR;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800484}
485
Glenn Kasten164d6532012-02-27 16:21:04 -0800486status_t AudioTrack::setVolume(float volume)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800487{
Glenn Kasten164d6532012-02-27 16:21:04 -0800488 return setVolume(volume, volume);
Eric Laurentbe916aa2010-06-01 23:49:17 -0700489}
490
Eric Laurent2beeb502010-07-16 07:43:46 -0700491status_t AudioTrack::setAuxEffectSendLevel(float level)
Eric Laurentbe916aa2010-06-01 23:49:17 -0700492{
Steve Block3856b092011-10-20 11:56:00 +0100493 ALOGV("setAuxEffectSendLevel(%f)", level);
Glenn Kasten552f2742012-12-04 12:22:46 -0800494
495 if (mStatus != NO_ERROR) {
496 return mStatus;
497 }
498 ALOG_ASSERT(mProxy != NULL);
499
Glenn Kasten05632a52012-01-03 14:22:33 -0800500 if (level < 0.0f || level > 1.0f) {
Eric Laurentbe916aa2010-06-01 23:49:17 -0700501 return BAD_VALUE;
502 }
Eric Laurent1703cdf2011-03-07 14:52:59 -0800503 AutoMutex lock(mLock);
Eric Laurentbe916aa2010-06-01 23:49:17 -0700504
505 mSendLevel = level;
Glenn Kasten552f2742012-12-04 12:22:46 -0800506 mProxy->setSendLevel(level);
Eric Laurentbe916aa2010-06-01 23:49:17 -0700507
508 return NO_ERROR;
509}
510
Glenn Kastena5224f32012-01-04 12:41:44 -0800511void AudioTrack::getAuxEffectSendLevel(float* level) const
Eric Laurentbe916aa2010-06-01 23:49:17 -0700512{
513 if (level != NULL) {
514 *level = mSendLevel;
515 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800516}
517
Glenn Kasten1127d652012-11-14 08:44:39 -0800518status_t AudioTrack::setSampleRate(uint32_t rate)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800519{
Glenn Kasten1127d652012-11-14 08:44:39 -0800520 uint32_t afSamplingRate;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800521
John Grossman4ff14ba2012-02-08 16:37:41 -0800522 if (mIsTimed) {
523 return INVALID_OPERATION;
524 }
525
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800526 if (AudioSystem::getOutputSamplingRate(&afSamplingRate, mStreamType) != NO_ERROR) {
Eric Laurent57326622009-07-07 07:10:45 -0700527 return NO_INIT;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800528 }
529 // Resampler implementation limits input sampling rate to 2 x output sampling rate.
Glenn Kastena2049222012-06-22 17:21:07 -0700530 if (rate == 0 || rate > afSamplingRate*2 ) {
531 return BAD_VALUE;
532 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800533
Eric Laurent1703cdf2011-03-07 14:52:59 -0800534 AutoMutex lock(mLock);
Glenn Kasten552f2742012-12-04 12:22:46 -0800535 mSampleRate = rate;
536 mProxy->setSampleRate(rate);
537
Eric Laurent57326622009-07-07 07:10:45 -0700538 return NO_ERROR;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800539}
540
Glenn Kastena5224f32012-01-04 12:41:44 -0800541uint32_t AudioTrack::getSampleRate() const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800542{
John Grossman4ff14ba2012-02-08 16:37:41 -0800543 if (mIsTimed) {
Glenn Kasten1127d652012-11-14 08:44:39 -0800544 return 0;
John Grossman4ff14ba2012-02-08 16:37:41 -0800545 }
546
Eric Laurent1703cdf2011-03-07 14:52:59 -0800547 AutoMutex lock(mLock);
Glenn Kasten552f2742012-12-04 12:22:46 -0800548 return mSampleRate;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800549}
550
551status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount)
552{
Eric Laurent1703cdf2011-03-07 14:52:59 -0800553 AutoMutex lock(mLock);
554 return setLoop_l(loopStart, loopEnd, loopCount);
555}
556
557// must be called with mLock held
558status_t AudioTrack::setLoop_l(uint32_t loopStart, uint32_t loopEnd, int loopCount)
559{
Glenn Kasten8f7453f2012-11-30 15:00:36 -0800560 if (mSharedBuffer == 0 || mIsTimed) {
561 return INVALID_OPERATION;
562 }
563
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800564 audio_track_cblk_t* cblk = mCblk;
565
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800566 Mutex::Autolock _l(cblk->lock);
567
568 if (loopCount == 0) {
569 cblk->loopStart = UINT_MAX;
570 cblk->loopEnd = UINT_MAX;
571 cblk->loopCount = 0;
572 mLoopCount = 0;
573 return NO_ERROR;
574 }
575
576 if (loopStart >= loopEnd ||
Glenn Kastend7101432012-11-14 13:42:25 -0800577 loopEnd - loopStart > mFrameCount ||
Eric Laurent9b7d9502011-03-21 11:49:00 -0700578 cblk->server > loopStart) {
Glenn Kasten8af901c2012-11-01 11:11:38 -0700579 ALOGE("setLoop invalid value: loopStart %d, loopEnd %d, loopCount %d, framecount %d, "
Glenn Kastend7101432012-11-14 13:42:25 -0800580 "user %d", loopStart, loopEnd, loopCount, mFrameCount, cblk->user);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800581 return BAD_VALUE;
582 }
583
Glenn Kastend7101432012-11-14 13:42:25 -0800584 if ((mSharedBuffer != 0) && (loopEnd > mFrameCount)) {
Glenn Kasten8af901c2012-11-01 11:11:38 -0700585 ALOGE("setLoop invalid value: loop markers beyond data: loopStart %d, loopEnd %d, "
586 "framecount %d",
Glenn Kastend7101432012-11-14 13:42:25 -0800587 loopStart, loopEnd, mFrameCount);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800588 return BAD_VALUE;
Eric Laurentc2f1f072009-07-17 12:17:14 -0700589 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800590
591 cblk->loopStart = loopStart;
592 cblk->loopEnd = loopEnd;
593 cblk->loopCount = loopCount;
594 mLoopCount = loopCount;
595
596 return NO_ERROR;
597}
598
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800599status_t AudioTrack::setMarkerPosition(uint32_t marker)
600{
Glenn Kastena2049222012-06-22 17:21:07 -0700601 if (mCbf == NULL) {
602 return INVALID_OPERATION;
603 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800604
605 mMarkerPosition = marker;
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -0700606 mMarkerReached = false;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800607
608 return NO_ERROR;
609}
610
Glenn Kastena5224f32012-01-04 12:41:44 -0800611status_t AudioTrack::getMarkerPosition(uint32_t *marker) const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800612{
Glenn Kastena2049222012-06-22 17:21:07 -0700613 if (marker == NULL) {
614 return BAD_VALUE;
615 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800616
617 *marker = mMarkerPosition;
618
619 return NO_ERROR;
620}
621
622status_t AudioTrack::setPositionUpdatePeriod(uint32_t updatePeriod)
623{
Glenn Kastena2049222012-06-22 17:21:07 -0700624 if (mCbf == NULL) {
625 return INVALID_OPERATION;
626 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800627
628 uint32_t curPosition;
629 getPosition(&curPosition);
630 mNewPosition = curPosition + updatePeriod;
631 mUpdatePeriod = updatePeriod;
632
633 return NO_ERROR;
634}
635
Glenn Kastena5224f32012-01-04 12:41:44 -0800636status_t AudioTrack::getPositionUpdatePeriod(uint32_t *updatePeriod) const
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800637{
Glenn Kastena2049222012-06-22 17:21:07 -0700638 if (updatePeriod == NULL) {
639 return BAD_VALUE;
640 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800641
642 *updatePeriod = mUpdatePeriod;
643
644 return NO_ERROR;
645}
646
647status_t AudioTrack::setPosition(uint32_t position)
648{
Glenn Kasten8f7453f2012-11-30 15:00:36 -0800649 if (mSharedBuffer == 0 || mIsTimed) {
Glenn Kastena2049222012-06-22 17:21:07 -0700650 return INVALID_OPERATION;
651 }
John Grossman4ff14ba2012-02-08 16:37:41 -0800652
Eric Laurent1703cdf2011-03-07 14:52:59 -0800653 AutoMutex lock(mLock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800654
Glenn Kastena2049222012-06-22 17:21:07 -0700655 if (!stopped_l()) {
656 return INVALID_OPERATION;
657 }
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800658
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700659 audio_track_cblk_t* cblk = mCblk;
660 Mutex::Autolock _l(cblk->lock);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800661
Glenn Kastena2049222012-06-22 17:21:07 -0700662 if (position > cblk->user) {
663 return BAD_VALUE;
664 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800665
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700666 cblk->server = position;
667 android_atomic_or(CBLK_FORCEREADY, &cblk->flags);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700668
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800669 return NO_ERROR;
670}
671
672status_t AudioTrack::getPosition(uint32_t *position)
673{
Glenn Kastena2049222012-06-22 17:21:07 -0700674 if (position == NULL) {
675 return BAD_VALUE;
676 }
Eric Laurent1703cdf2011-03-07 14:52:59 -0800677 AutoMutex lock(mLock);
Jean-Michel Trivicd075942011-08-25 16:47:23 -0700678 *position = mFlushed ? 0 : mCblk->server;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800679
680 return NO_ERROR;
681}
682
683status_t AudioTrack::reload()
684{
Glenn Kasten552f2742012-12-04 12:22:46 -0800685 if (mStatus != NO_ERROR) {
686 return mStatus;
687 }
688 ALOG_ASSERT(mProxy != NULL);
689
Glenn Kasten8f7453f2012-11-30 15:00:36 -0800690 if (mSharedBuffer == 0 || mIsTimed) {
691 return INVALID_OPERATION;
692 }
693
Eric Laurent1703cdf2011-03-07 14:52:59 -0800694 AutoMutex lock(mLock);
695
Glenn Kastena2049222012-06-22 17:21:07 -0700696 if (!stopped_l()) {
697 return INVALID_OPERATION;
698 }
Eric Laurentc2f1f072009-07-17 12:17:14 -0700699
Eric Laurent1703cdf2011-03-07 14:52:59 -0800700 flush_l();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800701
Glenn Kasten552f2742012-12-04 12:22:46 -0800702 (void) mProxy->stepUser(mFrameCount);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800703
704 return NO_ERROR;
705}
706
Eric Laurentc2f1f072009-07-17 12:17:14 -0700707audio_io_handle_t AudioTrack::getOutput()
708{
Eric Laurent1703cdf2011-03-07 14:52:59 -0800709 AutoMutex lock(mLock);
710 return getOutput_l();
711}
712
713// must be called with mLock held
714audio_io_handle_t AudioTrack::getOutput_l()
715{
Glenn Kastenfff6d712012-01-12 16:38:12 -0800716 return AudioSystem::getOutput(mStreamType,
Glenn Kasten552f2742012-12-04 12:22:46 -0800717 mSampleRate, mFormat, mChannelMask, mFlags);
Eric Laurentc2f1f072009-07-17 12:17:14 -0700718}
719
Eric Laurentbe916aa2010-06-01 23:49:17 -0700720status_t AudioTrack::attachAuxEffect(int effectId)
721{
Steve Block3856b092011-10-20 11:56:00 +0100722 ALOGV("attachAuxEffect(%d)", effectId);
Eric Laurent2beeb502010-07-16 07:43:46 -0700723 status_t status = mAudioTrack->attachAuxEffect(effectId);
724 if (status == NO_ERROR) {
725 mAuxEffectId = effectId;
726 }
727 return status;
Eric Laurentbe916aa2010-06-01 23:49:17 -0700728}
729
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800730// -------------------------------------------------------------------------
731
Eric Laurent1703cdf2011-03-07 14:52:59 -0800732// must be called with mLock held
733status_t AudioTrack::createTrack_l(
Glenn Kastenfff6d712012-01-12 16:38:12 -0800734 audio_stream_type_t streamType,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800735 uint32_t sampleRate,
Glenn Kastene1c39622012-01-04 09:36:37 -0800736 audio_format_t format,
Glenn Kasten7da35f22012-11-14 12:54:39 -0800737 size_t frameCount,
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700738 audio_output_flags_t flags,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800739 const sp<IMemory>& sharedBuffer,
Glenn Kasten291f4d52012-03-19 12:16:56 -0700740 audio_io_handle_t output)
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800741{
742 status_t status;
743 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
744 if (audioFlinger == 0) {
Glenn Kastene53b9ea2012-03-12 16:29:55 -0700745 ALOGE("Could not get audioflinger");
746 return NO_INIT;
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800747 }
748
Eric Laurentd1b449a2010-05-14 03:26:45 -0700749 uint32_t afLatency;
Eric Laurent1a9ed112012-03-20 18:36:01 -0700750 if (AudioSystem::getLatency(output, streamType, &afLatency) != NO_ERROR) {
Eric Laurentd1b449a2010-05-14 03:26:45 -0700751 return NO_INIT;
752 }
753
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700754 // Client decides whether the track is TIMED (see below), but can only express a preference
755 // for FAST. Server will perform additional tests.
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700756 if ((flags & AUDIO_OUTPUT_FLAG_FAST) && !(
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700757 // either of these use cases:
758 // use case 1: shared buffer
759 (sharedBuffer != 0) ||
760 // use case 2: callback handler
761 (mCbf != NULL))) {
Glenn Kasten3acbd052012-02-28 10:39:56 -0800762 ALOGW("AUDIO_OUTPUT_FLAG_FAST denied by client");
Glenn Kasten093000f2012-05-03 09:35:36 -0700763 // once denied, do not request again if IAudioTrack is re-created
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700764 flags = (audio_output_flags_t) (flags & ~AUDIO_OUTPUT_FLAG_FAST);
Glenn Kasten093000f2012-05-03 09:35:36 -0700765 mFlags = flags;
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700766 }
Glenn Kastene0fa4672012-04-24 14:35:14 -0700767 ALOGV("createTrack_l() output %d afLatency %d", output, afLatency);
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700768
Eric Laurentd1b449a2010-05-14 03:26:45 -0700769 mNotificationFramesAct = mNotificationFramesReq;
Glenn Kastene0fa4672012-04-24 14:35:14 -0700770
Dima Zavinfce7a472011-04-19 22:30:36 -0700771 if (!audio_is_linear_pcm(format)) {
Glenn Kastene0fa4672012-04-24 14:35:14 -0700772
Eric Laurentd1b449a2010-05-14 03:26:45 -0700773 if (sharedBuffer != 0) {
Glenn Kastene0fa4672012-04-24 14:35:14 -0700774 // Same comment as below about ignoring frameCount parameter for set()
Eric Laurentd1b449a2010-05-14 03:26:45 -0700775 frameCount = sharedBuffer->size();
Glenn Kastene0fa4672012-04-24 14:35:14 -0700776 } else if (frameCount == 0) {
Glenn Kasten7da35f22012-11-14 12:54:39 -0800777 size_t afFrameCount;
Glenn Kastene0fa4672012-04-24 14:35:14 -0700778 if (AudioSystem::getFrameCount(output, streamType, &afFrameCount) != NO_ERROR) {
779 return NO_INIT;
780 }
781 frameCount = afFrameCount;
Eric Laurentd1b449a2010-05-14 03:26:45 -0700782 }
Glenn Kastene0fa4672012-04-24 14:35:14 -0700783
784 } else if (sharedBuffer != 0) {
785
Glenn Kastenc45128a2012-11-14 12:47:55 -0800786 // Ensure that buffer alignment matches channel count
Glenn Kastene0fa4672012-04-24 14:35:14 -0700787 // 8-bit data in shared memory is not currently supported by AudioFlinger
788 size_t alignment = /* format == AUDIO_FORMAT_PCM_8_BIT ? 1 : */ 2;
Glenn Kastenc45128a2012-11-14 12:47:55 -0800789 if (mChannelCount > 1) {
Glenn Kastene0fa4672012-04-24 14:35:14 -0700790 // More than 2 channels does not require stronger alignment than stereo
791 alignment <<= 1;
792 }
Glenn Kastenc45128a2012-11-14 12:47:55 -0800793 if (((size_t)sharedBuffer->pointer() & (alignment - 1)) != 0) {
794 ALOGE("Invalid buffer alignment: address %p, channel count %u",
795 sharedBuffer->pointer(), mChannelCount);
Glenn Kastene0fa4672012-04-24 14:35:14 -0700796 return BAD_VALUE;
797 }
798
799 // When initializing a shared buffer AudioTrack via constructors,
800 // there's no frameCount parameter.
801 // But when initializing a shared buffer AudioTrack via set(),
802 // there _is_ a frameCount parameter. We silently ignore it.
Glenn Kastenc45128a2012-11-14 12:47:55 -0800803 frameCount = sharedBuffer->size()/mChannelCount/sizeof(int16_t);
Glenn Kastene0fa4672012-04-24 14:35:14 -0700804
805 } else if (!(flags & AUDIO_OUTPUT_FLAG_FAST)) {
806
807 // FIXME move these calculations and associated checks to server
Glenn Kasten1127d652012-11-14 08:44:39 -0800808 uint32_t afSampleRate;
Glenn Kastene0fa4672012-04-24 14:35:14 -0700809 if (AudioSystem::getSamplingRate(output, streamType, &afSampleRate) != NO_ERROR) {
810 return NO_INIT;
811 }
Glenn Kasten7da35f22012-11-14 12:54:39 -0800812 size_t afFrameCount;
Glenn Kastene0fa4672012-04-24 14:35:14 -0700813 if (AudioSystem::getFrameCount(output, streamType, &afFrameCount) != NO_ERROR) {
814 return NO_INIT;
815 }
816
Eric Laurentd1b449a2010-05-14 03:26:45 -0700817 // Ensure that buffer depth covers at least audio hardware latency
818 uint32_t minBufCount = afLatency / ((1000 * afFrameCount)/afSampleRate);
819 if (minBufCount < 2) minBufCount = 2;
820
Glenn Kasten7da35f22012-11-14 12:54:39 -0800821 size_t minFrameCount = (afFrameCount*sampleRate*minBufCount)/afSampleRate;
822 ALOGV("minFrameCount: %u, afFrameCount=%d, minBufCount=%d, sampleRate=%u, afSampleRate=%u"
Glenn Kasten3acbd052012-02-28 10:39:56 -0800823 ", afLatency=%d",
824 minFrameCount, afFrameCount, minBufCount, sampleRate, afSampleRate, afLatency);
Glenn Kastene0fa4672012-04-24 14:35:14 -0700825
826 if (frameCount == 0) {
827 frameCount = minFrameCount;
828 }
829 if (mNotificationFramesAct == 0) {
830 mNotificationFramesAct = frameCount/2;
831 }
832 // Make sure that application is notified with sufficient margin
833 // before underrun
Glenn Kasten7da35f22012-11-14 12:54:39 -0800834 if (mNotificationFramesAct > frameCount/2) {
Glenn Kastene0fa4672012-04-24 14:35:14 -0700835 mNotificationFramesAct = frameCount/2;
836 }
837 if (frameCount < minFrameCount) {
838 // not ALOGW because it happens all the time when playing key clicks over A2DP
839 ALOGV("Minimum buffer size corrected from %d to %d",
840 frameCount, minFrameCount);
841 frameCount = minFrameCount;
Glenn Kasten3acbd052012-02-28 10:39:56 -0800842 }
Eric Laurentd1b449a2010-05-14 03:26:45 -0700843
Glenn Kastene0fa4672012-04-24 14:35:14 -0700844 } else {
845 // For fast tracks, the frame count calculations and checks are done by server
Eric Laurentd1b449a2010-05-14 03:26:45 -0700846 }
847
Glenn Kastena075db42012-03-06 11:22:44 -0800848 IAudioFlinger::track_flags_t trackFlags = IAudioFlinger::TRACK_DEFAULT;
849 if (mIsTimed) {
850 trackFlags |= IAudioFlinger::TRACK_TIMED;
851 }
Glenn Kasten3acbd052012-02-28 10:39:56 -0800852
853 pid_t tid = -1;
Eric Laurent0ca3cf92012-04-18 09:24:29 -0700854 if (flags & AUDIO_OUTPUT_FLAG_FAST) {
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700855 trackFlags |= IAudioFlinger::TRACK_FAST;
Glenn Kasten3acbd052012-02-28 10:39:56 -0800856 if (mAudioTrackThread != 0) {
857 tid = mAudioTrackThread->getTid();
858 }
Glenn Kasten4a4a0952012-03-19 11:38:14 -0700859 }
860
Glenn Kastenf37971f2012-02-03 11:06:53 -0800861 sp<IAudioTrack> track = audioFlinger->createTrack(streamType,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800862 sampleRate,
Glenn Kasten520a9af2012-06-21 12:56:37 -0700863 // AudioFlinger only sees 16-bit PCM
864 format == AUDIO_FORMAT_PCM_8_BIT ?
865 AUDIO_FORMAT_PCM_16_BIT : format,
Glenn Kastenc45128a2012-11-14 12:47:55 -0800866 mChannelMask,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800867 frameCount,
Glenn Kastenc2674152012-11-06 15:03:34 -0800868 &trackFlags,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800869 sharedBuffer,
870 output,
Glenn Kasten3acbd052012-02-28 10:39:56 -0800871 tid,
Eric Laurentbe916aa2010-06-01 23:49:17 -0700872 &mSessionId,
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800873 &status);
874
875 if (track == 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000876 ALOGE("AudioFlinger could not create track, status: %d", status);
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800877 return status;
878 }
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700879 sp<IMemory> iMem = track->getCblk();
880 if (iMem == 0) {
Steve Block29357bc2012-01-06 19:20:56 +0000881 ALOGE("Could not get control block");
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800882 return NO_INIT;
883 }
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800884 mAudioTrack = track;
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700885 mCblkMemory = iMem;
886 audio_track_cblk_t* cblk = static_cast<audio_track_cblk_t*>(iMem->pointer());
887 mCblk = cblk;
Glenn Kastend7101432012-11-14 13:42:25 -0800888 size_t temp = cblk->frameCount_;
889 if (temp < frameCount || (frameCount == 0 && temp == 0)) {
890 // In current design, AudioTrack client checks and ensures frame count validity before
891 // passing it to AudioFlinger so AudioFlinger should not return a different value except
892 // for fast track as it uses a special method of assigning frame count.
893 ALOGW("Requested frameCount %u but received frameCount %u", frameCount, temp);
894 }
895 frameCount = temp;
Glenn Kastenf8197a62013-04-23 12:39:37 -0700896 mAwaitBoost = false;
Glenn Kasten3acbd052012-02-28 10:39:56 -0800897 if (flags & AUDIO_OUTPUT_FLAG_FAST) {
Glenn Kastenc2674152012-11-06 15:03:34 -0800898 if (trackFlags & IAudioFlinger::TRACK_FAST) {
Glenn Kastend7101432012-11-14 13:42:25 -0800899 ALOGV("AUDIO_OUTPUT_FLAG_FAST successful; frameCount %u", frameCount);
Glenn Kastenf8197a62013-04-23 12:39:37 -0700900 mAwaitBoost = true;
Glenn Kasten3acbd052012-02-28 10:39:56 -0800901 } else {
Glenn Kastend7101432012-11-14 13:42:25 -0800902 ALOGV("AUDIO_OUTPUT_FLAG_FAST denied by server; frameCount %u", frameCount);
Glenn Kasten093000f2012-05-03 09:35:36 -0700903 // once denied, do not request again if IAudioTrack is re-created
904 flags = (audio_output_flags_t) (flags & ~AUDIO_OUTPUT_FLAG_FAST);
905 mFlags = flags;
Glenn Kasten3acbd052012-02-28 10:39:56 -0800906 }
Glenn Kastene0fa4672012-04-24 14:35:14 -0700907 if (sharedBuffer == 0) {
Glenn Kastend7101432012-11-14 13:42:25 -0800908 mNotificationFramesAct = frameCount/2;
Glenn Kastene0fa4672012-04-24 14:35:14 -0700909 }
Glenn Kasten3acbd052012-02-28 10:39:56 -0800910 }
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800911 if (sharedBuffer == 0) {
Glenn Kasten2f6226a2012-11-08 12:13:58 -0800912 mBuffers = (char*)cblk + sizeof(audio_track_cblk_t);
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800913 } else {
Glenn Kasten2f6226a2012-11-08 12:13:58 -0800914 mBuffers = sharedBuffer->pointer();
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800915 }
916
Eric Laurent2beeb502010-07-16 07:43:46 -0700917 mAudioTrack->attachAuxEffect(mAuxEffectId);
Glenn Kastenc9f872e2012-11-01 14:58:02 -0700918 cblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS;
919 cblk->waitTimeMs = 0;
Eric Laurentd1b449a2010-05-14 03:26:45 -0700920 mRemainingFrames = mNotificationFramesAct;
Glenn Kastene0fa4672012-04-24 14:35:14 -0700921 // FIXME don't believe this lie
Glenn Kastend7101432012-11-14 13:42:25 -0800922 mLatency = afLatency + (1000*frameCount) / sampleRate;
923 mFrameCount = frameCount;
Glenn Kasten093000f2012-05-03 09:35:36 -0700924 // If IAudioTrack is re-created, don't let the requested frameCount
925 // decrease. This can confuse clients that cache frameCount().
Glenn Kastend7101432012-11-14 13:42:25 -0800926 if (frameCount > mReqFrameCount) {
927 mReqFrameCount = frameCount;
Glenn Kasten093000f2012-05-03 09:35:36 -0700928 }
Glenn Kasten552f2742012-12-04 12:22:46 -0800929
930 // update proxy
931 delete mProxy;
932 mProxy = new AudioTrackClientProxy(cblk, mBuffers, frameCount, mFrameSizeAF);
933 mProxy->setVolumeLR((uint32_t(uint16_t(mVolume[RIGHT] * 0x1000)) << 16) |
934 uint16_t(mVolume[LEFT] * 0x1000));
935 mProxy->setSendLevel(mSendLevel);
936 mProxy->setSampleRate(mSampleRate);
937 if (sharedBuffer != 0) {
938 // Force buffer full condition as data is already present in shared memory
939 mProxy->stepUser(frameCount);
940 }
941
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800942 return NO_ERROR;
943}
944
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800945status_t AudioTrack::obtainBuffer(Buffer* audioBuffer, int32_t waitCount)
946{
Glenn Kasten552f2742012-12-04 12:22:46 -0800947 ALOG_ASSERT(mStatus == NO_ERROR && mProxy != NULL);
948
Eric Laurent1703cdf2011-03-07 14:52:59 -0800949 AutoMutex lock(mLock);
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800950 bool active;
Glenn Kastend0965dd2011-06-22 16:18:04 -0700951 status_t result = NO_ERROR;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800952 audio_track_cblk_t* cblk = mCblk;
953 uint32_t framesReq = audioBuffer->frameCount;
Eric Laurent1dd70b92009-04-21 07:56:33 -0700954 uint32_t waitTimeMs = (waitCount < 0) ? cblk->bufferTimeoutMs : WAIT_PERIOD_MS;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800955
956 audioBuffer->frameCount = 0;
957 audioBuffer->size = 0;
958
Glenn Kasten552f2742012-12-04 12:22:46 -0800959 size_t framesAvail = mProxy->framesAvailable();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800960
Eric Laurent9b7d9502011-03-21 11:49:00 -0700961 cblk->lock.lock();
Glenn Kastend12b0332012-11-05 13:38:15 -0800962 if (cblk->flags & CBLK_INVALID) {
Eric Laurent9b7d9502011-03-21 11:49:00 -0700963 goto create_new_track;
964 }
965 cblk->lock.unlock();
966
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800967 if (framesAvail == 0) {
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800968 cblk->lock.lock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800969 goto start_loop_here;
970 while (framesAvail == 0) {
971 active = mActive;
Glenn Kastenf6b16782011-12-15 09:51:17 -0800972 if (CC_UNLIKELY(!active)) {
Steve Block3856b092011-10-20 11:56:00 +0100973 ALOGV("Not active and NO_MORE_BUFFERS");
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800974 cblk->lock.unlock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800975 return NO_MORE_BUFFERS;
976 }
Glenn Kastenf6b16782011-12-15 09:51:17 -0800977 if (CC_UNLIKELY(!waitCount)) {
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800978 cblk->lock.unlock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -0800979 return WOULD_BLOCK;
Eric Laurent34f1d8e2009-11-04 08:27:26 -0800980 }
Glenn Kastend12b0332012-11-05 13:38:15 -0800981 if (!(cblk->flags & CBLK_INVALID)) {
Eric Laurent1703cdf2011-03-07 14:52:59 -0800982 mLock.unlock();
Glenn Kastene0461d12012-11-07 10:13:08 -0800983 // this condition is in shared memory, so if IAudioTrack and control block
984 // are replaced due to mediaserver death or IAudioTrack invalidation then
985 // cv won't be signalled, but fortunately the timeout will limit the wait
Eric Laurentd1b449a2010-05-14 03:26:45 -0700986 result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs));
Eric Laurentd1b449a2010-05-14 03:26:45 -0700987 cblk->lock.unlock();
Eric Laurent1703cdf2011-03-07 14:52:59 -0800988 mLock.lock();
Glenn Kasten9a2aaf92012-01-03 09:42:47 -0800989 if (!mActive) {
Eric Laurent1703cdf2011-03-07 14:52:59 -0800990 return status_t(STOPPED);
991 }
Glenn Kastene0461d12012-11-07 10:13:08 -0800992 // IAudioTrack may have been re-created while mLock was unlocked
993 cblk = mCblk;
Eric Laurent1703cdf2011-03-07 14:52:59 -0800994 cblk->lock.lock();
995 }
996
Glenn Kastend12b0332012-11-05 13:38:15 -0800997 if (cblk->flags & CBLK_INVALID) {
Eric Laurentd1b449a2010-05-14 03:26:45 -0700998 goto create_new_track;
999 }
Glenn Kastenf6b16782011-12-15 09:51:17 -08001000 if (CC_UNLIKELY(result != NO_ERROR)) {
Eric Laurent1dd70b92009-04-21 07:56:33 -07001001 cblk->waitTimeMs += waitTimeMs;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001002 if (cblk->waitTimeMs >= cblk->bufferTimeoutMs) {
1003 // timing out when a loop has been set and we have already written upto loop end
1004 // is a normal condition: no need to wake AudioFlinger up.
1005 if (cblk->user < cblk->loopEnd) {
Glenn Kasten8af901c2012-11-01 11:11:38 -07001006 ALOGW("obtainBuffer timed out (is the CPU pegged?) %p name=%#x user=%08x, "
1007 "server=%08x", this, cblk->mName, cblk->user, cblk->server);
Eric Laurentc2f1f072009-07-17 12:17:14 -07001008 //unlock cblk mutex before calling mAudioTrack->start() (see issue #1617140)
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001009 cblk->lock.unlock();
Glenn Kasten3acbd052012-02-28 10:39:56 -08001010 result = mAudioTrack->start();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001011 cblk->lock.lock();
Eric Laurent1703cdf2011-03-07 14:52:59 -08001012 if (result == DEAD_OBJECT) {
Glenn Kastend12b0332012-11-05 13:38:15 -08001013 android_atomic_or(CBLK_INVALID, &cblk->flags);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001014create_new_track:
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001015 audio_track_cblk_t* temp = cblk;
Glenn Kasten020f79f2012-11-07 14:03:00 -08001016 result = restoreTrack_l(temp, false /*fromStart*/);
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001017 cblk = temp;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001018 }
1019 if (result != NO_ERROR) {
Steve Block5ff1dd52012-01-05 23:22:43 +00001020 ALOGW("obtainBuffer create Track error %d", result);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001021 cblk->lock.unlock();
1022 return result;
1023 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001024 }
1025 cblk->waitTimeMs = 0;
1026 }
Eric Laurentc2f1f072009-07-17 12:17:14 -07001027
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001028 if (--waitCount == 0) {
Eric Laurent34f1d8e2009-11-04 08:27:26 -08001029 cblk->lock.unlock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001030 return TIMED_OUT;
1031 }
1032 }
1033 // read the server count again
1034 start_loop_here:
Glenn Kasten552f2742012-12-04 12:22:46 -08001035 framesAvail = mProxy->framesAvailable_l();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001036 }
Eric Laurent34f1d8e2009-11-04 08:27:26 -08001037 cblk->lock.unlock();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001038 }
1039
1040 cblk->waitTimeMs = 0;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001041
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001042 if (framesReq > framesAvail) {
1043 framesReq = framesAvail;
1044 }
1045
1046 uint32_t u = cblk->user;
Glenn Kastend7101432012-11-14 13:42:25 -08001047 uint32_t bufferEnd = cblk->userBase + mFrameCount;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001048
Marco Nelissena1472d92012-03-30 14:36:54 -07001049 if (framesReq > bufferEnd - u) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001050 framesReq = bufferEnd - u;
1051 }
1052
Eric Laurentc2f1f072009-07-17 12:17:14 -07001053 audioBuffer->frameCount = framesReq;
Glenn Kasten5aab59a2012-11-12 07:58:20 -08001054 audioBuffer->size = framesReq * mFrameSizeAF;
Glenn Kasten552f2742012-12-04 12:22:46 -08001055 audioBuffer->raw = mProxy->buffer(u);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001056 active = mActive;
1057 return active ? status_t(NO_ERROR) : status_t(STOPPED);
1058}
1059
1060void AudioTrack::releaseBuffer(Buffer* audioBuffer)
1061{
Glenn Kasten552f2742012-12-04 12:22:46 -08001062 ALOG_ASSERT(mStatus == NO_ERROR && mProxy != NULL);
1063
Eric Laurent1703cdf2011-03-07 14:52:59 -08001064 AutoMutex lock(mLock);
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001065 audio_track_cblk_t* cblk = mCblk;
Glenn Kasten552f2742012-12-04 12:22:46 -08001066 (void) mProxy->stepUser(audioBuffer->frameCount);
Eric Laurentdf839842012-05-31 14:27:14 -07001067 if (audioBuffer->frameCount > 0) {
1068 // restart track if it was disabled by audioflinger due to previous underrun
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001069 if (mActive && (cblk->flags & CBLK_DISABLED)) {
1070 android_atomic_and(~CBLK_DISABLED, &cblk->flags);
1071 ALOGW("releaseBuffer() track %p name=%#x disabled, restarting", this, cblk->mName);
Eric Laurentdf839842012-05-31 14:27:14 -07001072 mAudioTrack->start();
1073 }
1074 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001075}
1076
1077// -------------------------------------------------------------------------
1078
1079ssize_t AudioTrack::write(const void* buffer, size_t userSize)
1080{
1081
Glenn Kasten8f7453f2012-11-30 15:00:36 -08001082 if (mSharedBuffer != 0 || mIsTimed) {
Glenn Kastena2049222012-06-22 17:21:07 -07001083 return INVALID_OPERATION;
1084 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001085
1086 if (ssize_t(userSize) < 0) {
Glenn Kasten99e53b82012-01-19 08:59:58 -08001087 // Sanity-check: user is most-likely passing an error code, and it would
1088 // make the return value ambiguous (actualSize vs error).
Steve Block29357bc2012-01-06 19:20:56 +00001089 ALOGE("AudioTrack::write(buffer=%p, size=%u (%d)",
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001090 buffer, userSize, userSize);
1091 return BAD_VALUE;
1092 }
1093
Steve Block3856b092011-10-20 11:56:00 +01001094 ALOGV("write %p: %d bytes, mActive=%d", this, userSize, mActive);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001095
Eric Laurentdf839842012-05-31 14:27:14 -07001096 if (userSize == 0) {
1097 return 0;
1098 }
1099
Eric Laurent1703cdf2011-03-07 14:52:59 -08001100 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
1101 // while we are accessing the cblk
1102 mLock.lock();
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001103 sp<IAudioTrack> audioTrack = mAudioTrack;
1104 sp<IMemory> iMem = mCblkMemory;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001105 mLock.unlock();
1106
Glenn Kastene0461d12012-11-07 10:13:08 -08001107 // since mLock is unlocked the IAudioTrack and shared memory may be re-created,
1108 // so all cblk references might still refer to old shared memory, but that should be benign
1109
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001110 ssize_t written = 0;
1111 const int8_t *src = (const int8_t *)buffer;
1112 Buffer audioBuffer;
Glenn Kastenb9980652012-01-11 09:48:27 -08001113 size_t frameSz = frameSize();
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001114
1115 do {
Eric Laurent33797ea2011-03-17 09:36:51 -07001116 audioBuffer.frameCount = userSize/frameSz;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001117
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001118 status_t err = obtainBuffer(&audioBuffer, -1);
1119 if (err < 0) {
1120 // out of buffers, return #bytes written
Glenn Kastena2049222012-06-22 17:21:07 -07001121 if (err == status_t(NO_MORE_BUFFERS)) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001122 break;
Glenn Kastena2049222012-06-22 17:21:07 -07001123 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001124 return ssize_t(err);
1125 }
1126
1127 size_t toWrite;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001128
Eric Laurent0ca3cf92012-04-18 09:24:29 -07001129 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_OUTPUT_FLAG_DIRECT)) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001130 // Divide capacity by 2 to take expansion into account
1131 toWrite = audioBuffer.size>>1;
Glenn Kasten511754b2012-01-11 09:52:19 -08001132 memcpy_to_i16_from_u8(audioBuffer.i16, (const uint8_t *) src, toWrite);
Eric Laurent33025262009-08-04 10:42:26 -07001133 } else {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001134 toWrite = audioBuffer.size;
1135 memcpy(audioBuffer.i8, src, toWrite);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001136 }
Glenn Kasten9c6c02e2012-11-12 14:32:06 -08001137 src += toWrite;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001138 userSize -= toWrite;
1139 written += toWrite;
1140
1141 releaseBuffer(&audioBuffer);
Eric Laurent33797ea2011-03-17 09:36:51 -07001142 } while (userSize >= frameSz);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001143
1144 return written;
1145}
1146
1147// -------------------------------------------------------------------------
1148
John Grossman4ff14ba2012-02-08 16:37:41 -08001149TimedAudioTrack::TimedAudioTrack() {
1150 mIsTimed = true;
1151}
1152
1153status_t TimedAudioTrack::allocateTimedBuffer(size_t size, sp<IMemory>* buffer)
1154{
Glenn Kastena96bd952012-11-02 13:05:14 -07001155 AutoMutex lock(mLock);
John Grossman4ff14ba2012-02-08 16:37:41 -08001156 status_t result = UNKNOWN_ERROR;
1157
Glenn Kastena96bd952012-11-02 13:05:14 -07001158 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
1159 // while we are accessing the cblk
1160 sp<IAudioTrack> audioTrack = mAudioTrack;
1161 sp<IMemory> iMem = mCblkMemory;
1162
John Grossman4ff14ba2012-02-08 16:37:41 -08001163 // If the track is not invalid already, try to allocate a buffer. alloc
1164 // fails indicating that the server is dead, flag the track as invalid so
Glenn Kasten2662ac92012-07-30 10:59:30 -07001165 // we can attempt to restore in just a bit.
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001166 audio_track_cblk_t* cblk = mCblk;
1167 if (!(cblk->flags & CBLK_INVALID)) {
John Grossman4ff14ba2012-02-08 16:37:41 -08001168 result = mAudioTrack->allocateTimedBuffer(size, buffer);
1169 if (result == DEAD_OBJECT) {
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001170 android_atomic_or(CBLK_INVALID, &cblk->flags);
John Grossman4ff14ba2012-02-08 16:37:41 -08001171 }
1172 }
1173
1174 // If the track is invalid at this point, attempt to restore it. and try the
1175 // allocation one more time.
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001176 if (cblk->flags & CBLK_INVALID) {
1177 cblk->lock.lock();
1178 audio_track_cblk_t* temp = cblk;
Glenn Kasten020f79f2012-11-07 14:03:00 -08001179 result = restoreTrack_l(temp, false /*fromStart*/);
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001180 cblk = temp;
1181 cblk->lock.unlock();
John Grossman4ff14ba2012-02-08 16:37:41 -08001182
Glenn Kastena2049222012-06-22 17:21:07 -07001183 if (result == OK) {
John Grossman4ff14ba2012-02-08 16:37:41 -08001184 result = mAudioTrack->allocateTimedBuffer(size, buffer);
Glenn Kastena2049222012-06-22 17:21:07 -07001185 }
John Grossman4ff14ba2012-02-08 16:37:41 -08001186 }
1187
1188 return result;
1189}
1190
1191status_t TimedAudioTrack::queueTimedBuffer(const sp<IMemory>& buffer,
1192 int64_t pts)
1193{
Eric Laurentdf839842012-05-31 14:27:14 -07001194 status_t status = mAudioTrack->queueTimedBuffer(buffer, pts);
1195 {
1196 AutoMutex lock(mLock);
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001197 audio_track_cblk_t* cblk = mCblk;
Eric Laurentdf839842012-05-31 14:27:14 -07001198 // restart track if it was disabled by audioflinger due to previous underrun
1199 if (buffer->size() != 0 && status == NO_ERROR &&
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001200 mActive && (cblk->flags & CBLK_DISABLED)) {
1201 android_atomic_and(~CBLK_DISABLED, &cblk->flags);
Eric Laurentdf839842012-05-31 14:27:14 -07001202 ALOGW("queueTimedBuffer() track %p disabled, restarting", this);
1203 mAudioTrack->start();
1204 }
John Grossman4ff14ba2012-02-08 16:37:41 -08001205 }
Eric Laurentdf839842012-05-31 14:27:14 -07001206 return status;
John Grossman4ff14ba2012-02-08 16:37:41 -08001207}
1208
1209status_t TimedAudioTrack::setMediaTimeTransform(const LinearTransform& xform,
1210 TargetTimeline target)
1211{
1212 return mAudioTrack->setMediaTimeTransform(xform, target);
1213}
1214
1215// -------------------------------------------------------------------------
1216
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001217bool AudioTrack::processAudioBuffer(const sp<AudioTrackThread>& thread)
1218{
1219 Buffer audioBuffer;
1220 uint32_t frames;
1221 size_t writtenSize;
1222
Eric Laurent1703cdf2011-03-07 14:52:59 -08001223 mLock.lock();
Glenn Kastenf8197a62013-04-23 12:39:37 -07001224 if (mAwaitBoost) {
1225 mAwaitBoost = false;
1226 mLock.unlock();
1227 static const int32_t kMaxTries = 5;
1228 int32_t tryCounter = kMaxTries;
1229 uint32_t pollUs = 10000;
1230 do {
1231 int policy = sched_getscheduler(0);
1232 if (policy == SCHED_FIFO || policy == SCHED_RR) {
1233 break;
1234 }
1235 usleep(pollUs);
1236 pollUs <<= 1;
1237 } while (tryCounter-- > 0);
1238 if (tryCounter < 0) {
1239 ALOGE("did not receive expected priority boost on time");
1240 }
1241 return true;
1242 }
Eric Laurent1703cdf2011-03-07 14:52:59 -08001243 // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed
1244 // while we are accessing the cblk
Glenn Kastene53b9ea2012-03-12 16:29:55 -07001245 sp<IAudioTrack> audioTrack = mAudioTrack;
1246 sp<IMemory> iMem = mCblkMemory;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001247 audio_track_cblk_t* cblk = mCblk;
Glenn Kasten9a2aaf92012-01-03 09:42:47 -08001248 bool active = mActive;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001249 mLock.unlock();
1250
Glenn Kastene0461d12012-11-07 10:13:08 -08001251 // since mLock is unlocked the IAudioTrack and shared memory may be re-created,
1252 // so all cblk references might still refer to old shared memory, but that should be benign
1253
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001254 // Manage underrun callback
Glenn Kasten552f2742012-12-04 12:22:46 -08001255 if (active && (mProxy->framesAvailable() == mFrameCount)) {
Steve Block3856b092011-10-20 11:56:00 +01001256 ALOGV("Underrun user: %x, server: %x, flags %04x", cblk->user, cblk->server, cblk->flags);
Glenn Kastend12b0332012-11-05 13:38:15 -08001257 if (!(android_atomic_or(CBLK_UNDERRUN, &cblk->flags) & CBLK_UNDERRUN)) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001258 mCbf(EVENT_UNDERRUN, mUserData, 0);
Glenn Kastend7101432012-11-14 13:42:25 -08001259 if (cblk->server == mFrameCount) {
Eric Laurentc2f1f072009-07-17 12:17:14 -07001260 mCbf(EVENT_BUFFER_END, mUserData, 0);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001261 }
Glenn Kastena2049222012-06-22 17:21:07 -07001262 if (mSharedBuffer != 0) {
1263 return false;
1264 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001265 }
1266 }
Eric Laurentc2f1f072009-07-17 12:17:14 -07001267
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001268 // Manage loop end callback
Eric Laurent1703cdf2011-03-07 14:52:59 -08001269 while (mLoopCount > cblk->loopCount) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001270 int loopCount = -1;
1271 mLoopCount--;
1272 if (mLoopCount >= 0) loopCount = mLoopCount;
1273
1274 mCbf(EVENT_LOOP_END, mUserData, (void *)&loopCount);
1275 }
1276
1277 // Manage marker callback
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -07001278 if (!mMarkerReached && (mMarkerPosition > 0)) {
Eric Laurent1703cdf2011-03-07 14:52:59 -08001279 if (cblk->server >= mMarkerPosition) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001280 mCbf(EVENT_MARKER, mUserData, (void *)&mMarkerPosition);
Jean-Michel Trivi2c22aeb2009-03-24 18:11:07 -07001281 mMarkerReached = true;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001282 }
1283 }
1284
1285 // Manage new position callback
Eric Laurentc2f1f072009-07-17 12:17:14 -07001286 if (mUpdatePeriod > 0) {
Eric Laurent1703cdf2011-03-07 14:52:59 -08001287 while (cblk->server >= mNewPosition) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001288 mCbf(EVENT_NEW_POS, mUserData, (void *)&mNewPosition);
1289 mNewPosition += mUpdatePeriod;
1290 }
1291 }
1292
1293 // If Shared buffer is used, no data is requested from client.
1294 if (mSharedBuffer != 0) {
1295 frames = 0;
1296 } else {
1297 frames = mRemainingFrames;
1298 }
1299
Glenn Kasten99e53b82012-01-19 08:59:58 -08001300 // See description of waitCount parameter at declaration of obtainBuffer().
1301 // The logic below prevents us from being stuck below at obtainBuffer()
1302 // not being able to handle timed events (position, markers, loops).
Eric Laurent2267ba12011-09-07 11:13:23 -07001303 int32_t waitCount = -1;
1304 if (mUpdatePeriod || (!mMarkerReached && mMarkerPosition) || mLoopCount) {
1305 waitCount = 1;
1306 }
1307
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001308 do {
1309
1310 audioBuffer.frameCount = frames;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001311
Eric Laurent2267ba12011-09-07 11:13:23 -07001312 status_t err = obtainBuffer(&audioBuffer, waitCount);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001313 if (err < NO_ERROR) {
1314 if (err != TIMED_OUT) {
Glenn Kasten8af901c2012-11-01 11:11:38 -07001315 ALOGE_IF(err != status_t(NO_MORE_BUFFERS),
1316 "Error obtaining an audio buffer, giving up.");
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001317 return false;
1318 }
1319 break;
1320 }
Glenn Kastena2049222012-06-22 17:21:07 -07001321 if (err == status_t(STOPPED)) {
1322 return false;
1323 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001324
1325 // Divide buffer size by 2 to take into account the expansion
1326 // due to 8 to 16 bit conversion: the callback must fill only half
1327 // of the destination buffer
Eric Laurent0ca3cf92012-04-18 09:24:29 -07001328 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_OUTPUT_FLAG_DIRECT)) {
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001329 audioBuffer.size >>= 1;
1330 }
1331
1332 size_t reqSize = audioBuffer.size;
1333 mCbf(EVENT_MORE_DATA, mUserData, &audioBuffer);
1334 writtenSize = audioBuffer.size;
1335
1336 // Sanity check on returned size
The Android Open Source Project8555d082009-03-05 14:34:35 -08001337 if (ssize_t(writtenSize) <= 0) {
1338 // The callback is done filling buffers
1339 // Keep this thread going to handle timed events and
1340 // still try to get more data in intervals of WAIT_PERIOD_MS
1341 // but don't just loop and block the CPU, so wait
1342 usleep(WAIT_PERIOD_MS*1000);
1343 break;
1344 }
Eric Laurentdf839842012-05-31 14:27:14 -07001345
Glenn Kastena2049222012-06-22 17:21:07 -07001346 if (writtenSize > reqSize) {
1347 writtenSize = reqSize;
1348 }
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001349
Eric Laurent0ca3cf92012-04-18 09:24:29 -07001350 if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_OUTPUT_FLAG_DIRECT)) {
Glenn Kasten511754b2012-01-11 09:52:19 -08001351 // 8 to 16 bit conversion, note that source and destination are the same address
1352 memcpy_to_i16_from_u8(audioBuffer.i16, (const uint8_t *) audioBuffer.i8, writtenSize);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001353 writtenSize <<= 1;
1354 }
1355
1356 audioBuffer.size = writtenSize;
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001357 // NOTE: cblk->frameSize is not equal to AudioTrack::frameSize() for
1358 // 8 bit PCM data: in this case, cblk->frameSize is based on a sample size of
Eric Laurentc2f1f072009-07-17 12:17:14 -07001359 // 16 bit.
Glenn Kasten5aab59a2012-11-12 07:58:20 -08001360 audioBuffer.frameCount = writtenSize / mFrameSizeAF;
Eric Laurentc2f1f072009-07-17 12:17:14 -07001361
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001362 frames -= audioBuffer.frameCount;
1363
1364 releaseBuffer(&audioBuffer);
1365 }
1366 while (frames);
1367
1368 if (frames == 0) {
Eric Laurentd1b449a2010-05-14 03:26:45 -07001369 mRemainingFrames = mNotificationFramesAct;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001370 } else {
1371 mRemainingFrames = frames;
1372 }
1373 return true;
1374}
1375
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001376// must be called with mLock and refCblk.lock held. Callers must also hold strong references on
Eric Laurent1703cdf2011-03-07 14:52:59 -08001377// the IAudioTrack and IMemory in case they are recreated here.
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001378// If the IAudioTrack is successfully restored, the refCblk pointer is updated
1379// FIXME Don't depend on caller to hold strong references.
1380status_t AudioTrack::restoreTrack_l(audio_track_cblk_t*& refCblk, bool fromStart)
Eric Laurent1703cdf2011-03-07 14:52:59 -08001381{
1382 status_t result;
1383
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001384 audio_track_cblk_t* cblk = refCblk;
1385 audio_track_cblk_t* newCblk = cblk;
Glenn Kasten411e4472012-11-02 10:00:06 -07001386 ALOGW("dead IAudioTrack, creating a new one from %s",
1387 fromStart ? "start()" : "obtainBuffer()");
Eric Laurent1703cdf2011-03-07 14:52:59 -08001388
Glenn Kastene0461d12012-11-07 10:13:08 -08001389 // signal old cblk condition so that other threads waiting for available buffers stop
1390 // waiting now
1391 cblk->cv.broadcast();
1392 cblk->lock.unlock();
Eric Laurent1703cdf2011-03-07 14:52:59 -08001393
Glenn Kastene0461d12012-11-07 10:13:08 -08001394 // refresh the audio configuration cache in this process to make sure we get new
1395 // output parameters in getOutput_l() and createTrack_l()
1396 AudioSystem::clearAudioConfigCache();
Eric Laurent9f6530f2011-08-30 10:18:54 -07001397
Glenn Kastene0461d12012-11-07 10:13:08 -08001398 // if the new IAudioTrack is created, createTrack_l() will modify the
1399 // following member variables: mAudioTrack, mCblkMemory and mCblk.
1400 // It will also delete the strong references on previous IAudioTrack and IMemory
1401 result = createTrack_l(mStreamType,
Glenn Kasten552f2742012-12-04 12:22:46 -08001402 mSampleRate,
Glenn Kastene0461d12012-11-07 10:13:08 -08001403 mFormat,
Glenn Kastend7101432012-11-14 13:42:25 -08001404 mReqFrameCount, // so that frame count never goes down
Glenn Kastene0461d12012-11-07 10:13:08 -08001405 mFlags,
1406 mSharedBuffer,
1407 getOutput_l());
Eric Laurent1703cdf2011-03-07 14:52:59 -08001408
Glenn Kastene0461d12012-11-07 10:13:08 -08001409 if (result == NO_ERROR) {
1410 uint32_t user = cblk->user;
1411 uint32_t server = cblk->server;
1412 // restore write index and set other indexes to reflect empty buffer status
1413 newCblk = mCblk;
1414 newCblk->user = user;
1415 newCblk->server = user;
1416 newCblk->userBase = user;
1417 newCblk->serverBase = user;
1418 // restore loop: this is not guaranteed to succeed if new frame count is not
1419 // compatible with loop length
1420 setLoop_l(cblk->loopStart, cblk->loopEnd, cblk->loopCount);
Glenn Kasten552f2742012-12-04 12:22:46 -08001421 size_t frames = 0;
Glenn Kastene0461d12012-11-07 10:13:08 -08001422 if (!fromStart) {
1423 newCblk->bufferTimeoutMs = MAX_RUN_TIMEOUT_MS;
1424 // Make sure that a client relying on callback events indicating underrun or
1425 // the actual amount of audio frames played (e.g SoundPool) receives them.
1426 if (mSharedBuffer == 0) {
Glenn Kastene0461d12012-11-07 10:13:08 -08001427 if (user > server) {
Glenn Kastend7101432012-11-14 13:42:25 -08001428 frames = ((user - server) > mFrameCount) ?
1429 mFrameCount : (user - server);
Glenn Kasten5aab59a2012-11-12 07:58:20 -08001430 memset(mBuffers, 0, frames * mFrameSizeAF);
Eric Laurent408b8dc2011-09-06 12:36:15 -07001431 }
Glenn Kastene0461d12012-11-07 10:13:08 -08001432 // restart playback even if buffer is not completely filled.
1433 android_atomic_or(CBLK_FORCEREADY, &newCblk->flags);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001434 }
1435 }
Glenn Kastene0461d12012-11-07 10:13:08 -08001436 if (mSharedBuffer != 0) {
Glenn Kasten552f2742012-12-04 12:22:46 -08001437 frames = mFrameCount;
1438 }
1439 if (frames > 0) {
1440 // stepUser() clears CBLK_UNDERRUN flag enabling underrun callbacks to
1441 // the client
1442 mProxy->stepUser(frames);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001443 }
Glenn Kastene0461d12012-11-07 10:13:08 -08001444 if (mActive) {
1445 result = mAudioTrack->start();
1446 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() start() failed status %d", result);
1447 }
1448 if (fromStart && result == NO_ERROR) {
1449 mNewPosition = newCblk->server + mUpdatePeriod;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001450 }
Eric Laurent1703cdf2011-03-07 14:52:59 -08001451 }
Glenn Kastene0461d12012-11-07 10:13:08 -08001452 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() failed status %d", result);
Steve Block3856b092011-10-20 11:56:00 +01001453 ALOGV("restoreTrack_l() status %d mActive %d cblk %p, old cblk %p flags %08x old flags %08x",
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001454 result, mActive, newCblk, cblk, newCblk->flags, cblk->flags);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001455
1456 if (result == NO_ERROR) {
1457 // from now on we switch to the newly created cblk
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001458 refCblk = newCblk;
Eric Laurent1703cdf2011-03-07 14:52:59 -08001459 }
Glenn Kastenc9f872e2012-11-01 14:58:02 -07001460 newCblk->lock.lock();
Eric Laurent1703cdf2011-03-07 14:52:59 -08001461
Glenn Kasten411e4472012-11-02 10:00:06 -07001462 ALOGW_IF(result != NO_ERROR, "restoreTrack_l() error %d", result);
Eric Laurent1703cdf2011-03-07 14:52:59 -08001463
1464 return result;
1465}
1466
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001467status_t AudioTrack::dump(int fd, const Vector<String16>& args) const
1468{
1469
1470 const size_t SIZE = 256;
1471 char buffer[SIZE];
1472 String8 result;
1473
1474 result.append(" AudioTrack::dump\n");
Glenn Kasten8af901c2012-11-01 11:11:38 -07001475 snprintf(buffer, 255, " stream type(%d), left - right volume(%f, %f)\n", mStreamType,
1476 mVolume[0], mVolume[1]);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001477 result.append(buffer);
Glenn Kasten8af901c2012-11-01 11:11:38 -07001478 snprintf(buffer, 255, " format(%d), channel count(%d), frame count(%d)\n", mFormat,
Glenn Kastend7101432012-11-14 13:42:25 -08001479 mChannelCount, mFrameCount);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001480 result.append(buffer);
Glenn Kasten552f2742012-12-04 12:22:46 -08001481 snprintf(buffer, 255, " sample rate(%u), status(%d)\n", mSampleRate, mStatus);
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001482 result.append(buffer);
1483 snprintf(buffer, 255, " active(%d), latency (%d)\n", mActive, mLatency);
1484 result.append(buffer);
1485 ::write(fd, result.string(), result.size());
1486 return NO_ERROR;
1487}
1488
1489// =========================================================================
1490
1491AudioTrack::AudioTrackThread::AudioTrackThread(AudioTrack& receiver, bool bCanCallJava)
Glenn Kasten3acbd052012-02-28 10:39:56 -08001492 : Thread(bCanCallJava), mReceiver(receiver), mPaused(true)
1493{
1494}
1495
1496AudioTrack::AudioTrackThread::~AudioTrackThread()
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001497{
1498}
1499
1500bool AudioTrack::AudioTrackThread::threadLoop()
1501{
Glenn Kasten3acbd052012-02-28 10:39:56 -08001502 {
1503 AutoMutex _l(mMyLock);
1504 if (mPaused) {
1505 mMyCond.wait(mMyLock);
1506 // caller will check for exitPending()
1507 return true;
1508 }
1509 }
Glenn Kastenca8b2802012-04-23 13:58:16 -07001510 if (!mReceiver.processAudioBuffer(this)) {
1511 pause();
1512 }
1513 return true;
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001514}
1515
Glenn Kasten3acbd052012-02-28 10:39:56 -08001516void AudioTrack::AudioTrackThread::requestExit()
1517{
1518 // must be in this order to avoid a race condition
1519 Thread::requestExit();
Glenn Kastenf4022f92012-05-02 10:34:59 -07001520 resume();
Glenn Kasten3acbd052012-02-28 10:39:56 -08001521}
1522
1523void AudioTrack::AudioTrackThread::pause()
1524{
1525 AutoMutex _l(mMyLock);
1526 mPaused = true;
1527}
1528
1529void AudioTrack::AudioTrackThread::resume()
1530{
1531 AutoMutex _l(mMyLock);
1532 if (mPaused) {
1533 mPaused = false;
1534 mMyCond.signal();
1535 }
1536}
1537
The Android Open Source Project89fa4ad2009-03-03 19:31:44 -08001538}; // namespace android