summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/AudioFlinger.cpp
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
commite5fb263a3625c0e6b4a9aefa86067bb9463dd06d (patch)
treebceb757165943cf03d96906b595c4b24bfde4218 /services/audioflinger/AudioFlinger.cpp
parente61fd281a8cb69ae45c5de4b160ab86226083152 (diff)
downloadframeworks_base-e5fb263a3625c0e6b4a9aefa86067bb9463dd06d.zip
frameworks_base-e5fb263a3625c0e6b4a9aefa86067bb9463dd06d.tar.gz
frameworks_base-e5fb263a3625c0e6b4a9aefa86067bb9463dd06d.tar.bz2
Audio C++ comments
Change-Id: I84906ebb9dfcfa5b96b287d18364b407f02a30c1
Diffstat (limited to 'services/audioflinger/AudioFlinger.cpp')
-rw-r--r--services/audioflinger/AudioFlinger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/audioflinger/AudioFlinger.cpp b/services/audioflinger/AudioFlinger.cpp
index b48f23d..c5608a0 100644
--- a/services/audioflinger/AudioFlinger.cpp
+++ b/services/audioflinger/AudioFlinger.cpp
@@ -999,7 +999,7 @@ AudioFlinger::ThreadBase::~ThreadBase()
void AudioFlinger::ThreadBase::exit()
{
- // keep a strong ref on ourself so that we wont get
+ // keep a strong ref on ourself so that we won't get
// destroyed in the middle of requestExitAndWait()
sp <ThreadBase> strongMe = this;
@@ -2344,7 +2344,7 @@ bool AudioFlinger::MixerThread::checkForNewParameters_l()
}
if (param.getInt(String8(AudioParameter::keyFrameCount), value) == NO_ERROR) {
// do not accept frame count changes if tracks are open as the track buffer
- // size depends on frame count and correct behavior would not be garantied
+ // size depends on frame count and correct behavior would not be guaranteed
// if frame count is changed after track creation
if (!mTracks.isEmpty()) {
status = INVALID_OPERATION;