diff options
| author | James Dong <jdong@google.com> | 2010-08-10 18:57:43 -0700 |
|---|---|---|
| committer | James Dong <jdong@google.com> | 2010-08-10 19:59:04 -0700 |
| commit | afe5305855e2f3d830337f768028615a44d4aa16 (patch) | |
| tree | edc28f3a5851a1526ffa32684afa9914636cd044 /include | |
| parent | 224ab9a5c6f7ae70fe55bf3d5604cbdf883baee7 (diff) | |
| download | frameworks_base-afe5305855e2f3d830337f768028615a44d4aa16.zip frameworks_base-afe5305855e2f3d830337f768028615a44d4aa16.tar.gz frameworks_base-afe5305855e2f3d830337f768028615a44d4aa16.tar.bz2 | |
Handle large audio lost
Change-Id: I2687ad855aac758946954d0b3fe7aff9f7b5ae7c
Diffstat (limited to 'include')
| -rw-r--r-- | include/media/stagefright/AudioSource.h | 3 |
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; |
