Android Utililty Methods ShortBuffer to ByteBuffer Convert

List of utility methods to do ShortBuffer to ByteBuffer Convert

Description

The list of methods to do ShortBuffer to ByteBuffer Convert are organized into topic(s).

Method

ByteBuffercopyShortBufferAsByteBuffer( 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;