am 220ab887: Merge "Issue 3032913: improve AudioTrack recovery time" into gingerbread

Merge commit '220ab8877b234e6807b7f6d9028ba55d23220301' into gingerbread-plus-aosp

* commit '220ab8877b234e6807b7f6d9028ba55d23220301':
  Issue 3032913: improve AudioTrack recovery time
This commit is contained in:
Eric Laurent
2010-09-30 17:47:07 -07:00
committed by Android Git Automerger
3 changed files with 26 additions and 6 deletions

View File

@@ -42,8 +42,11 @@ namespace android {
#define CBLK_FORCEREADY_ON 0x0004 // track is considered ready immediately by AudioFlinger #define CBLK_FORCEREADY_ON 0x0004 // track is considered ready immediately by AudioFlinger
#define CBLK_FORCEREADY_OFF 0x0000 // track is ready when buffer full #define CBLK_FORCEREADY_OFF 0x0000 // track is ready when buffer full
#define CBLK_INVALID_MSK 0x0008 #define CBLK_INVALID_MSK 0x0008
#define CBLK_INVALID_ON 0x0008 // track buffer is invalidated by AudioFlinger: must be re-created #define CBLK_INVALID_ON 0x0008 // track buffer is invalidated by AudioFlinger:
#define CBLK_INVALID_OFF 0x0000 #define CBLK_INVALID_OFF 0x0000 // must be re-created
#define CBLK_DISABLED_MSK 0x0010
#define CBLK_DISABLED_ON 0x0010 // track disabled by AudioFlinger due to underrun:
#define CBLK_DISABLED_OFF 0x0000 // must be re-started
struct audio_track_cblk_t struct audio_track_cblk_t
{ {

View File

@@ -316,6 +316,7 @@ void AudioTrack::start()
mNewPosition = mCblk->server + mUpdatePeriod; mNewPosition = mCblk->server + mUpdatePeriod;
mCblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS; mCblk->bufferTimeoutMs = MAX_STARTUP_TIMEOUT_MS;
mCblk->waitTimeMs = 0; mCblk->waitTimeMs = 0;
mCblk->flags &= ~CBLK_DISABLED_ON;
if (t != 0) { if (t != 0) {
t->run("AudioTrackThread", THREAD_PRIORITY_AUDIO_CLIENT); t->run("AudioTrackThread", THREAD_PRIORITY_AUDIO_CLIENT);
} else { } else {
@@ -842,6 +843,13 @@ create_new_track:
cblk->lock.unlock(); cblk->lock.unlock();
} }
// restart track if it was disabled by audioflinger due to previous underrun
if (cblk->flags & CBLK_DISABLED_MSK) {
cblk->flags &= ~CBLK_DISABLED_ON;
LOGW("obtainBuffer() track %p disabled, restarting", this);
mAudioTrack->start();
}
cblk->waitTimeMs = 0; cblk->waitTimeMs = 0;
if (framesReq > framesAvail) { if (framesReq > framesAvail) {

View File

@@ -1856,6 +1856,8 @@ uint32_t AudioFlinger::MixerThread::prepareTracks_l(const SortedVector< wp<Track
if (--(track->mRetryCount) <= 0) { if (--(track->mRetryCount) <= 0) {
LOGV("BUFFER TIMEOUT: remove(%d) from active list on thread %p", track->name(), this); LOGV("BUFFER TIMEOUT: remove(%d) from active list on thread %p", track->name(), this);
tracksToRemove->add(track); tracksToRemove->add(track);
// indicate to client process that the track was disabled because of underrun
cblk->flags |= CBLK_DISABLED_ON;
} else if (mixerStatus != MIXER_TRACKS_READY) { } else if (mixerStatus != MIXER_TRACKS_READY) {
mixerStatus = MIXER_TRACKS_ENABLED; mixerStatus = MIXER_TRACKS_ENABLED;
} }
@@ -2790,7 +2792,7 @@ AudioFlinger::ThreadBase::TrackBase::TrackBase(
mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t); mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t)); memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
// Force underrun condition to avoid false underrun callback until first data is // Force underrun condition to avoid false underrun callback until first data is
// written to buffer // written to buffer (other flags are cleared)
mCblk->flags = CBLK_UNDERRUN_ON; mCblk->flags = CBLK_UNDERRUN_ON;
} else { } else {
mBuffer = sharedBuffer->pointer(); mBuffer = sharedBuffer->pointer();
@@ -2813,7 +2815,7 @@ AudioFlinger::ThreadBase::TrackBase::TrackBase(
mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t); mBuffer = (char*)mCblk + sizeof(audio_track_cblk_t);
memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t)); memset(mBuffer, 0, frameCount*channelCount*sizeof(int16_t));
// Force underrun condition to avoid false underrun callback until first data is // Force underrun condition to avoid false underrun callback until first data is
// written to buffer // written to buffer (other flags are cleared)
mCblk->flags = CBLK_UNDERRUN_ON; mCblk->flags = CBLK_UNDERRUN_ON;
mBufferEnd = (uint8_t *)mBuffer + bufferSize; mBufferEnd = (uint8_t *)mBuffer + bufferSize;
} }
@@ -3794,6 +3796,8 @@ bool AudioFlinger::RecordThread::threadLoop()
AudioBufferProvider::Buffer buffer; AudioBufferProvider::Buffer buffer;
sp<RecordTrack> activeTrack; sp<RecordTrack> activeTrack;
nsecs_t lastWarning = 0;
// start recording // start recording
while (!exitPending()) { while (!exitPending()) {
@@ -3935,8 +3939,13 @@ bool AudioFlinger::RecordThread::threadLoop()
} }
// client isn't retrieving buffers fast enough // client isn't retrieving buffers fast enough
else { else {
if (!mActiveTrack->setOverflow()) if (!mActiveTrack->setOverflow()) {
LOGW("RecordThread: buffer overflow"); nsecs_t now = systemTime();
if ((now - lastWarning) > kWarningThrottle) {
LOGW("RecordThread: buffer overflow");
lastWarning = now;
}
}
// Release the processor for a while before asking for a new buffer. // Release the processor for a while before asking for a new buffer.
// This will give the application more chance to read from the buffer and // This will give the application more chance to read from the buffer and
// clear the overflow. // clear the overflow.