Expand description
Bitstream reading utilities for codec implementations.
Re-exports the av-bitstream crate’s reader types and provides
exp-Golomb parsing functions matching FFmpeg’s libavcodec/golomb.h.
Structs§
Traits§
- BitRead
- Used to define a bitreader.
Functions§
- get_
se_ golomb - Read a signed exp-Golomb code (se(v)) from a big-endian bitstream reader.
- get_
te0_ golomb - Read a truncated exp-Golomb code (te(v)) with range==1 returning 0.
- get_
te_ golomb - Read a truncated exp-Golomb code (te(v)) from a big-endian bitstream reader.
- get_
ue_ golomb - Read an unsigned exp-Golomb code (ue(v)) from a big-endian bitstream reader.