Home
last modified time | relevance | path

Searched refs:byteBufferFront (Results 1 – 1 of 1) sorted by relevance

/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DPipeByteBuffer.java98 int byteBufferFront = front * Constant.BYTES_PER_SHORT; // start reading from here in read() local
99 byteBufferToArray(buffer, offset, read, byteBufferFront); in read()
104 byteBufferFront = 0; in read()
105 byteBufferToArray(buffer, offset + read, read + samplesLeft, byteBufferFront); in read()
119 private void byteBufferToArray(short[] buffer, int start, int length, int byteBufferFront) { in byteBufferToArray() argument
121 buffer[i] = mByteBuffer.getShort(byteBufferFront); in byteBufferToArray()
122 byteBufferFront += Constant.BYTES_PER_SHORT; in byteBufferToArray()