Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Low delay audio on Android via NDK

It seems that this question has been asked before, I just would like to know whether there is an update in Android.

I plan to write an audio application involving low delay audio I/O (appr. < 10 ms). It seems not to be possible based on the methods proposed by the SDK, hence is there - in the meantime - a way to achieve this goal using the NDK?

like image 382
user332530 Avatar asked Oct 15 '22 06:10

user332530


1 Answers

there are currently no libraries in the NDK for accessing the android sound system, at least none that are considered safe to use (are stable).

Have you done any tests with the AudioTrack class? Its the lowest latency option available at the moment.

like image 147
Mark Avatar answered Nov 15 '22 08:11

Mark