Skip to content

Commit

Permalink
removed print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
srubin committed Mar 3, 2014
1 parent 61f97bf commit 7bbda07
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/be/hogent/tarsos/dsp/AudioEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ public void setFloatBufferWithShortBuffer(short[] shortBuffer) {
}

public void setFloatBufferWithByteBuffer(byte[] byteBuffer) {
System.out.println("frame size and length: " + format.getFrameSize() + " " + byteBuffer.length);
int length = (int)(byteBuffer.length / (float)(format.getFrameSize()));
this.floatBuffer = new float[length];
converter.toFloatArray(byteBuffer, this.floatBuffer);
Expand Down

0 comments on commit 7bbda07

Please sign in to comment.