Thursday, September 6, 2012

[android-developers] AudioTrack: thread safety of operations?

The documentation says that AudioTrack.write() is thread-safe in terms of stop().

What about the other operations? As far as I can see, e.g. play() and pause() should also be callable from another thread.

write() is blocking, so it does not make much sense to call pause() from the same thread as write().

Is it OK to use an own thread for write() and using the other operations (stop, pause, play) from a different thread?

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

No comments:

Post a Comment