summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-01-17 21:53:55 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-01-17 21:53:56 +0000
commit3a0b6bd22aa32daa729b05c33896400807027eee (patch)
tree40f7c15432daa0160142e4c529eea5dbf9af7cc3 /include
parent76508a7e3751f9cb4210afa4416f1f0d9ba172f7 (diff)
parent8ff50e7526d24aca11713006933b8dcb64ef6be9 (diff)
downloadframeworks_av-3a0b6bd22aa32daa729b05c33896400807027eee.zip
frameworks_av-3a0b6bd22aa32daa729b05c33896400807027eee.tar.gz
frameworks_av-3a0b6bd22aa32daa729b05c33896400807027eee.tar.bz2
Merge "Use uint32_t sequence numbers for IAudioRecord"
Diffstat (limited to 'include')
-rw-r--r--include/media/AudioRecord.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/AudioRecord.h b/include/media/AudioRecord.h
index c724949..45134c4 100644
--- a/include/media/AudioRecord.h
+++ b/include/media/AudioRecord.h
@@ -464,7 +464,7 @@ private:
// These are private to processAudioBuffer(), and are not protected by a lock
uint32_t mRemainingFrames; // number of frames to request in obtainBuffer()
bool mRetryOnPartialBuffer; // sleep and retry after partial obtainBuffer()
- int mObservedSequence; // last observed value of mSequence
+ uint32_t mObservedSequence; // last observed value of mSequence
uint32_t mMarkerPosition; // in wrapping (overflow) frame units
bool mMarkerReached;