Lines Matching full:bitstream
3 * bitstream
43 * bitStream encoding API (write forward)
46 /* bitStream can mix input from multiple sources.
64 * bitStream will never write outside of this buffer.
73 * Avoid storing elements of more than 24 bits if you want compatibility with 32-bits bitstream rea…
75 * Last operation is to close the bitStream.
82 * bitStream decoding API (read backward)
93 BIT_DStream_endOfBuffer = 1, /* still some bits left in bitstream */
94 BIT_DStream_completed = 2, /* bitstream entirely consumed, bit-exact */
95 BIT_DStream_overflow = 3 /* user requested more bits than present in bitstream */
105 * A chunk of the bitStream is then stored into a local register.
138 * bitStream encoding
231 * bitStream decoding
236 * `srcSize` must be the *exact* size of the bitStream, in bytes.
295 /* if start > regMask, bitstream is corrupted, and result is undefined */ in BIT_getMiddleBits()
320 * bitstream is likely corrupted, and result is undefined */ in BIT_lookBits()
366 * 1. bitstream is valid : bitsConsumed <= sizeof(bitD->bitContainer)*8
399 /* note : once in overflow mode, a bitstream remains in this mode until it's reset */ in BIT_reloadDStream()
413 /* reached end of bitStream => no update */ in BIT_reloadDStream()