summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/AudioFlinger.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2012-02-14 08:52:15 -0800
committerGlenn Kasten <gkasten@google.com>2012-03-19 14:12:01 -0700
commit76b6c0c1f57f5b6b5b5d46f0a835a3c36f48b7f3 (patch)
treec901fae47d437eeea31db5af1f1c9233995d1844 /services/audioflinger/AudioFlinger.h
parentf6b8f7b34f5fe94cd1d8753ec356b967293f1f9c (diff)
downloadframeworks_base-76b6c0c1f57f5b6b5b5d46f0a835a3c36f48b7f3.zip
frameworks_base-76b6c0c1f57f5b6b5b5d46f0a835a3c36f48b7f3.tar.gz
frameworks_base-76b6c0c1f57f5b6b5b5d46f0a835a3c36f48b7f3.tar.bz2
Update comments
Change-Id: I327663a020670d0a72ff57bd0b682e2ce0528650
Diffstat (limited to 'services/audioflinger/AudioFlinger.h')
-rw-r--r--services/audioflinger/AudioFlinger.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/services/audioflinger/AudioFlinger.h b/services/audioflinger/AudioFlinger.h
index 0e4b24a..7a57613 100644
--- a/services/audioflinger/AudioFlinger.h
+++ b/services/audioflinger/AudioFlinger.h
@@ -899,6 +899,7 @@ public:
protected:
SortedVector< wp<Track> > mActiveTracks;
+ // Allocate a track name. Returns name >= 0 if successful, -1 on failure.
virtual int getTrackName_l() = 0;
virtual void deleteTrackName_l(int name) = 0;
virtual uint32_t activeSleepTimeUs();
@@ -1559,9 +1560,10 @@ mutable Mutex mLock; // mutex for process, commands and handl
uint32_t mNewLeftVolume; // new volume on left channel
uint32_t mNewRightVolume; // new volume on right channel
uint32_t mStrategy; // strategy for this effect chain
- // mSuspendedEffects lists all effect currently suspended in the chain
- // use effect type UUID timelow field as key. There is no real risk of identical
+ // mSuspendedEffects lists all effects currently suspended in the chain.
+ // Use effect type UUID timelow field as key. There is no real risk of identical
// timeLow fields among effect type UUIDs.
+ // Updated by updateSuspendedSessions_l() only.
KeyedVector< int, sp<SuspendedEffectDesc> > mSuspendedEffects;
};