Move from []byte to ByteBuffer

Issue #74 new
IJabz repo owner created an issue

This has three advantages: * ByteBuffer has methods to parse the data has BE or LE rather than having to write code to do it. * ByteBuffer can be allocated from system memory instead or heap memory so when writing data to and from files the transfer can be simpler and much quicker than going t/from Java Heap within JVM. * Because can be allocated from system not heap we dont use up our heap, reducing heap size requirements and garbage collection Wav/Aiff is mostly done with ByteBuffers, but the other formats need more work

Comments (8)

  1. Log in to comment