Reputation: 2119
Using CSound for Android I get this (appearantly harmless) error:
E/AudioTrack: did not receive expected priority boost on time
What does it mean? How can I boost this Audio priority?
Upvotes: 2
Views: 1901
Reputation: 21
It looks like it is related to the way that Android temporarily elevated the priority of the FastMixer and AudioTrack callbacks threads, as to prevent priority-inversion. According to the docs, this log message appears when the request to shift the priority does not succeed.
Upvotes: 2