summaryrefslogtreecommitdiffstats
path: root/include/media/AudioRecord.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2012-01-11 09:48:27 -0800
committerGlenn Kasten <gkasten@google.com>2012-01-13 14:58:44 -0800
commitb9980659501d0428d65d8292f3c32da69d37fbd2 (patch)
tree8b703aca299f4f715a65d07cc37b753e9753a941 /include/media/AudioRecord.h
parentf4e76c538f81068bc2e125f3f9ef8b8dd40f2d2a (diff)
downloadframeworks_av-b9980659501d0428d65d8292f3c32da69d37fbd2.zip
frameworks_av-b9980659501d0428d65d8292f3c32da69d37fbd2.tar.gz
frameworks_av-b9980659501d0428d65d8292f3c32da69d37fbd2.tar.bz2
Use size_t for frame size
except in the control block, where we don't have room. In AudioFlinger::ThreadBase::TrackBase::getBuffer, read the frame size from control block only once. Change-Id: Id6c4bccd4ed3e07d91df6bbea43bae45524f9f4e
Diffstat (limited to 'include/media/AudioRecord.h')
-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 2fb69b6..84a8f1c 100644
--- a/include/media/AudioRecord.h
+++ b/include/media/AudioRecord.h
@@ -206,7 +206,7 @@ public:
int channelCount() const;
int channels() const;
uint32_t frameCount() const;
- int frameSize() const;
+ size_t frameSize() const;
int inputSource() const;