summaryrefslogtreecommitdiffstats
path: root/include/media/AudioRecord.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2012-03-02 13:48:35 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-02 13:48:35 -0800
commit985ed9a1a22ec7e6e245d3fb8e93d3a23bdc539b (patch)
tree7dbfd88fc5703819e53002c7ce8a4cc6634dbc01 /include/media/AudioRecord.h
parente7c795f3300814aa3f26ceb845f29695383c7edc (diff)
parent417c27304c67057779693007a7bc08e4dd80c262 (diff)
downloadframeworks_av-985ed9a1a22ec7e6e245d3fb8e93d3a23bdc539b.zip
frameworks_av-985ed9a1a22ec7e6e245d3fb8e93d3a23bdc539b.tar.gz
frameworks_av-985ed9a1a22ec7e6e245d3fb8e93d3a23bdc539b.tar.bz2
Merge "Fix typos and line length in AudioRecord comments"
Diffstat (limited to 'include/media/AudioRecord.h')
-rw-r--r--include/media/AudioRecord.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/include/media/AudioRecord.h b/include/media/AudioRecord.h
index b0c581a..4fbeb38 100644
--- a/include/media/AudioRecord.h
+++ b/include/media/AudioRecord.h
@@ -299,7 +299,7 @@ public:
/* obtains a buffer of "frameCount" frames. The buffer must be
* filled entirely. If the track is stopped, obtainBuffer() returns
- * STOPPED instead of NO_ERROR as long as there are buffers availlable,
+ * STOPPED instead of NO_ERROR as long as there are buffers available,
* at which point NO_MORE_BUFFERS is returned.
* Buffers will be returned until the pool (buffercount())
* is exhausted, at which point obtainBuffer() will either block
@@ -317,13 +317,14 @@ public:
/* As a convenience we provide a read() interface to the audio buffer.
- * This is implemented on top of lockBuffer/unlockBuffer.
+ * This is implemented on top of obtainBuffer/releaseBuffer.
*/
ssize_t read(void* buffer, size_t size);
- /* Return the amount of input frames lost in the audio driver since the last call of this function.
- * Audio driver is expected to reset the value to 0 and restart counting upon returning the current value by this function call.
- * Such loss typically occurs when the user space process is blocked longer than the capacity of audio driver buffers.
+ /* Return the amount of input frames lost in the audio driver since the last call of this
+ * function. Audio driver is expected to reset the value to 0 and restart counting upon
+ * returning the current value by this function call. Such loss typically occurs when the
+ * user space process is blocked longer than the capacity of audio driver buffers.
* Unit: the number of input audio frames
*/
unsigned int getInputFramesLost() const;