summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2010-08-10 18:57:43 -0700
committerJames Dong <jdong@google.com>2010-08-10 19:59:04 -0700
commit47204e1806da9f849464d0cef936851d7e561607 (patch)
treee6e50095f13c53c283001bb78ed4ab61ec0c5d3d /include
parenteaf0e0786c4c21d6c63d8f1f4515cb2a5311493b (diff)
downloadframeworks_av-47204e1806da9f849464d0cef936851d7e561607.zip
frameworks_av-47204e1806da9f849464d0cef936851d7e561607.tar.gz
frameworks_av-47204e1806da9f849464d0cef936851d7e561607.tar.bz2
Handle large audio lost
Change-Id: I2687ad855aac758946954d0b3fe7aff9f7b5ae7c
Diffstat (limited to 'include')
-rw-r--r--include/media/stagefright/AudioSource.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/media/stagefright/AudioSource.h b/include/media/stagefright/AudioSource.h
index f1d45d2..2597e9e 100644
--- a/include/media/stagefright/AudioSource.h
+++ b/include/media/stagefright/AudioSource.h
@@ -60,7 +60,8 @@ private:
int64_t mStartTimeUs;
int16_t mMaxAmplitude;
int64_t mPrevSampleTimeUs;
- int64_t mNumLostFrames;
+ int64_t mTotalLostFrames;
+ int64_t mPrevLostBytes;
MediaBufferGroup *mGroup;