summaryrefslogtreecommitdiffstats
path: root/include/media/IAudioTrack.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2011-12-14 10:28:06 -0800
committerGlenn Kasten <gkasten@google.com>2011-12-14 14:38:26 -0800
commit362c4e697d8e9c034e964ac7b40227e054491547 (patch)
treedde3ca3f11e00cc82f1b6a6bd7ebe7b1c24421c5 /include/media/IAudioTrack.h
parenteebeceec684a36222b4559e3157b0db04c0a67ed (diff)
downloadframeworks_av-362c4e697d8e9c034e964ac7b40227e054491547.zip
frameworks_av-362c4e697d8e9c034e964ac7b40227e054491547.tar.gz
frameworks_av-362c4e697d8e9c034e964ac7b40227e054491547.tar.bz2
Audio C++ comments
Change-Id: I84906ebb9dfcfa5b96b287d18364b407f02a30c1
Diffstat (limited to 'include/media/IAudioTrack.h')
-rw-r--r--include/media/IAudioTrack.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/media/IAudioTrack.h b/include/media/IAudioTrack.h
index 47d530b..3fa2bf8 100644
--- a/include/media/IAudioTrack.h
+++ b/include/media/IAudioTrack.h
@@ -46,13 +46,13 @@ public:
*/
virtual void stop() = 0;
- /* flush a stopped track. All pending buffers are discarded.
- * This function has no effect if the track is not stoped.
+ /* Flush a stopped track. All pending buffers are discarded.
+ * This function has no effect if the track is not stopped.
*/
virtual void flush() = 0;
- /* mute or unmutes this track.
- * While mutted, the callback, if set, is still called.
+ /* Mute or unmute this track.
+ * While muted, the callback, if set, is still called.
*/
virtual void mute(bool) = 0;
@@ -67,7 +67,7 @@ public:
*/
virtual status_t attachAuxEffect(int effectId) = 0;
- /* get this tracks control block */
+ /* get this track's control block */
virtual sp<IMemory> getCblk() const = 0;
};