long currentTimeInFrames = 0;
while(playingAudio) {
currentTimeInFrames += numberOfFramesToWrite;
long delayInFrames = (currentTimeInFrames - audioTrack.getPlaybackHeadPosition());
audioTrack.write(frameBuffer,0,sampleSize);
doAnimationAfterDelay(delayInFrames);
However, there's still some latency that getPlaybackHeadPosition()
doesn't seem to account for that varies by device.
Is there a way to poll the system for the latency of the AudioTrack?
API level 19 adds a method in AudioTrack
called getTimeStamp(). From the documentation:
Poll for a timestamp on demand.
If you need to track timestamps during initial warmup or after a routing or mode change, you should request a new timestamp periodically until the reported timestamps show that the frame position is advancing, or until it becomes clear that timestamps are unavailable for this route.
You specify an AudioTimestamp object as the function's parameter and it will fill in the most recently "presented" frame position along with its "estimated" timestamp in nanoseconds. The nanosecond value corresponds to the millisecond value returned by SystemClock.uptimeMillis().
You can then determine the latency by figuring out when you wrote that particular frame to AudioTrack
vs. when getTimestamp()
thinks it actually presented. I have found this method to be more accurate than the other methods mentioned above.
You have to be careful though. The documentation says getTimeStamp()
is not supported on all platforms or all routes. You can determine if the call was successful by checking the boolean
return value. I have found with the devices I have tested that the function returns false until audio begins presenting, and then subsequent calls return true. I have only tested with AudioTrack
in STREAM_MUSIC
mode. Your mileage may vary.
–
–
–
Consider driver's latency. There's hidden function AudioManager.getOutputLatency(int) to get this.
Call it like this:
AudioManager am = (AudioManager)getSystemService(Context.AUDIO_SERVICE);
Method m = am.getClass().getMethod("getOutputLatency", int.class);
latency = (Integer)m.invoke(am, AudioManager.STREAM_MUSIC);
}catch(Exception e){
I get about 45 - 50 ms on different devices.
Use the result in your calculations.
–
You should take into account the buffersize you passed along into the AudioTrack creation.
final int minBufSize = AudioTrack.getMinBufferSize(Application.PLAYRATE,
AudioFormat.CHANNEL_OUT_STEREO, AudioFormat.ENCODING_PCM_16BIT);
out=new AudioTrack(AudioManager.STREAM_MUSIC, Application.PLAYRATE,
AudioFormat.CHANNEL_OUT_STEREO, AudioFormat.ENCODING_PCM_16BIT, minBufSize,
AudioTrack.MODE_STREAM);
extraLatencyFrames = minBufSize/4;
–
Okay, this is the key. First you need to extend the Audiotrack class, and then use the getNativeFrameCount to have an approximation on the latency involved in the native side of things.
class MyAudioTrack extends AudioTrack
public MyAudioTrack(int streamType, int sampleRateInHz, int channelConfig,
int audioFormat, int bufferSizeInBytes, int mode)
throws IllegalArgumentException {
super(streamType, sampleRateInHz, channelConfig, audioFormat,
bufferSizeInBytes, mode);
System.out.println("Native framecount "+getNativeFrameCount());
public int getFrameCount()
return getNativeFrameCount();
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.