diff options
author | Eric Laurent <elaurent@google.com> | 2015-05-08 10:50:03 -0700 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2015-08-18 11:25:37 -0700 |
commit | b97ee930e4f7ed1587b869c92b4aa1dc90b641cc (patch) | |
tree | b4917494c7a99ff9d4ed9552d2a5f205931593ca /services/audioflinger/Threads.h | |
parent | 65842db06c2d77e53cc5ac61692160d844cc7d0a (diff) | |
download | frameworks_av-b97ee930e4f7ed1587b869c92b4aa1dc90b641cc.zip frameworks_av-b97ee930e4f7ed1587b869c92b4aa1dc90b641cc.tar.gz frameworks_av-b97ee930e4f7ed1587b869c92b4aa1dc90b641cc.tar.bz2 |
DO NOT MERGE - audio flinger: fix fuzz test crash
Clear output stream pointer in duplicating thread
when the main output to which it is attached is closed.
Also do not forward master mute and volume commands to
duplicating threads as this is not applicable.
Also fix logic in AudioFlinger::primaryPlaybackThread_l()
that could accidentally return a duplicating thread.
This never happens because the primary thread is always
first in the list.
Bug: 20731946.
Change-Id: Ic8869699836920351b23d09544c50a258d3fb585
(cherry picked from commit f6870aefc5e31d4220f3778c4e79ff34a61f48ad)
Diffstat (limited to 'services/audioflinger/Threads.h')
-rw-r--r-- | services/audioflinger/Threads.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/services/audioflinger/Threads.h b/services/audioflinger/Threads.h index bb9aa18..ecb8e4e 100644 --- a/services/audioflinger/Threads.h +++ b/services/audioflinger/Threads.h @@ -229,6 +229,8 @@ public: // static externally-visible type_t type() const { return mType; } + bool isDuplicating() const { return (mType == DUPLICATING); } + audio_io_handle_t id() const { return mId;} // dynamic externally-visible |