Update audio code for limelight-common changes

This commit is contained in:
Cameron Gutman
2014-01-10 01:04:42 -06:00
parent 023c5e31ac
commit 81ae7bd638
2 changed files with 7 additions and 7 deletions

View File

@@ -37,7 +37,7 @@ public class AndroidAudioRenderer implements AudioRenderer {
}
@Override
public void playDecodedAudio(short[] audioData, int offset, int length) {
public void playDecodedAudio(byte[] audioData, int offset, int length) {
track.write(audioData, offset, length);
}