List of utility methods to do ShortBuffer to ByteBuffer Convert
ByteBuffer | copyShortBufferAsByteBuffer( ShortBuffer paramShortBuffer) copy Short Buffer As Byte Buffer ByteBuffer localByteBuffer = newByteBuffer(paramShortBuffer
.remaining() * 2);
paramShortBuffer.mark();
localByteBuffer.asShortBuffer().put(paramShortBuffer);
paramShortBuffer.reset();
localByteBuffer.rewind();
return localByteBuffer;
|