Glenn Kasten | 362c4e6 | 2011-12-14 10:28:06 -0800 | [diff] [blame] | 1 | /* frameworks/base/media/libmedia/AudioTrack.cpp |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2 | ** |
| 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 Agopian | 7562408 | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 35 | #include <binder/Parcel.h> |
| 36 | #include <binder/IPCThreadState.h> |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 37 | #include <utils/Timers.h> |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 38 | #include <utils/Atomic.h> |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 39 | |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 40 | #include <cutils/bitops.h> |
Glenn Kasten | f6b1678 | 2011-12-15 09:51:17 -0800 | [diff] [blame] | 41 | #include <cutils/compiler.h> |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 42 | |
Dima Zavin | 6476024 | 2011-05-11 14:15:23 -0700 | [diff] [blame] | 43 | #include <system/audio.h> |
Dima Zavin | 7394a4f | 2011-06-13 18:16:26 -0700 | [diff] [blame] | 44 | #include <system/audio_policy.h> |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 45 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 46 | namespace android { |
Chia-chi Yeh | 33005a9 | 2010-06-16 06:33:13 +0800 | [diff] [blame] | 47 | // --------------------------------------------------------------------------- |
| 48 | |
| 49 | // static |
| 50 | status_t AudioTrack::getMinFrameCount( |
| 51 | int* frameCount, |
| 52 | int streamType, |
| 53 | uint32_t sampleRate) |
| 54 | { |
| 55 | int afSampleRate; |
| 56 | if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) { |
| 57 | return NO_INIT; |
| 58 | } |
| 59 | int afFrameCount; |
| 60 | if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) { |
| 61 | return NO_INIT; |
| 62 | } |
| 63 | uint32_t afLatency; |
| 64 | if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) { |
| 65 | return NO_INIT; |
| 66 | } |
| 67 | |
| 68 | // Ensure that buffer depth covers at least audio hardware latency |
| 69 | uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate); |
| 70 | if (minBufCount < 2) minBufCount = 2; |
| 71 | |
| 72 | *frameCount = (sampleRate == 0) ? afFrameCount * minBufCount : |
| 73 | afFrameCount * minBufCount * sampleRate / afSampleRate; |
| 74 | return NO_ERROR; |
| 75 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 76 | |
| 77 | // --------------------------------------------------------------------------- |
| 78 | |
| 79 | AudioTrack::AudioTrack() |
Glenn Kasten | 8791351 | 2011-06-22 16:15:25 -0700 | [diff] [blame] | 80 | : mStatus(NO_INIT), |
| 81 | mPreviousPriority(ANDROID_PRIORITY_NORMAL), mPreviousSchedulingGroup(ANDROID_TGROUP_DEFAULT) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 82 | { |
| 83 | } |
| 84 | |
| 85 | AudioTrack::AudioTrack( |
| 86 | int streamType, |
| 87 | uint32_t sampleRate, |
| 88 | int format, |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 89 | int channelMask, |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 90 | int frameCount, |
| 91 | uint32_t flags, |
| 92 | callback_t cbf, |
| 93 | void* user, |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 94 | int notificationFrames, |
| 95 | int sessionId) |
Glenn Kasten | 8791351 | 2011-06-22 16:15:25 -0700 | [diff] [blame] | 96 | : mStatus(NO_INIT), |
| 97 | mPreviousPriority(ANDROID_PRIORITY_NORMAL), mPreviousSchedulingGroup(ANDROID_TGROUP_DEFAULT) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 98 | { |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 99 | mStatus = set(streamType, sampleRate, format, channelMask, |
Eric Laurent | a514bdb | 2010-06-21 09:27:30 -0700 | [diff] [blame] | 100 | frameCount, flags, cbf, user, notificationFrames, |
| 101 | 0, false, sessionId); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | AudioTrack::AudioTrack( |
| 105 | int streamType, |
| 106 | uint32_t sampleRate, |
| 107 | int format, |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 108 | int channelMask, |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 109 | const sp<IMemory>& sharedBuffer, |
| 110 | uint32_t flags, |
| 111 | callback_t cbf, |
| 112 | void* user, |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 113 | int notificationFrames, |
| 114 | int sessionId) |
Glenn Kasten | 8791351 | 2011-06-22 16:15:25 -0700 | [diff] [blame] | 115 | : mStatus(NO_INIT), |
| 116 | mPreviousPriority(ANDROID_PRIORITY_NORMAL), mPreviousSchedulingGroup(ANDROID_TGROUP_DEFAULT) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 117 | { |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 118 | mStatus = set(streamType, sampleRate, format, channelMask, |
Eric Laurent | a514bdb | 2010-06-21 09:27:30 -0700 | [diff] [blame] | 119 | 0, flags, cbf, user, notificationFrames, |
| 120 | sharedBuffer, false, sessionId); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | AudioTrack::~AudioTrack() |
| 124 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 125 | ALOGV_IF(mSharedBuffer != 0, "Destructor sharedBuffer: %p", mSharedBuffer->pointer()); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 126 | |
| 127 | if (mStatus == NO_ERROR) { |
| 128 | // Make sure that callback function exits in the case where |
| 129 | // it is looping on buffer full condition in obtainBuffer(). |
| 130 | // Otherwise the callback thread will never exit. |
| 131 | stop(); |
| 132 | if (mAudioTrackThread != 0) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 133 | mAudioTrackThread->requestExitAndWait(); |
| 134 | mAudioTrackThread.clear(); |
| 135 | } |
| 136 | mAudioTrack.clear(); |
| 137 | IPCThreadState::self()->flushCommands(); |
Marco Nelissen | 3a34bef | 2011-08-02 13:33:41 -0700 | [diff] [blame] | 138 | AudioSystem::releaseAudioSessionId(mSessionId); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 139 | } |
| 140 | } |
| 141 | |
| 142 | status_t AudioTrack::set( |
| 143 | int streamType, |
| 144 | uint32_t sampleRate, |
| 145 | int format, |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 146 | int channelMask, |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 147 | int frameCount, |
| 148 | uint32_t flags, |
| 149 | callback_t cbf, |
| 150 | void* user, |
| 151 | int notificationFrames, |
| 152 | const sp<IMemory>& sharedBuffer, |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 153 | bool threadCanCallJava, |
| 154 | int sessionId) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 155 | { |
| 156 | |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 157 | ALOGV_IF(sharedBuffer != 0, "sharedBuffer: %p, size: %d", sharedBuffer->pointer(), sharedBuffer->size()); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 158 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 159 | AutoMutex lock(mLock); |
Eric Laurent | 1dd70b9 | 2009-04-21 07:56:33 -0700 | [diff] [blame] | 160 | if (mAudioTrack != 0) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 161 | ALOGE("Track already in use"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 162 | return INVALID_OPERATION; |
| 163 | } |
| 164 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 165 | int afSampleRate; |
| 166 | if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) { |
| 167 | return NO_INIT; |
| 168 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 169 | uint32_t afLatency; |
| 170 | if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) { |
| 171 | return NO_INIT; |
| 172 | } |
| 173 | |
| 174 | // handle default values first. |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 175 | if (streamType == AUDIO_STREAM_DEFAULT) { |
| 176 | streamType = AUDIO_STREAM_MUSIC; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 177 | } |
| 178 | if (sampleRate == 0) { |
| 179 | sampleRate = afSampleRate; |
| 180 | } |
| 181 | // these below should probably come from the audioFlinger too... |
| 182 | if (format == 0) { |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 183 | format = AUDIO_FORMAT_PCM_16_BIT; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 184 | } |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 185 | if (channelMask == 0) { |
| 186 | channelMask = AUDIO_CHANNEL_OUT_STEREO; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | // validate parameters |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 190 | if (!audio_is_valid_format(format)) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 191 | ALOGE("Invalid format"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 192 | return BAD_VALUE; |
| 193 | } |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 194 | |
| 195 | // force direct flag if format is not linear PCM |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 196 | if (!audio_is_linear_pcm(format)) { |
| 197 | flags |= AUDIO_POLICY_OUTPUT_FLAG_DIRECT; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 198 | } |
| 199 | |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 200 | if (!audio_is_output_channel(channelMask)) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 201 | ALOGE("Invalid channel mask"); |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 202 | return BAD_VALUE; |
| 203 | } |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 204 | uint32_t channelCount = popcount(channelMask); |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 205 | |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 206 | audio_io_handle_t output = AudioSystem::getOutput( |
| 207 | (audio_stream_type_t)streamType, |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 208 | sampleRate,format, channelMask, |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 209 | (audio_policy_output_flags_t)flags); |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 210 | |
| 211 | if (output == 0) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 212 | ALOGE("Could not get audio output for stream type %d", streamType); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 213 | return BAD_VALUE; |
| 214 | } |
| 215 | |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 216 | mVolume[LEFT] = 1.0f; |
| 217 | mVolume[RIGHT] = 1.0f; |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 218 | mSendLevel = 0; |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 219 | mFrameCount = frameCount; |
| 220 | mNotificationFramesReq = notificationFrames; |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 221 | mSessionId = sessionId; |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 222 | mAuxEffectId = 0; |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 223 | |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 224 | // create the IAudioTrack |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 225 | status_t status = createTrack_l(streamType, |
| 226 | sampleRate, |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 227 | (uint32_t)format, |
| 228 | (uint32_t)channelMask, |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 229 | frameCount, |
| 230 | flags, |
| 231 | sharedBuffer, |
| 232 | output, |
| 233 | true); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 234 | |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 235 | if (status != NO_ERROR) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 236 | return status; |
| 237 | } |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 238 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 239 | if (cbf != 0) { |
| 240 | mAudioTrackThread = new AudioTrackThread(*this, threadCanCallJava); |
| 241 | if (mAudioTrackThread == 0) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 242 | ALOGE("Could not create callback thread"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 243 | return NO_INIT; |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | mStatus = NO_ERROR; |
| 248 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 249 | mStreamType = streamType; |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 250 | mFormat = (uint32_t)format; |
| 251 | mChannelMask = (uint32_t)channelMask; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 252 | mChannelCount = channelCount; |
| 253 | mSharedBuffer = sharedBuffer; |
| 254 | mMuted = false; |
| 255 | mActive = 0; |
| 256 | mCbf = cbf; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 257 | mUserData = user; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 258 | mLoopCount = 0; |
| 259 | mMarkerPosition = 0; |
Jean-Michel Trivi | 2c22aeb | 2009-03-24 18:11:07 -0700 | [diff] [blame] | 260 | mMarkerReached = false; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 261 | mNewPosition = 0; |
| 262 | mUpdatePeriod = 0; |
Jean-Michel Trivi | cd07594 | 2011-08-25 16:47:23 -0700 | [diff] [blame] | 263 | mFlushed = false; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 264 | mFlags = flags; |
Marco Nelissen | 3a34bef | 2011-08-02 13:33:41 -0700 | [diff] [blame] | 265 | AudioSystem::acquireAudioSessionId(mSessionId); |
Eric Laurent | cfe2ba6 | 2011-09-13 15:04:17 -0700 | [diff] [blame] | 266 | mRestoreStatus = NO_ERROR; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 267 | return NO_ERROR; |
| 268 | } |
| 269 | |
| 270 | status_t AudioTrack::initCheck() const |
| 271 | { |
| 272 | return mStatus; |
| 273 | } |
| 274 | |
| 275 | // ------------------------------------------------------------------------- |
| 276 | |
| 277 | uint32_t AudioTrack::latency() const |
| 278 | { |
| 279 | return mLatency; |
| 280 | } |
| 281 | |
| 282 | int AudioTrack::streamType() const |
| 283 | { |
| 284 | return mStreamType; |
| 285 | } |
| 286 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 287 | int AudioTrack::format() const |
| 288 | { |
| 289 | return mFormat; |
| 290 | } |
| 291 | |
| 292 | int AudioTrack::channelCount() const |
| 293 | { |
| 294 | return mChannelCount; |
| 295 | } |
| 296 | |
| 297 | uint32_t AudioTrack::frameCount() const |
| 298 | { |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 299 | return mCblk->frameCount; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | int AudioTrack::frameSize() const |
| 303 | { |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 304 | if (audio_is_linear_pcm(mFormat)) { |
Eric Laurent | 671a636 | 2011-06-16 21:30:45 -0700 | [diff] [blame] | 305 | return channelCount()*audio_bytes_per_sample(mFormat); |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 306 | } else { |
| 307 | return sizeof(uint8_t); |
| 308 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | sp<IMemory>& AudioTrack::sharedBuffer() |
| 312 | { |
| 313 | return mSharedBuffer; |
| 314 | } |
| 315 | |
| 316 | // ------------------------------------------------------------------------- |
| 317 | |
| 318 | void AudioTrack::start() |
| 319 | { |
| 320 | sp<AudioTrackThread> t = mAudioTrackThread; |
Glenn Kasten | d0965dd | 2011-06-22 16:18:04 -0700 | [diff] [blame] | 321 | status_t status = NO_ERROR; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 322 | |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 323 | ALOGV("start %p", this); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 324 | if (t != 0) { |
| 325 | if (t->exitPending()) { |
| 326 | if (t->requestExitAndWait() == WOULD_BLOCK) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 327 | ALOGE("AudioTrack::start called from thread"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 328 | return; |
| 329 | } |
| 330 | } |
| 331 | t->mLock.lock(); |
| 332 | } |
| 333 | |
Eric Laurent | f5aafb2 | 2010-11-18 08:40:16 -0800 | [diff] [blame] | 334 | AutoMutex lock(mLock); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 335 | // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed |
| 336 | // while we are accessing the cblk |
| 337 | sp <IAudioTrack> audioTrack = mAudioTrack; |
| 338 | sp <IMemory> iMem = mCblkMemory; |
| 339 | audio_track_cblk_t* cblk = mCblk; |
| 340 | |
Eric Laurent | f5aafb2 | 2010-11-18 08:40:16 -0800 | [diff] [blame] | 341 | if (mActive == 0) { |
Jean-Michel Trivi | cd07594 | 2011-08-25 16:47:23 -0700 | [diff] [blame] | 342 | mFlushed = false; |
Eric Laurent | f5aafb2 | 2010-11-18 08:40:16 -0800 | [diff] [blame] | 343 | mActive = 1; |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 344 | mNewPosition = cblk->server + mUpdatePeriod; |
Eric Laurent | 33797ea | 2011-03-17 09:36:51 -0700 | [diff] [blame] | 345 | cblk->lock.lock(); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 346 | cblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS; |
| 347 | cblk->waitTimeMs = 0; |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 348 | android_atomic_and(~CBLK_DISABLED_ON, &cblk->flags); |
Eric Laurent | 2b58424 | 2009-11-09 23:32:22 -0800 | [diff] [blame] | 349 | if (t != 0) { |
Glenn Kasten | 8791351 | 2011-06-22 16:15:25 -0700 | [diff] [blame] | 350 | t->run("AudioTrackThread", ANDROID_PRIORITY_AUDIO); |
Eric Laurent | 2b58424 | 2009-11-09 23:32:22 -0800 | [diff] [blame] | 351 | } else { |
Glenn Kasten | 8791351 | 2011-06-22 16:15:25 -0700 | [diff] [blame] | 352 | mPreviousPriority = getpriority(PRIO_PROCESS, 0); |
| 353 | mPreviousSchedulingGroup = androidGetThreadSchedulingGroup(0); |
| 354 | androidSetThreadPriority(0, ANDROID_PRIORITY_AUDIO); |
Eric Laurent | 2b58424 | 2009-11-09 23:32:22 -0800 | [diff] [blame] | 355 | } |
| 356 | |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 357 | ALOGV("start %p before lock cblk %p", this, mCblk); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 358 | if (!(cblk->flags & CBLK_INVALID_MSK)) { |
| 359 | cblk->lock.unlock(); |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 360 | status = mAudioTrack->start(); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 361 | cblk->lock.lock(); |
| 362 | if (status == DEAD_OBJECT) { |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 363 | android_atomic_or(CBLK_INVALID_ON, &cblk->flags); |
Eric Laurent | 6100d2d | 2009-11-19 09:00:56 -0800 | [diff] [blame] | 364 | } |
Eric Laurent | 2b58424 | 2009-11-09 23:32:22 -0800 | [diff] [blame] | 365 | } |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 366 | if (cblk->flags & CBLK_INVALID_MSK) { |
| 367 | status = restoreTrack_l(cblk, true); |
| 368 | } |
| 369 | cblk->lock.unlock(); |
Eric Laurent | 2b58424 | 2009-11-09 23:32:22 -0800 | [diff] [blame] | 370 | if (status != NO_ERROR) { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 371 | ALOGV("start() failed"); |
Eric Laurent | f5aafb2 | 2010-11-18 08:40:16 -0800 | [diff] [blame] | 372 | mActive = 0; |
Eric Laurent | 2b58424 | 2009-11-09 23:32:22 -0800 | [diff] [blame] | 373 | if (t != 0) { |
| 374 | t->requestExit(); |
| 375 | } else { |
Glenn Kasten | 8791351 | 2011-06-22 16:15:25 -0700 | [diff] [blame] | 376 | setpriority(PRIO_PROCESS, 0, mPreviousPriority); |
| 377 | androidSetThreadSchedulingGroup(0, mPreviousSchedulingGroup); |
Eric Laurent | 2b58424 | 2009-11-09 23:32:22 -0800 | [diff] [blame] | 378 | } |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 379 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | if (t != 0) { |
| 383 | t->mLock.unlock(); |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | void AudioTrack::stop() |
| 388 | { |
| 389 | sp<AudioTrackThread> t = mAudioTrackThread; |
| 390 | |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 391 | ALOGV("stop %p", this); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 392 | if (t != 0) { |
| 393 | t->mLock.lock(); |
| 394 | } |
| 395 | |
Eric Laurent | f5aafb2 | 2010-11-18 08:40:16 -0800 | [diff] [blame] | 396 | AutoMutex lock(mLock); |
| 397 | if (mActive == 1) { |
| 398 | mActive = 0; |
Eric Laurent | 1dd70b9 | 2009-04-21 07:56:33 -0700 | [diff] [blame] | 399 | mCblk->cv.signal(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 400 | mAudioTrack->stop(); |
| 401 | // Cancel loops (If we are in the middle of a loop, playback |
| 402 | // would not stop until loopCount reaches 0). |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 403 | setLoop_l(0, 0, 0); |
Jean-Michel Trivi | 2c22aeb | 2009-03-24 18:11:07 -0700 | [diff] [blame] | 404 | // the playback head position will reset to 0, so if a marker is set, we need |
| 405 | // to activate it again |
| 406 | mMarkerReached = false; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 407 | // Force flush if a shared buffer is used otherwise audioflinger |
| 408 | // will not stop before end of buffer is reached. |
| 409 | if (mSharedBuffer != 0) { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 410 | flush_l(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 411 | } |
| 412 | if (t != 0) { |
| 413 | t->requestExit(); |
| 414 | } else { |
Glenn Kasten | 8791351 | 2011-06-22 16:15:25 -0700 | [diff] [blame] | 415 | setpriority(PRIO_PROCESS, 0, mPreviousPriority); |
| 416 | androidSetThreadSchedulingGroup(0, mPreviousSchedulingGroup); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 417 | } |
| 418 | } |
| 419 | |
| 420 | if (t != 0) { |
| 421 | t->mLock.unlock(); |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | bool AudioTrack::stopped() const |
| 426 | { |
| 427 | return !mActive; |
| 428 | } |
| 429 | |
| 430 | void AudioTrack::flush() |
| 431 | { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 432 | AutoMutex lock(mLock); |
| 433 | flush_l(); |
| 434 | } |
| 435 | |
| 436 | // must be called with mLock held |
| 437 | void AudioTrack::flush_l() |
| 438 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 439 | ALOGV("flush"); |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 440 | |
Jean-Michel Trivi | 2c22aeb | 2009-03-24 18:11:07 -0700 | [diff] [blame] | 441 | // clear playback marker and periodic update counter |
| 442 | mMarkerPosition = 0; |
| 443 | mMarkerReached = false; |
| 444 | mUpdatePeriod = 0; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 445 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 446 | if (!mActive) { |
Jean-Michel Trivi | cd07594 | 2011-08-25 16:47:23 -0700 | [diff] [blame] | 447 | mFlushed = true; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 448 | mAudioTrack->flush(); |
| 449 | // Release AudioTrack callback thread in case it was waiting for new buffers |
| 450 | // in AudioTrack::obtainBuffer() |
| 451 | mCblk->cv.signal(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 452 | } |
| 453 | } |
| 454 | |
| 455 | void AudioTrack::pause() |
| 456 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 457 | ALOGV("pause"); |
Eric Laurent | f5aafb2 | 2010-11-18 08:40:16 -0800 | [diff] [blame] | 458 | AutoMutex lock(mLock); |
| 459 | if (mActive == 1) { |
| 460 | mActive = 0; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 461 | mAudioTrack->pause(); |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | void AudioTrack::mute(bool e) |
| 466 | { |
| 467 | mAudioTrack->mute(e); |
| 468 | mMuted = e; |
| 469 | } |
| 470 | |
| 471 | bool AudioTrack::muted() const |
| 472 | { |
| 473 | return mMuted; |
| 474 | } |
| 475 | |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 476 | status_t AudioTrack::setVolume(float left, float right) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 477 | { |
Glenn Kasten | f0c4950 | 2011-11-30 09:46:04 -0800 | [diff] [blame] | 478 | if (left < 0.0f || left > 1.0f || right < 0.0f || right > 1.0f) { |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 479 | return BAD_VALUE; |
| 480 | } |
| 481 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 482 | AutoMutex lock(mLock); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 483 | mVolume[LEFT] = left; |
| 484 | mVolume[RIGHT] = right; |
| 485 | |
| 486 | // write must be atomic |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 487 | mCblk->volumeLR = (uint32_t(uint16_t(right * 0x1000)) << 16) | uint16_t(left * 0x1000); |
| 488 | |
| 489 | return NO_ERROR; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | void AudioTrack::getVolume(float* left, float* right) |
| 493 | { |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 494 | if (left != NULL) { |
| 495 | *left = mVolume[LEFT]; |
| 496 | } |
| 497 | if (right != NULL) { |
| 498 | *right = mVolume[RIGHT]; |
| 499 | } |
| 500 | } |
| 501 | |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 502 | status_t AudioTrack::setAuxEffectSendLevel(float level) |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 503 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 504 | ALOGV("setAuxEffectSendLevel(%f)", level); |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 505 | if (level > 1.0f) { |
| 506 | return BAD_VALUE; |
| 507 | } |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 508 | AutoMutex lock(mLock); |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 509 | |
| 510 | mSendLevel = level; |
| 511 | |
| 512 | mCblk->sendLevel = uint16_t(level * 0x1000); |
| 513 | |
| 514 | return NO_ERROR; |
| 515 | } |
| 516 | |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 517 | void AudioTrack::getAuxEffectSendLevel(float* level) |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 518 | { |
| 519 | if (level != NULL) { |
| 520 | *level = mSendLevel; |
| 521 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 522 | } |
| 523 | |
Eric Laurent | 5732662 | 2009-07-07 07:10:45 -0700 | [diff] [blame] | 524 | status_t AudioTrack::setSampleRate(int rate) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 525 | { |
| 526 | int afSamplingRate; |
| 527 | |
| 528 | if (AudioSystem::getOutputSamplingRate(&afSamplingRate, mStreamType) != NO_ERROR) { |
Eric Laurent | 5732662 | 2009-07-07 07:10:45 -0700 | [diff] [blame] | 529 | return NO_INIT; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 530 | } |
| 531 | // Resampler implementation limits input sampling rate to 2 x output sampling rate. |
Eric Laurent | 5732662 | 2009-07-07 07:10:45 -0700 | [diff] [blame] | 532 | if (rate <= 0 || rate > afSamplingRate*2 ) return BAD_VALUE; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 533 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 534 | AutoMutex lock(mLock); |
Eric Laurent | 5732662 | 2009-07-07 07:10:45 -0700 | [diff] [blame] | 535 | mCblk->sampleRate = rate; |
| 536 | return NO_ERROR; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | uint32_t AudioTrack::getSampleRate() |
| 540 | { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 541 | AutoMutex lock(mLock); |
Eric Laurent | 5732662 | 2009-07-07 07:10:45 -0700 | [diff] [blame] | 542 | return mCblk->sampleRate; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount) |
| 546 | { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 547 | AutoMutex lock(mLock); |
| 548 | return setLoop_l(loopStart, loopEnd, loopCount); |
| 549 | } |
| 550 | |
| 551 | // must be called with mLock held |
| 552 | status_t AudioTrack::setLoop_l(uint32_t loopStart, uint32_t loopEnd, int loopCount) |
| 553 | { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 554 | audio_track_cblk_t* cblk = mCblk; |
| 555 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 556 | Mutex::Autolock _l(cblk->lock); |
| 557 | |
| 558 | if (loopCount == 0) { |
| 559 | cblk->loopStart = UINT_MAX; |
| 560 | cblk->loopEnd = UINT_MAX; |
| 561 | cblk->loopCount = 0; |
| 562 | mLoopCount = 0; |
| 563 | return NO_ERROR; |
| 564 | } |
| 565 | |
| 566 | if (loopStart >= loopEnd || |
Eric Laurent | 9b7d950 | 2011-03-21 11:49:00 -0700 | [diff] [blame] | 567 | loopEnd - loopStart > cblk->frameCount || |
| 568 | cblk->server > loopStart) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 569 | ALOGE("setLoop invalid value: loopStart %d, loopEnd %d, loopCount %d, framecount %d, user %d", loopStart, loopEnd, loopCount, cblk->frameCount, cblk->user); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 570 | return BAD_VALUE; |
| 571 | } |
| 572 | |
Eric Laurent | 9b7d950 | 2011-03-21 11:49:00 -0700 | [diff] [blame] | 573 | if ((mSharedBuffer != 0) && (loopEnd > cblk->frameCount)) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 574 | ALOGE("setLoop invalid value: loop markers beyond data: loopStart %d, loopEnd %d, framecount %d", |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 575 | loopStart, loopEnd, cblk->frameCount); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 576 | return BAD_VALUE; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 577 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 578 | |
| 579 | cblk->loopStart = loopStart; |
| 580 | cblk->loopEnd = loopEnd; |
| 581 | cblk->loopCount = loopCount; |
| 582 | mLoopCount = loopCount; |
| 583 | |
| 584 | return NO_ERROR; |
| 585 | } |
| 586 | |
| 587 | status_t AudioTrack::getLoop(uint32_t *loopStart, uint32_t *loopEnd, int *loopCount) |
| 588 | { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 589 | AutoMutex lock(mLock); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 590 | if (loopStart != 0) { |
| 591 | *loopStart = mCblk->loopStart; |
| 592 | } |
| 593 | if (loopEnd != 0) { |
| 594 | *loopEnd = mCblk->loopEnd; |
| 595 | } |
| 596 | if (loopCount != 0) { |
| 597 | if (mCblk->loopCount < 0) { |
| 598 | *loopCount = -1; |
| 599 | } else { |
| 600 | *loopCount = mCblk->loopCount; |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | return NO_ERROR; |
| 605 | } |
| 606 | |
| 607 | status_t AudioTrack::setMarkerPosition(uint32_t marker) |
| 608 | { |
| 609 | if (mCbf == 0) return INVALID_OPERATION; |
| 610 | |
| 611 | mMarkerPosition = marker; |
Jean-Michel Trivi | 2c22aeb | 2009-03-24 18:11:07 -0700 | [diff] [blame] | 612 | mMarkerReached = false; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 613 | |
| 614 | return NO_ERROR; |
| 615 | } |
| 616 | |
| 617 | status_t AudioTrack::getMarkerPosition(uint32_t *marker) |
| 618 | { |
| 619 | if (marker == 0) return BAD_VALUE; |
| 620 | |
| 621 | *marker = mMarkerPosition; |
| 622 | |
| 623 | return NO_ERROR; |
| 624 | } |
| 625 | |
| 626 | status_t AudioTrack::setPositionUpdatePeriod(uint32_t updatePeriod) |
| 627 | { |
| 628 | if (mCbf == 0) return INVALID_OPERATION; |
| 629 | |
| 630 | uint32_t curPosition; |
| 631 | getPosition(&curPosition); |
| 632 | mNewPosition = curPosition + updatePeriod; |
| 633 | mUpdatePeriod = updatePeriod; |
| 634 | |
| 635 | return NO_ERROR; |
| 636 | } |
| 637 | |
| 638 | status_t AudioTrack::getPositionUpdatePeriod(uint32_t *updatePeriod) |
| 639 | { |
| 640 | if (updatePeriod == 0) return BAD_VALUE; |
| 641 | |
| 642 | *updatePeriod = mUpdatePeriod; |
| 643 | |
| 644 | return NO_ERROR; |
| 645 | } |
| 646 | |
| 647 | status_t AudioTrack::setPosition(uint32_t position) |
| 648 | { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 649 | AutoMutex lock(mLock); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 650 | Mutex::Autolock _l(mCblk->lock); |
| 651 | |
| 652 | if (!stopped()) return INVALID_OPERATION; |
| 653 | |
| 654 | if (position > mCblk->user) return BAD_VALUE; |
| 655 | |
| 656 | mCblk->server = position; |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 657 | android_atomic_or(CBLK_FORCEREADY_ON, &mCblk->flags); |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 658 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 659 | return NO_ERROR; |
| 660 | } |
| 661 | |
| 662 | status_t AudioTrack::getPosition(uint32_t *position) |
| 663 | { |
| 664 | if (position == 0) return BAD_VALUE; |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 665 | AutoMutex lock(mLock); |
Jean-Michel Trivi | cd07594 | 2011-08-25 16:47:23 -0700 | [diff] [blame] | 666 | *position = mFlushed ? 0 : mCblk->server; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 667 | |
| 668 | return NO_ERROR; |
| 669 | } |
| 670 | |
| 671 | status_t AudioTrack::reload() |
| 672 | { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 673 | AutoMutex lock(mLock); |
| 674 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 675 | if (!stopped()) return INVALID_OPERATION; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 676 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 677 | flush_l(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 678 | |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 679 | mCblk->stepUser(mCblk->frameCount); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 680 | |
| 681 | return NO_ERROR; |
| 682 | } |
| 683 | |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 684 | audio_io_handle_t AudioTrack::getOutput() |
| 685 | { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 686 | AutoMutex lock(mLock); |
| 687 | return getOutput_l(); |
| 688 | } |
| 689 | |
| 690 | // must be called with mLock held |
| 691 | audio_io_handle_t AudioTrack::getOutput_l() |
| 692 | { |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 693 | return AudioSystem::getOutput((audio_stream_type_t)mStreamType, |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 694 | mCblk->sampleRate, mFormat, mChannelMask, (audio_policy_output_flags_t)mFlags); |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 695 | } |
| 696 | |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 697 | int AudioTrack::getSessionId() |
| 698 | { |
| 699 | return mSessionId; |
| 700 | } |
| 701 | |
| 702 | status_t AudioTrack::attachAuxEffect(int effectId) |
| 703 | { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 704 | ALOGV("attachAuxEffect(%d)", effectId); |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 705 | status_t status = mAudioTrack->attachAuxEffect(effectId); |
| 706 | if (status == NO_ERROR) { |
| 707 | mAuxEffectId = effectId; |
| 708 | } |
| 709 | return status; |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 710 | } |
| 711 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 712 | // ------------------------------------------------------------------------- |
| 713 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 714 | // must be called with mLock held |
| 715 | status_t AudioTrack::createTrack_l( |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 716 | int streamType, |
| 717 | uint32_t sampleRate, |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 718 | uint32_t format, |
| 719 | uint32_t channelMask, |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 720 | int frameCount, |
| 721 | uint32_t flags, |
| 722 | const sp<IMemory>& sharedBuffer, |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 723 | audio_io_handle_t output, |
| 724 | bool enforceFrameCount) |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 725 | { |
| 726 | status_t status; |
| 727 | const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger(); |
| 728 | if (audioFlinger == 0) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 729 | ALOGE("Could not get audioflinger"); |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 730 | return NO_INIT; |
| 731 | } |
| 732 | |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 733 | int afSampleRate; |
| 734 | if (AudioSystem::getOutputSamplingRate(&afSampleRate, streamType) != NO_ERROR) { |
| 735 | return NO_INIT; |
| 736 | } |
| 737 | int afFrameCount; |
| 738 | if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) { |
| 739 | return NO_INIT; |
| 740 | } |
| 741 | uint32_t afLatency; |
| 742 | if (AudioSystem::getOutputLatency(&afLatency, streamType) != NO_ERROR) { |
| 743 | return NO_INIT; |
| 744 | } |
| 745 | |
| 746 | mNotificationFramesAct = mNotificationFramesReq; |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 747 | if (!audio_is_linear_pcm(format)) { |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 748 | if (sharedBuffer != 0) { |
| 749 | frameCount = sharedBuffer->size(); |
| 750 | } |
| 751 | } else { |
| 752 | // Ensure that buffer depth covers at least audio hardware latency |
| 753 | uint32_t minBufCount = afLatency / ((1000 * afFrameCount)/afSampleRate); |
| 754 | if (minBufCount < 2) minBufCount = 2; |
| 755 | |
| 756 | int minFrameCount = (afFrameCount*sampleRate*minBufCount)/afSampleRate; |
| 757 | |
| 758 | if (sharedBuffer == 0) { |
| 759 | if (frameCount == 0) { |
| 760 | frameCount = minFrameCount; |
| 761 | } |
| 762 | if (mNotificationFramesAct == 0) { |
| 763 | mNotificationFramesAct = frameCount/2; |
| 764 | } |
| 765 | // Make sure that application is notified with sufficient margin |
| 766 | // before underrun |
| 767 | if (mNotificationFramesAct > (uint32_t)frameCount/2) { |
| 768 | mNotificationFramesAct = frameCount/2; |
| 769 | } |
| 770 | if (frameCount < minFrameCount) { |
| 771 | if (enforceFrameCount) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 772 | ALOGE("Invalid buffer size: minFrameCount %d, frameCount %d", minFrameCount, frameCount); |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 773 | return BAD_VALUE; |
| 774 | } else { |
| 775 | frameCount = minFrameCount; |
| 776 | } |
| 777 | } |
| 778 | } else { |
| 779 | // Ensure that buffer alignment matches channelcount |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 780 | int channelCount = popcount(channelMask); |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 781 | if (((uint32_t)sharedBuffer->pointer() & (channelCount | 1)) != 0) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 782 | ALOGE("Invalid buffer alignement: address %p, channelCount %d", sharedBuffer->pointer(), channelCount); |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 783 | return BAD_VALUE; |
| 784 | } |
| 785 | frameCount = sharedBuffer->size()/channelCount/sizeof(int16_t); |
| 786 | } |
| 787 | } |
| 788 | |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 789 | sp<IAudioTrack> track = audioFlinger->createTrack(getpid(), |
| 790 | streamType, |
| 791 | sampleRate, |
| 792 | format, |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 793 | channelMask, |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 794 | frameCount, |
| 795 | ((uint16_t)flags) << 16, |
| 796 | sharedBuffer, |
| 797 | output, |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 798 | &mSessionId, |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 799 | &status); |
| 800 | |
| 801 | if (track == 0) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 802 | ALOGE("AudioFlinger could not create track, status: %d", status); |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 803 | return status; |
| 804 | } |
| 805 | sp<IMemory> cblk = track->getCblk(); |
| 806 | if (cblk == 0) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 807 | ALOGE("Could not get control block"); |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 808 | return NO_INIT; |
| 809 | } |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 810 | mAudioTrack = track; |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 811 | mCblkMemory = cblk; |
| 812 | mCblk = static_cast<audio_track_cblk_t*>(cblk->pointer()); |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 813 | android_atomic_or(CBLK_DIRECTION_OUT, &mCblk->flags); |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 814 | if (sharedBuffer == 0) { |
| 815 | mCblk->buffers = (char*)mCblk + sizeof(audio_track_cblk_t); |
| 816 | } else { |
| 817 | mCblk->buffers = sharedBuffer->pointer(); |
| 818 | // Force buffer full condition as data is already present in shared memory |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 819 | mCblk->stepUser(mCblk->frameCount); |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 820 | } |
| 821 | |
Eric Laurent | be916aa | 2010-06-01 23:49:17 -0700 | [diff] [blame] | 822 | mCblk->volumeLR = (uint32_t(uint16_t(mVolume[RIGHT] * 0x1000)) << 16) | uint16_t(mVolume[LEFT] * 0x1000); |
| 823 | mCblk->sendLevel = uint16_t(mSendLevel * 0x1000); |
Eric Laurent | 2beeb50 | 2010-07-16 07:43:46 -0700 | [diff] [blame] | 824 | mAudioTrack->attachAuxEffect(mAuxEffectId); |
Eric Laurent | 6100d2d | 2009-11-19 09:00:56 -0800 | [diff] [blame] | 825 | mCblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS; |
| 826 | mCblk->waitTimeMs = 0; |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 827 | mRemainingFrames = mNotificationFramesAct; |
| 828 | mLatency = afLatency + (1000*mCblk->frameCount) / sampleRate; |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 829 | return NO_ERROR; |
| 830 | } |
| 831 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 832 | status_t AudioTrack::obtainBuffer(Buffer* audioBuffer, int32_t waitCount) |
| 833 | { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 834 | AutoMutex lock(mLock); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 835 | int active; |
Glenn Kasten | d0965dd | 2011-06-22 16:18:04 -0700 | [diff] [blame] | 836 | status_t result = NO_ERROR; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 837 | audio_track_cblk_t* cblk = mCblk; |
| 838 | uint32_t framesReq = audioBuffer->frameCount; |
Eric Laurent | 1dd70b9 | 2009-04-21 07:56:33 -0700 | [diff] [blame] | 839 | uint32_t waitTimeMs = (waitCount < 0) ? cblk->bufferTimeoutMs : WAIT_PERIOD_MS; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 840 | |
| 841 | audioBuffer->frameCount = 0; |
| 842 | audioBuffer->size = 0; |
| 843 | |
| 844 | uint32_t framesAvail = cblk->framesAvailable(); |
| 845 | |
Eric Laurent | 9b7d950 | 2011-03-21 11:49:00 -0700 | [diff] [blame] | 846 | cblk->lock.lock(); |
| 847 | if (cblk->flags & CBLK_INVALID_MSK) { |
| 848 | goto create_new_track; |
| 849 | } |
| 850 | cblk->lock.unlock(); |
| 851 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 852 | if (framesAvail == 0) { |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 853 | cblk->lock.lock(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 854 | goto start_loop_here; |
| 855 | while (framesAvail == 0) { |
| 856 | active = mActive; |
Glenn Kasten | f6b1678 | 2011-12-15 09:51:17 -0800 | [diff] [blame] | 857 | if (CC_UNLIKELY(!active)) { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 858 | ALOGV("Not active and NO_MORE_BUFFERS"); |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 859 | cblk->lock.unlock(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 860 | return NO_MORE_BUFFERS; |
| 861 | } |
Glenn Kasten | f6b1678 | 2011-12-15 09:51:17 -0800 | [diff] [blame] | 862 | if (CC_UNLIKELY(!waitCount)) { |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 863 | cblk->lock.unlock(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 864 | return WOULD_BLOCK; |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 865 | } |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 866 | if (!(cblk->flags & CBLK_INVALID_MSK)) { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 867 | mLock.unlock(); |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 868 | result = cblk->cv.waitRelative(cblk->lock, milliseconds(waitTimeMs)); |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 869 | cblk->lock.unlock(); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 870 | mLock.lock(); |
| 871 | if (mActive == 0) { |
| 872 | return status_t(STOPPED); |
| 873 | } |
| 874 | cblk->lock.lock(); |
| 875 | } |
| 876 | |
| 877 | if (cblk->flags & CBLK_INVALID_MSK) { |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 878 | goto create_new_track; |
| 879 | } |
Glenn Kasten | f6b1678 | 2011-12-15 09:51:17 -0800 | [diff] [blame] | 880 | if (CC_UNLIKELY(result != NO_ERROR)) { |
Eric Laurent | 1dd70b9 | 2009-04-21 07:56:33 -0700 | [diff] [blame] | 881 | cblk->waitTimeMs += waitTimeMs; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 882 | if (cblk->waitTimeMs >= cblk->bufferTimeoutMs) { |
| 883 | // timing out when a loop has been set and we have already written upto loop end |
| 884 | // is a normal condition: no need to wake AudioFlinger up. |
| 885 | if (cblk->user < cblk->loopEnd) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 886 | ALOGW( "obtainBuffer timed out (is the CPU pegged?) %p " |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 887 | "user=%08x, server=%08x", this, cblk->user, cblk->server); |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 888 | //unlock cblk mutex before calling mAudioTrack->start() (see issue #1617140) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 889 | cblk->lock.unlock(); |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 890 | result = mAudioTrack->start(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 891 | cblk->lock.lock(); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 892 | if (result == DEAD_OBJECT) { |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 893 | android_atomic_or(CBLK_INVALID_ON, &cblk->flags); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 894 | create_new_track: |
| 895 | result = restoreTrack_l(cblk, false); |
| 896 | } |
| 897 | if (result != NO_ERROR) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 898 | ALOGW("obtainBuffer create Track error %d", result); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 899 | cblk->lock.unlock(); |
| 900 | return result; |
| 901 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 902 | } |
| 903 | cblk->waitTimeMs = 0; |
| 904 | } |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 905 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 906 | if (--waitCount == 0) { |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 907 | cblk->lock.unlock(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 908 | return TIMED_OUT; |
| 909 | } |
| 910 | } |
| 911 | // read the server count again |
| 912 | start_loop_here: |
| 913 | framesAvail = cblk->framesAvailable_l(); |
| 914 | } |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 915 | cblk->lock.unlock(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 916 | } |
| 917 | |
Eric Laurent | 44d9848 | 2010-09-30 16:12:31 -0700 | [diff] [blame] | 918 | // restart track if it was disabled by audioflinger due to previous underrun |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 919 | if (mActive && (cblk->flags & CBLK_DISABLED_MSK)) { |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 920 | android_atomic_and(~CBLK_DISABLED_ON, &cblk->flags); |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 921 | ALOGW("obtainBuffer() track %p disabled, restarting", this); |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 922 | mAudioTrack->start(); |
Eric Laurent | 44d9848 | 2010-09-30 16:12:31 -0700 | [diff] [blame] | 923 | } |
| 924 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 925 | cblk->waitTimeMs = 0; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 926 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 927 | if (framesReq > framesAvail) { |
| 928 | framesReq = framesAvail; |
| 929 | } |
| 930 | |
| 931 | uint32_t u = cblk->user; |
| 932 | uint32_t bufferEnd = cblk->userBase + cblk->frameCount; |
| 933 | |
| 934 | if (u + framesReq > bufferEnd) { |
| 935 | framesReq = bufferEnd - u; |
| 936 | } |
| 937 | |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 938 | audioBuffer->flags = mMuted ? Buffer::MUTE : 0; |
| 939 | audioBuffer->channelCount = mChannelCount; |
| 940 | audioBuffer->frameCount = framesReq; |
| 941 | audioBuffer->size = framesReq * cblk->frameSize; |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 942 | if (audio_is_linear_pcm(mFormat)) { |
| 943 | audioBuffer->format = AUDIO_FORMAT_PCM_16_BIT; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 944 | } else { |
| 945 | audioBuffer->format = mFormat; |
| 946 | } |
| 947 | audioBuffer->raw = (int8_t *)cblk->buffer(u); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 948 | active = mActive; |
| 949 | return active ? status_t(NO_ERROR) : status_t(STOPPED); |
| 950 | } |
| 951 | |
| 952 | void AudioTrack::releaseBuffer(Buffer* audioBuffer) |
| 953 | { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 954 | AutoMutex lock(mLock); |
| 955 | mCblk->stepUser(audioBuffer->frameCount); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 956 | } |
| 957 | |
| 958 | // ------------------------------------------------------------------------- |
| 959 | |
| 960 | ssize_t AudioTrack::write(const void* buffer, size_t userSize) |
| 961 | { |
| 962 | |
| 963 | if (mSharedBuffer != 0) return INVALID_OPERATION; |
| 964 | |
| 965 | if (ssize_t(userSize) < 0) { |
| 966 | // sanity-check. user is most-likely passing an error code. |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 967 | ALOGE("AudioTrack::write(buffer=%p, size=%u (%d)", |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 968 | buffer, userSize, userSize); |
| 969 | return BAD_VALUE; |
| 970 | } |
| 971 | |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 972 | ALOGV("write %p: %d bytes, mActive=%d", this, userSize, mActive); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 973 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 974 | // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed |
| 975 | // while we are accessing the cblk |
| 976 | mLock.lock(); |
| 977 | sp <IAudioTrack> audioTrack = mAudioTrack; |
| 978 | sp <IMemory> iMem = mCblkMemory; |
| 979 | mLock.unlock(); |
| 980 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 981 | ssize_t written = 0; |
| 982 | const int8_t *src = (const int8_t *)buffer; |
| 983 | Buffer audioBuffer; |
Eric Laurent | 33797ea | 2011-03-17 09:36:51 -0700 | [diff] [blame] | 984 | size_t frameSz = (size_t)frameSize(); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 985 | |
| 986 | do { |
Eric Laurent | 33797ea | 2011-03-17 09:36:51 -0700 | [diff] [blame] | 987 | audioBuffer.frameCount = userSize/frameSz; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 988 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 989 | // Calling obtainBuffer() with a negative wait count causes |
| 990 | // an (almost) infinite wait time. |
| 991 | status_t err = obtainBuffer(&audioBuffer, -1); |
| 992 | if (err < 0) { |
| 993 | // out of buffers, return #bytes written |
| 994 | if (err == status_t(NO_MORE_BUFFERS)) |
| 995 | break; |
| 996 | return ssize_t(err); |
| 997 | } |
| 998 | |
| 999 | size_t toWrite; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 1000 | |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 1001 | if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT)) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1002 | // Divide capacity by 2 to take expansion into account |
| 1003 | toWrite = audioBuffer.size>>1; |
| 1004 | // 8 to 16 bit conversion |
| 1005 | int count = toWrite; |
| 1006 | int16_t *dst = (int16_t *)(audioBuffer.i8); |
| 1007 | while(count--) { |
| 1008 | *dst++ = (int16_t)(*src++^0x80) << 8; |
| 1009 | } |
Eric Laurent | 3302526 | 2009-08-04 10:42:26 -0700 | [diff] [blame] | 1010 | } else { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1011 | toWrite = audioBuffer.size; |
| 1012 | memcpy(audioBuffer.i8, src, toWrite); |
| 1013 | src += toWrite; |
| 1014 | } |
| 1015 | userSize -= toWrite; |
| 1016 | written += toWrite; |
| 1017 | |
| 1018 | releaseBuffer(&audioBuffer); |
Eric Laurent | 33797ea | 2011-03-17 09:36:51 -0700 | [diff] [blame] | 1019 | } while (userSize >= frameSz); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1020 | |
| 1021 | return written; |
| 1022 | } |
| 1023 | |
| 1024 | // ------------------------------------------------------------------------- |
| 1025 | |
| 1026 | bool AudioTrack::processAudioBuffer(const sp<AudioTrackThread>& thread) |
| 1027 | { |
| 1028 | Buffer audioBuffer; |
| 1029 | uint32_t frames; |
| 1030 | size_t writtenSize; |
| 1031 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1032 | mLock.lock(); |
| 1033 | // acquire a strong reference on the IMemory and IAudioTrack so that they cannot be destroyed |
| 1034 | // while we are accessing the cblk |
| 1035 | sp <IAudioTrack> audioTrack = mAudioTrack; |
| 1036 | sp <IMemory> iMem = mCblkMemory; |
| 1037 | audio_track_cblk_t* cblk = mCblk; |
| 1038 | mLock.unlock(); |
| 1039 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1040 | // Manage underrun callback |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1041 | if (mActive && (cblk->framesAvailable() == cblk->frameCount)) { |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 1042 | ALOGV("Underrun user: %x, server: %x, flags %04x", cblk->user, cblk->server, cblk->flags); |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1043 | if (!(android_atomic_or(CBLK_UNDERRUN_ON, &cblk->flags) & CBLK_UNDERRUN_MSK)) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1044 | mCbf(EVENT_UNDERRUN, mUserData, 0); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1045 | if (cblk->server == cblk->frameCount) { |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 1046 | mCbf(EVENT_BUFFER_END, mUserData, 0); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1047 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1048 | if (mSharedBuffer != 0) return false; |
| 1049 | } |
| 1050 | } |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 1051 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1052 | // Manage loop end callback |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1053 | while (mLoopCount > cblk->loopCount) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1054 | int loopCount = -1; |
| 1055 | mLoopCount--; |
| 1056 | if (mLoopCount >= 0) loopCount = mLoopCount; |
| 1057 | |
| 1058 | mCbf(EVENT_LOOP_END, mUserData, (void *)&loopCount); |
| 1059 | } |
| 1060 | |
| 1061 | // Manage marker callback |
Jean-Michel Trivi | 2c22aeb | 2009-03-24 18:11:07 -0700 | [diff] [blame] | 1062 | if (!mMarkerReached && (mMarkerPosition > 0)) { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1063 | if (cblk->server >= mMarkerPosition) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1064 | mCbf(EVENT_MARKER, mUserData, (void *)&mMarkerPosition); |
Jean-Michel Trivi | 2c22aeb | 2009-03-24 18:11:07 -0700 | [diff] [blame] | 1065 | mMarkerReached = true; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1066 | } |
| 1067 | } |
| 1068 | |
| 1069 | // Manage new position callback |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 1070 | if (mUpdatePeriod > 0) { |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1071 | while (cblk->server >= mNewPosition) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1072 | mCbf(EVENT_NEW_POS, mUserData, (void *)&mNewPosition); |
| 1073 | mNewPosition += mUpdatePeriod; |
| 1074 | } |
| 1075 | } |
| 1076 | |
| 1077 | // If Shared buffer is used, no data is requested from client. |
| 1078 | if (mSharedBuffer != 0) { |
| 1079 | frames = 0; |
| 1080 | } else { |
| 1081 | frames = mRemainingFrames; |
| 1082 | } |
| 1083 | |
Eric Laurent | 2267ba1 | 2011-09-07 11:13:23 -0700 | [diff] [blame] | 1084 | int32_t waitCount = -1; |
| 1085 | if (mUpdatePeriod || (!mMarkerReached && mMarkerPosition) || mLoopCount) { |
| 1086 | waitCount = 1; |
| 1087 | } |
| 1088 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1089 | do { |
| 1090 | |
| 1091 | audioBuffer.frameCount = frames; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 1092 | |
| 1093 | // Calling obtainBuffer() with a wait count of 1 |
| 1094 | // limits wait time to WAIT_PERIOD_MS. This prevents from being |
| 1095 | // stuck here not being able to handle timed events (position, markers, loops). |
Eric Laurent | 2267ba1 | 2011-09-07 11:13:23 -0700 | [diff] [blame] | 1096 | status_t err = obtainBuffer(&audioBuffer, waitCount); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1097 | if (err < NO_ERROR) { |
| 1098 | if (err != TIMED_OUT) { |
Steve Block | 29357bc | 2012-01-06 19:20:56 +0000 | [diff] [blame^] | 1099 | ALOGE_IF(err != status_t(NO_MORE_BUFFERS), "Error obtaining an audio buffer, giving up."); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1100 | return false; |
| 1101 | } |
| 1102 | break; |
| 1103 | } |
| 1104 | if (err == status_t(STOPPED)) return false; |
| 1105 | |
| 1106 | // Divide buffer size by 2 to take into account the expansion |
| 1107 | // due to 8 to 16 bit conversion: the callback must fill only half |
| 1108 | // of the destination buffer |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 1109 | if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT)) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1110 | audioBuffer.size >>= 1; |
| 1111 | } |
| 1112 | |
| 1113 | size_t reqSize = audioBuffer.size; |
| 1114 | mCbf(EVENT_MORE_DATA, mUserData, &audioBuffer); |
| 1115 | writtenSize = audioBuffer.size; |
| 1116 | |
| 1117 | // Sanity check on returned size |
The Android Open Source Project | 8555d08 | 2009-03-05 14:34:35 -0800 | [diff] [blame] | 1118 | if (ssize_t(writtenSize) <= 0) { |
| 1119 | // The callback is done filling buffers |
| 1120 | // Keep this thread going to handle timed events and |
| 1121 | // still try to get more data in intervals of WAIT_PERIOD_MS |
| 1122 | // but don't just loop and block the CPU, so wait |
| 1123 | usleep(WAIT_PERIOD_MS*1000); |
| 1124 | break; |
| 1125 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1126 | if (writtenSize > reqSize) writtenSize = reqSize; |
| 1127 | |
Dima Zavin | fce7a47 | 2011-04-19 22:30:36 -0700 | [diff] [blame] | 1128 | if (mFormat == AUDIO_FORMAT_PCM_8_BIT && !(mFlags & AUDIO_POLICY_OUTPUT_FLAG_DIRECT)) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1129 | // 8 to 16 bit conversion |
| 1130 | const int8_t *src = audioBuffer.i8 + writtenSize-1; |
| 1131 | int count = writtenSize; |
| 1132 | int16_t *dst = audioBuffer.i16 + writtenSize-1; |
| 1133 | while(count--) { |
| 1134 | *dst-- = (int16_t)(*src--^0x80) << 8; |
| 1135 | } |
| 1136 | writtenSize <<= 1; |
| 1137 | } |
| 1138 | |
| 1139 | audioBuffer.size = writtenSize; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 1140 | // NOTE: mCblk->frameSize is not equal to AudioTrack::frameSize() for |
| 1141 | // 8 bit PCM data: in this case, mCblk->frameSize is based on a sampel size of |
| 1142 | // 16 bit. |
| 1143 | audioBuffer.frameCount = writtenSize/mCblk->frameSize; |
| 1144 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1145 | frames -= audioBuffer.frameCount; |
| 1146 | |
| 1147 | releaseBuffer(&audioBuffer); |
| 1148 | } |
| 1149 | while (frames); |
| 1150 | |
| 1151 | if (frames == 0) { |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 1152 | mRemainingFrames = mNotificationFramesAct; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1153 | } else { |
| 1154 | mRemainingFrames = frames; |
| 1155 | } |
| 1156 | return true; |
| 1157 | } |
| 1158 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1159 | // must be called with mLock and cblk.lock held. Callers must also hold strong references on |
| 1160 | // the IAudioTrack and IMemory in case they are recreated here. |
| 1161 | // If the IAudioTrack is successfully restored, the cblk pointer is updated |
| 1162 | status_t AudioTrack::restoreTrack_l(audio_track_cblk_t*& cblk, bool fromStart) |
| 1163 | { |
| 1164 | status_t result; |
| 1165 | |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1166 | if (!(android_atomic_or(CBLK_RESTORING_ON, &cblk->flags) & CBLK_RESTORING_MSK)) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1167 | ALOGW("dead IAudioTrack, creating a new one from %s TID %d", |
Eric Laurent | cfe2ba6 | 2011-09-13 15:04:17 -0700 | [diff] [blame] | 1168 | fromStart ? "start()" : "obtainBuffer()", gettid()); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1169 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1170 | // signal old cblk condition so that other threads waiting for available buffers stop |
| 1171 | // waiting now |
| 1172 | cblk->cv.broadcast(); |
| 1173 | cblk->lock.unlock(); |
| 1174 | |
Eric Laurent | 9f6530f | 2011-08-30 10:18:54 -0700 | [diff] [blame] | 1175 | // refresh the audio configuration cache in this process to make sure we get new |
| 1176 | // output parameters in getOutput_l() and createTrack_l() |
| 1177 | AudioSystem::clearAudioConfigCache(); |
| 1178 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1179 | // if the new IAudioTrack is created, createTrack_l() will modify the |
| 1180 | // following member variables: mAudioTrack, mCblkMemory and mCblk. |
| 1181 | // It will also delete the strong references on previous IAudioTrack and IMemory |
| 1182 | result = createTrack_l(mStreamType, |
| 1183 | cblk->sampleRate, |
| 1184 | mFormat, |
Jean-Michel Trivi | 0d255b2 | 2011-05-24 15:53:33 -0700 | [diff] [blame] | 1185 | mChannelMask, |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1186 | mFrameCount, |
| 1187 | mFlags, |
| 1188 | mSharedBuffer, |
| 1189 | getOutput_l(), |
| 1190 | false); |
| 1191 | |
| 1192 | if (result == NO_ERROR) { |
Eric Laurent | 408b8dc | 2011-09-06 12:36:15 -0700 | [diff] [blame] | 1193 | uint32_t user = cblk->user; |
| 1194 | uint32_t server = cblk->server; |
Eric Laurent | 9b7d950 | 2011-03-21 11:49:00 -0700 | [diff] [blame] | 1195 | // restore write index and set other indexes to reflect empty buffer status |
Eric Laurent | 408b8dc | 2011-09-06 12:36:15 -0700 | [diff] [blame] | 1196 | mCblk->user = user; |
| 1197 | mCblk->server = user; |
| 1198 | mCblk->userBase = user; |
| 1199 | mCblk->serverBase = user; |
Eric Laurent | 9b7d950 | 2011-03-21 11:49:00 -0700 | [diff] [blame] | 1200 | // restore loop: this is not guaranteed to succeed if new frame count is not |
| 1201 | // compatible with loop length |
| 1202 | setLoop_l(cblk->loopStart, cblk->loopEnd, cblk->loopCount); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1203 | if (!fromStart) { |
| 1204 | mCblk->bufferTimeoutMs = MAX_RUN_TIMEOUT_MS; |
Eric Laurent | 408b8dc | 2011-09-06 12:36:15 -0700 | [diff] [blame] | 1205 | // Make sure that a client relying on callback events indicating underrun or |
| 1206 | // the actual amount of audio frames played (e.g SoundPool) receives them. |
| 1207 | if (mSharedBuffer == 0) { |
| 1208 | uint32_t frames = 0; |
| 1209 | if (user > server) { |
| 1210 | frames = ((user - server) > mCblk->frameCount) ? |
| 1211 | mCblk->frameCount : (user - server); |
| 1212 | memset(mCblk->buffers, 0, frames * mCblk->frameSize); |
| 1213 | } |
| 1214 | // restart playback even if buffer is not completely filled. |
| 1215 | android_atomic_or(CBLK_FORCEREADY_ON, &mCblk->flags); |
| 1216 | // stepUser() clears CBLK_UNDERRUN_ON flag enabling underrun callbacks to |
| 1217 | // the client |
| 1218 | mCblk->stepUser(frames); |
| 1219 | } |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1220 | } |
Eric Laurent | 9b7d950 | 2011-03-21 11:49:00 -0700 | [diff] [blame] | 1221 | if (mActive) { |
| 1222 | result = mAudioTrack->start(); |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1223 | ALOGW_IF(result != NO_ERROR, "restoreTrack_l() start() failed status %d", result); |
Eric Laurent | 9b7d950 | 2011-03-21 11:49:00 -0700 | [diff] [blame] | 1224 | } |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1225 | if (fromStart && result == NO_ERROR) { |
| 1226 | mNewPosition = mCblk->server + mUpdatePeriod; |
| 1227 | } |
| 1228 | } |
| 1229 | if (result != NO_ERROR) { |
Eric Laurent | cfe2ba6 | 2011-09-13 15:04:17 -0700 | [diff] [blame] | 1230 | android_atomic_and(~CBLK_RESTORING_ON, &cblk->flags); |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1231 | ALOGW_IF(result != NO_ERROR, "restoreTrack_l() failed status %d", result); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1232 | } |
Eric Laurent | cfe2ba6 | 2011-09-13 15:04:17 -0700 | [diff] [blame] | 1233 | mRestoreStatus = result; |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1234 | // signal old cblk condition for other threads waiting for restore completion |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1235 | android_atomic_or(CBLK_RESTORED_ON, &cblk->flags); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1236 | cblk->cv.broadcast(); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1237 | } else { |
| 1238 | if (!(cblk->flags & CBLK_RESTORED_MSK)) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1239 | ALOGW("dead IAudioTrack, waiting for a new one TID %d", gettid()); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1240 | mLock.unlock(); |
| 1241 | result = cblk->cv.waitRelative(cblk->lock, milliseconds(RESTORE_TIMEOUT_MS)); |
Eric Laurent | cfe2ba6 | 2011-09-13 15:04:17 -0700 | [diff] [blame] | 1242 | if (result == NO_ERROR) { |
| 1243 | result = mRestoreStatus; |
| 1244 | } |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1245 | cblk->lock.unlock(); |
| 1246 | mLock.lock(); |
| 1247 | } else { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1248 | ALOGW("dead IAudioTrack, already restored TID %d", gettid()); |
Eric Laurent | cfe2ba6 | 2011-09-13 15:04:17 -0700 | [diff] [blame] | 1249 | result = mRestoreStatus; |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1250 | cblk->lock.unlock(); |
| 1251 | } |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1252 | } |
Steve Block | 3856b09 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 1253 | ALOGV("restoreTrack_l() status %d mActive %d cblk %p, old cblk %p flags %08x old flags %08x", |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1254 | result, mActive, mCblk, cblk, mCblk->flags, cblk->flags); |
| 1255 | |
| 1256 | if (result == NO_ERROR) { |
| 1257 | // from now on we switch to the newly created cblk |
| 1258 | cblk = mCblk; |
| 1259 | } |
| 1260 | cblk->lock.lock(); |
| 1261 | |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1262 | ALOGW_IF(result != NO_ERROR, "restoreTrack_l() error %d TID %d", result, gettid()); |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1263 | |
| 1264 | return result; |
| 1265 | } |
| 1266 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1267 | status_t AudioTrack::dump(int fd, const Vector<String16>& args) const |
| 1268 | { |
| 1269 | |
| 1270 | const size_t SIZE = 256; |
| 1271 | char buffer[SIZE]; |
| 1272 | String8 result; |
| 1273 | |
| 1274 | result.append(" AudioTrack::dump\n"); |
| 1275 | snprintf(buffer, 255, " stream type(%d), left - right volume(%f, %f)\n", mStreamType, mVolume[0], mVolume[1]); |
| 1276 | result.append(buffer); |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 1277 | snprintf(buffer, 255, " format(%d), channel count(%d), frame count(%d)\n", mFormat, mChannelCount, mCblk->frameCount); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1278 | result.append(buffer); |
Eric Laurent | 5732662 | 2009-07-07 07:10:45 -0700 | [diff] [blame] | 1279 | snprintf(buffer, 255, " sample rate(%d), status(%d), muted(%d)\n", (mCblk == 0) ? 0 : mCblk->sampleRate, mStatus, mMuted); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1280 | result.append(buffer); |
| 1281 | snprintf(buffer, 255, " active(%d), latency (%d)\n", mActive, mLatency); |
| 1282 | result.append(buffer); |
| 1283 | ::write(fd, result.string(), result.size()); |
| 1284 | return NO_ERROR; |
| 1285 | } |
| 1286 | |
| 1287 | // ========================================================================= |
| 1288 | |
| 1289 | AudioTrack::AudioTrackThread::AudioTrackThread(AudioTrack& receiver, bool bCanCallJava) |
| 1290 | : Thread(bCanCallJava), mReceiver(receiver) |
| 1291 | { |
| 1292 | } |
| 1293 | |
| 1294 | bool AudioTrack::AudioTrackThread::threadLoop() |
| 1295 | { |
| 1296 | return mReceiver.processAudioBuffer(this); |
| 1297 | } |
| 1298 | |
| 1299 | status_t AudioTrack::AudioTrackThread::readyToRun() |
| 1300 | { |
| 1301 | return NO_ERROR; |
| 1302 | } |
| 1303 | |
| 1304 | void AudioTrack::AudioTrackThread::onFirstRef() |
| 1305 | { |
| 1306 | } |
| 1307 | |
| 1308 | // ========================================================================= |
| 1309 | |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1310 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1311 | audio_track_cblk_t::audio_track_cblk_t() |
Mathias Agopian | 54b1a05 | 2010-03-19 16:14:13 -0700 | [diff] [blame] | 1312 | : lock(Mutex::SHARED), cv(Condition::SHARED), user(0), server(0), |
| 1313 | userBase(0), serverBase(0), buffers(0), frameCount(0), |
| 1314 | loopStart(UINT_MAX), loopEnd(UINT_MAX), loopCount(0), volumeLR(0), |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1315 | sendLevel(0), flags(0) |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1316 | { |
| 1317 | } |
| 1318 | |
| 1319 | uint32_t audio_track_cblk_t::stepUser(uint32_t frameCount) |
| 1320 | { |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1321 | uint32_t u = user; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1322 | |
| 1323 | u += frameCount; |
| 1324 | // Ensure that user is never ahead of server for AudioRecord |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 1325 | if (flags & CBLK_DIRECTION_MSK) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1326 | // If stepServer() has been called once, switch to normal obtainBuffer() timeout period |
| 1327 | if (bufferTimeoutMs == MAX_STARTUP_TIMEOUT_MS-1) { |
| 1328 | bufferTimeoutMs = MAX_RUN_TIMEOUT_MS; |
| 1329 | } |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1330 | } else if (u > server) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1331 | ALOGW("stepServer occurred after track reset"); |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1332 | u = server; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1333 | } |
| 1334 | |
| 1335 | if (u >= userBase + this->frameCount) { |
| 1336 | userBase += this->frameCount; |
| 1337 | } |
| 1338 | |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1339 | user = u; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1340 | |
| 1341 | // Clear flow control error condition as new data has been written/read to/from buffer. |
Eric Laurent | 33797ea | 2011-03-17 09:36:51 -0700 | [diff] [blame] | 1342 | if (flags & CBLK_UNDERRUN_MSK) { |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1343 | android_atomic_and(~CBLK_UNDERRUN_MSK, &flags); |
Eric Laurent | 33797ea | 2011-03-17 09:36:51 -0700 | [diff] [blame] | 1344 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1345 | |
| 1346 | return u; |
| 1347 | } |
| 1348 | |
| 1349 | bool audio_track_cblk_t::stepServer(uint32_t frameCount) |
| 1350 | { |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1351 | if (!tryLock()) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1352 | ALOGW("stepServer() could not lock cblk"); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1353 | return false; |
| 1354 | } |
| 1355 | |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1356 | uint32_t s = server; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1357 | |
| 1358 | s += frameCount; |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 1359 | if (flags & CBLK_DIRECTION_MSK) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1360 | // Mark that we have read the first buffer so that next time stepUser() is called |
| 1361 | // we switch to normal obtainBuffer() timeout period |
| 1362 | if (bufferTimeoutMs == MAX_STARTUP_TIMEOUT_MS) { |
Eric Laurent | 34f1d8e | 2009-11-04 08:27:26 -0800 | [diff] [blame] | 1363 | bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS - 1; |
Eric Laurent | c2f1f07 | 2009-07-17 12:17:14 -0700 | [diff] [blame] | 1364 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1365 | // It is possible that we receive a flush() |
| 1366 | // while the mixer is processing a block: in this case, |
| 1367 | // stepServer() is called After the flush() has reset u & s and |
| 1368 | // we have s > u |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1369 | if (s > user) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1370 | ALOGW("stepServer occurred after track reset"); |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1371 | s = user; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1372 | } |
| 1373 | } |
| 1374 | |
| 1375 | if (s >= loopEnd) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1376 | ALOGW_IF(s > loopEnd, "stepServer: s %u > loopEnd %u", s, loopEnd); |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1377 | s = loopStart; |
| 1378 | if (--loopCount == 0) { |
| 1379 | loopEnd = UINT_MAX; |
| 1380 | loopStart = UINT_MAX; |
| 1381 | } |
| 1382 | } |
| 1383 | if (s >= serverBase + this->frameCount) { |
| 1384 | serverBase += this->frameCount; |
| 1385 | } |
| 1386 | |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1387 | server = s; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1388 | |
Eric Laurent | 1703cdf | 2011-03-07 14:52:59 -0800 | [diff] [blame] | 1389 | if (!(flags & CBLK_INVALID_MSK)) { |
| 1390 | cv.signal(); |
| 1391 | } |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1392 | lock.unlock(); |
| 1393 | return true; |
| 1394 | } |
| 1395 | |
| 1396 | void* audio_track_cblk_t::buffer(uint32_t offset) const |
| 1397 | { |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1398 | return (int8_t *)buffers + (offset - userBase) * frameSize; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1399 | } |
| 1400 | |
| 1401 | uint32_t audio_track_cblk_t::framesAvailable() |
| 1402 | { |
| 1403 | Mutex::Autolock _l(lock); |
| 1404 | return framesAvailable_l(); |
| 1405 | } |
| 1406 | |
| 1407 | uint32_t audio_track_cblk_t::framesAvailable_l() |
| 1408 | { |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1409 | uint32_t u = user; |
| 1410 | uint32_t s = server; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1411 | |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 1412 | if (flags & CBLK_DIRECTION_MSK) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1413 | uint32_t limit = (s < loopStart) ? s : loopStart; |
| 1414 | return limit + frameCount - u; |
| 1415 | } else { |
| 1416 | return frameCount + u - s; |
| 1417 | } |
| 1418 | } |
| 1419 | |
| 1420 | uint32_t audio_track_cblk_t::framesReady() |
| 1421 | { |
Glenn Kasten | 9054897 | 2011-12-13 11:45:07 -0800 | [diff] [blame] | 1422 | uint32_t u = user; |
| 1423 | uint32_t s = server; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1424 | |
Eric Laurent | d1b449a | 2010-05-14 03:26:45 -0700 | [diff] [blame] | 1425 | if (flags & CBLK_DIRECTION_MSK) { |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1426 | if (u < loopEnd) { |
| 1427 | return u - s; |
| 1428 | } else { |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1429 | // do not block on mutex shared with client on AudioFlinger side |
| 1430 | if (!tryLock()) { |
Steve Block | 5ff1dd5 | 2012-01-05 23:22:43 +0000 | [diff] [blame] | 1431 | ALOGW("framesReady() could not lock cblk"); |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1432 | return 0; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1433 | } |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1434 | uint32_t frames = UINT_MAX; |
| 1435 | if (loopCount >= 0) { |
| 1436 | frames = (loopEnd - loopStart)*loopCount + u - s; |
| 1437 | } |
| 1438 | lock.unlock(); |
| 1439 | return frames; |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1440 | } |
| 1441 | } else { |
| 1442 | return s - u; |
| 1443 | } |
| 1444 | } |
| 1445 | |
Eric Laurent | 38ccae2 | 2011-03-28 18:37:07 -0700 | [diff] [blame] | 1446 | bool audio_track_cblk_t::tryLock() |
| 1447 | { |
| 1448 | // the code below simulates lock-with-timeout |
| 1449 | // we MUST do this to protect the AudioFlinger server |
| 1450 | // as this lock is shared with the client. |
| 1451 | status_t err; |
| 1452 | |
| 1453 | err = lock.tryLock(); |
| 1454 | if (err == -EBUSY) { // just wait a bit |
| 1455 | usleep(1000); |
| 1456 | err = lock.tryLock(); |
| 1457 | } |
| 1458 | if (err != NO_ERROR) { |
| 1459 | // probably, the client just died. |
| 1460 | return false; |
| 1461 | } |
| 1462 | return true; |
| 1463 | } |
| 1464 | |
The Android Open Source Project | 89fa4ad | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1465 | // ------------------------------------------------------------------------- |
| 1466 | |
| 1467 | }; // namespace android |