Fix print vs println typo

This commit is contained in:
Cameron Gutman 2013-12-28 16:41:39 -05:00
parent f1b4fdd8b0
commit 3648c0f26a

View File

@ -27,7 +27,7 @@ public class AudioDepacketizer {
// Put it on the decoded queue
if (!decodedUnits.offer(new ShortBufferDescriptor(pcmData, 0, decodeLen))) {
System.out.print("Audio player too slow! Forced to drop decoded samples");
System.out.println("Audio player too slow! Forced to drop decoded samples");
// Clear out the queue
decodedUnits.clear();
}