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