Home
last modified time | relevance | path

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

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/pgs/
DPgsDecoder.java222 int switchBits = bitmapData.readUnsignedByte(); in build() local
223 if (switchBits != 0) { in build()
225 (switchBits & 0x40) == 0 in build()
226 ? (switchBits & 0x3F) in build()
227 : (((switchBits & 0x3F) << 8) | bitmapData.readUnsignedByte()); in build()
228 int color = (switchBits & 0x80) == 0 ? 0 : colors[bitmapData.readUnsignedByte()]; in build()