Home
last modified time | relevance | path

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

/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/util/
DParsableBitArray.java318 int remainingBitsToRead = numBits; in putInt() local
329 remainingBitsToRead -= firstByteReadSize; in putInt()
331 while (remainingBitsToRead > 8) { in putInt()
332 data[currentByteIndex++] = (byte) (value >>> (remainingBitsToRead - 8)); in putInt()
333 remainingBitsToRead -= 8; in putInt()
335 int lastByteRightPaddingSize = 8 - remainingBitsToRead; in putInt()
338 int lastByteInput = value & ((1 << remainingBitsToRead) - 1); in putInt()