summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/TrackBase.h
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2014-09-12 17:41:50 -0700
committerEric Laurent <elaurent@google.com>2014-09-15 09:31:31 -0700
commitaaa44478a373232d8416657035a9020f9c7aa7c3 (patch)
tree95a4724c0d7ebbe065551f0aeaf5d65283ab3e04 /services/audioflinger/TrackBase.h
parentf0b31e6333839972afb2e374f6d8824180d29fc2 (diff)
downloadframeworks_av-aaa44478a373232d8416657035a9020f9c7aa7c3.zip
frameworks_av-aaa44478a373232d8416657035a9020f9c7aa7c3.tar.gz
frameworks_av-aaa44478a373232d8416657035a9020f9c7aa7c3.tar.bz2
audioflinger: fix pre processing effect leak
When a capture thread was closed, the effects attached to this thread were left dangling and the associated effect chain destroyed. When their last client was disconnected, the effects were not released properly from the effect library because the destruction process could not be completed without the effect being attached to a thread. A similar problem prevented a RecordTrack to be properly released if its client was destroyed after the capture thread. The fix consists in allowing the effect or record track to be properly released even if its parent thread cannot be promoted. Also save any effect chain still present on a closed capture thread in case a new client wants to reuse the effects on the same session later. Bug: 17110064. Change-Id: I5cd644daa357afd1f3548f9bcb28e6152d95fdb8
Diffstat (limited to 'services/audioflinger/TrackBase.h')
-rw-r--r--services/audioflinger/TrackBase.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/services/audioflinger/TrackBase.h b/services/audioflinger/TrackBase.h
index 864daa5..98bf96e 100644
--- a/services/audioflinger/TrackBase.h
+++ b/services/audioflinger/TrackBase.h
@@ -166,6 +166,7 @@ protected:
sp<NBAIO_Source> mTeeSource;
bool mTerminated;
track_type mType; // must be one of TYPE_DEFAULT, TYPE_OUTPUT, TYPE_PATCH ...
+ audio_io_handle_t mThreadIoHandle; // I/O handle of the thread the track is attached to
};
// PatchProxyBufferProvider interface is implemented by PatchTrack and PatchRecord.