Class ParsableNalUnitBitArray
- java.lang.Object
-
- com.google.android.exoplayer2.util.ParsableNalUnitBitArray
-
@Deprecated public final class ParsableNalUnitBitArray extends Object
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Wraps a byte array, providing methods that allow it to be read as a NAL unit bitstream.Whenever the byte sequence [0, 0, 3] appears in the wrapped byte array, it is treated as [0, 0] for all reading/skipping operations, which makes the bitstream appear to be unescaped.
-
-
Constructor Summary
Constructors Constructor Description ParsableNalUnitBitArray(byte[] data, int offset, int limit)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleancanReadBits(int numBits)Deprecated.Returns whether it's possible to readnbits starting from the current offset.booleancanReadExpGolombCodedNum()Deprecated.Returns whether it is possible to read an Exp-Golomb-coded integer starting from the current offset.booleanreadBit()Deprecated.Reads a single bit.intreadBits(int numBits)Deprecated.Reads up to 32 bits.intreadSignedExpGolombCodedInt()Deprecated.Reads an signed Exp-Golomb-coded format integer.intreadUnsignedExpGolombCodedInt()Deprecated.Reads an unsigned Exp-Golomb-coded format integer.voidreset(byte[] data, int offset, int limit)Deprecated.Resets the wrapped data, limit and offset.voidskipBit()Deprecated.Skips a single bit.voidskipBits(int numBits)Deprecated.Skips bits and moves current reading position forward.
-
-
-
Method Detail
-
reset
public void reset(byte[] data, int offset, int limit)Deprecated.Resets the wrapped data, limit and offset.- Parameters:
data- The data to wrap.offset- The byte offset indatato start reading from.limit- The byte offset of the end of the bitstream indata.
-
skipBit
public void skipBit()
Deprecated.Skips a single bit.
-
skipBits
public void skipBits(int numBits)
Deprecated.Skips bits and moves current reading position forward.- Parameters:
numBits- The number of bits to skip.
-
canReadBits
public boolean canReadBits(int numBits)
Deprecated.Returns whether it's possible to readnbits starting from the current offset. The offset is not modified.- Parameters:
numBits- The number of bits.- Returns:
- Whether it is possible to read
nbits.
-
readBit
public boolean readBit()
Deprecated.Reads a single bit.- Returns:
- Whether the bit is set.
-
readBits
public int readBits(int numBits)
Deprecated.Reads up to 32 bits.- Parameters:
numBits- The number of bits to read.- Returns:
- An integer whose bottom n bits hold the read data.
-
canReadExpGolombCodedNum
public boolean canReadExpGolombCodedNum()
Deprecated.Returns whether it is possible to read an Exp-Golomb-coded integer starting from the current offset. The offset is not modified.- Returns:
- Whether it is possible to read an Exp-Golomb-coded integer.
-
readUnsignedExpGolombCodedInt
public int readUnsignedExpGolombCodedInt()
Deprecated.Reads an unsigned Exp-Golomb-coded format integer.- Returns:
- The value of the parsed Exp-Golomb-coded integer.
-
readSignedExpGolombCodedInt
public int readSignedExpGolombCodedInt()
Deprecated.Reads an signed Exp-Golomb-coded format integer.- Returns:
- The value of the parsed Exp-Golomb-coded integer.
-
-