Lines Matching full:bitstream
293 #include "bitstream.h"
397 BIT_CStream_t bitStream; // bitStream tracking structure
401 The first thing to do is to init bitStream and state.
402 size_t errorCode = BIT_initCStream(&bitStream, dstBuffer, maxDstSize);
409 FSE_encodeByte(&bitStream, &state, symbol);
413 BIT_addBits(&bitStream, bitField, nbBits);
418 BIT_flushBits(&bitStream);
421 FSE_flushState(&bitStream, &state);
423 Finally, you must close the bitStream.
427 size_t size = BIT_closeCStream(&bitStream);
448 You will decode FSE-encoded symbols from the bitStream,
451 You will need a few variables to track your bitStream. They are :
457 The first thing to do is to init the bitStream.
469 You can retrieve any bitfield you eventually stored into the bitStream (in reverse order)