diff options
author | Glenn Kasten <gkasten@google.com> | 2014-03-07 01:28:22 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-03-07 01:28:23 +0000 |
commit | 1c32a00b8750998562a8d76351ba5c6d2ed788c8 (patch) | |
tree | 68ac5f1ccd1c53a7ba7da918eec2ea96c5918b94 /media/libmedia | |
parent | 1bdf803fde294017d8b504891618f688a21a2e75 (diff) | |
parent | 96f04886d1c1bfbc422e2be033ea66be83e42441 (diff) | |
download | frameworks_av-1c32a00b8750998562a8d76351ba5c6d2ed788c8.zip frameworks_av-1c32a00b8750998562a8d76351ba5c6d2ed788c8.tar.gz frameworks_av-1c32a00b8750998562a8d76351ba5c6d2ed788c8.tar.bz2 |
Merge "Simplify AudioTrack stream end and fix race"
Diffstat (limited to 'media/libmedia')
-rw-r--r-- | media/libmedia/AudioTrack.cpp | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/media/libmedia/AudioTrack.cpp b/media/libmedia/AudioTrack.cpp index f353fac..3217171 100644 --- a/media/libmedia/AudioTrack.cpp +++ b/media/libmedia/AudioTrack.cpp @@ -1507,6 +1507,7 @@ nsecs_t AudioTrack::processAudioBuffer() } size_t misalignment = mProxy->getMisalignment(); uint32_t sequence = mSequence; + sp<AudioTrackClientProxy> proxy = mProxy; // These fields don't need to be cached, because they are assigned only by set(): // mTransfer, mCbf, mUserData, mFormat, mFrameSize, mFrameSizeAF, mFlags @@ -1515,35 +1516,32 @@ nsecs_t AudioTrack::processAudioBuffer() mLock.unlock(); if (waitStreamEnd) { - AutoMutex lock(mLock); - - sp<AudioTrackClientProxy> proxy = mProxy; - sp<IMemory> iMem = mCblkMemory; - struct timespec timeout; timeout.tv_sec = WAIT_STREAM_END_TIMEOUT_SEC; timeout.tv_nsec = 0; - mLock.unlock(); - status_t status = mProxy->waitStreamEndDone(&timeout); - mLock.lock(); + status_t status = proxy->waitStreamEndDone(&timeout); switch (status) { case NO_ERROR: case DEAD_OBJECT: case TIMED_OUT: - mLock.unlock(); mCbf(EVENT_STREAM_END, mUserData, NULL); - mLock.lock(); - if (mState == STATE_STOPPING) { - mState = STATE_STOPPED; - if (status != DEAD_OBJECT) { - return NS_INACTIVE; + { + AutoMutex lock(mLock); + // The previously assigned value of waitStreamEnd is no longer valid, + // since the mutex has been unlocked and either the callback handler + // or another thread could have re-started the AudioTrack during that time. + waitStreamEnd = mState == STATE_STOPPING; + if (waitStreamEnd) { + mState = STATE_STOPPED; } } - return 0; - default: - return 0; + if (waitStreamEnd && status != DEAD_OBJECT) { + return NS_INACTIVE; + } + break; } + return 0; } // perform callbacks while unlocked |