diff options
author | Glenn Kasten <gkasten@google.com> | 2015-03-24 19:42:30 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-03-24 19:42:31 +0000 |
commit | 82ceac025459b5b8887441d709081ec29c6b9416 (patch) | |
tree | 6400948366e9d51774601a03d149a4ba7b33e2cb /include | |
parent | 21b51b61ee52e6aa74d98b138d3dd4f0e17b1441 (diff) | |
parent | bfd318402924414fbde4d31c9d23cc423f10b630 (diff) | |
download | frameworks_av-82ceac025459b5b8887441d709081ec29c6b9416.zip frameworks_av-82ceac025459b5b8887441d709081ec29c6b9416.tar.gz frameworks_av-82ceac025459b5b8887441d709081ec29c6b9416.tar.bz2 |
Merge "set() in AudioRecord and AudioTracks needs no lock"
Diffstat (limited to 'include')
-rw-r--r-- | include/media/AudioRecord.h | 1 | ||||
-rw-r--r-- | include/media/AudioTrack.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/media/AudioRecord.h b/include/media/AudioRecord.h index f6832c9..3daac65 100644 --- a/include/media/AudioRecord.h +++ b/include/media/AudioRecord.h @@ -183,6 +183,7 @@ public: /* Initialize an AudioRecord that was created using the AudioRecord() constructor. * Don't call set() more than once, or after an AudioRecord() constructor that takes parameters. + * set() is not multi-thread safe. * Returned status (from utils/Errors.h) can be: * - NO_ERROR: successful intialization * - INVALID_OPERATION: AudioRecord is already initialized or record device is already in use diff --git a/include/media/AudioTrack.h b/include/media/AudioTrack.h index 81b1181..818c8cd 100644 --- a/include/media/AudioTrack.h +++ b/include/media/AudioTrack.h @@ -238,6 +238,7 @@ public: /* Initialize an AudioTrack that was created using the AudioTrack() constructor. * Don't call set() more than once, or after the AudioTrack() constructors that take parameters. + * set() is not multi-thread safe. * Returned status (from utils/Errors.h) can be: * - NO_ERROR: successful initialization * - INVALID_OPERATION: AudioTrack is already initialized |