I've written an app for android which plays live audio that it receives over bluetooth from a pc running a server coded in J2SE which sends the audio data in raw PCM format.
the audio plays just fine ,smooth and continuous but there is lag of 1 sec between the audio through the PC's speaker and phones...
the pc side servers runs as follows
AudioFormat format=new AudioFormat(22000,16,2, true, false);
DataLine.Info info = new DataLine.Info(TargetDataLine.class,format);
if (!AudioSystem.isLineSupported(info)) {
System.out.println("Something is wrong");
}
try {
line = (TargetDataLine) AudioSystem.getLine(info);
line.open(format);
out = new ByteArrayOutputStream();
**data = new byte[line.getBufferSize()];**
} catch (LineUnavailableException ex) {
System.out.println(ex.toString());
System.out.println("Something is wrong");
}
while(true){
line.read(data,0,data.length);
out.write(data);} //here out is bluetooth outputstream
and on the android side
AudioTrack at=new AudioTrack(AudioManager.STREAM_MUSIC,22000,AudioFormat.CHANNEL_OUT_STEREO,AudioFormat.ENCODING_PCM_16BIT, bufferlen,AudioTrack.MODE_STREAM);
at.play();
while(run){
**while(sum<bufferlen)**{
count= din.read(buffer,sum,bufferlen-sum); //din is bluetooth data input stream
sum+=count;}
at.write(buffer,0,count);
sum=0;
}
both android and pc server has equal buffer size typically the android client wait till it receives the data equal to buffer size. and as you can see the drawback of large buffer is that it has to buffer data to array before it can be played that leads to the lag. But decreasing the buffer size makes the audio lag more and becomes more discontinuous (inversely proportional to buffer size) it is heard as silent-sound-silent-sound-silent-sound-silent-sound pattern at a high rate
Is there any way to decrease the lag ?