Home
last modified time | relevance | path

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

/packages/apps/TV/tuner/src/com/android/tv/tuner/hdhomerun/
DHdHomeRunUtils.java169 Byte lengthByte1 = buffer.get(); in readVarLength() local
170 if ((lengthByte1 & 0x80) != 0) { in readVarLength()
172 length = (short) ((length << 7) + (lengthByte1 & 0x7F)); in readVarLength()
174 length = lengthByte1; in readVarLength()