Lines Matching full:bitstream
228 #include "bitstream.h"
317 BIT_CStream_t bitStream; // bitStream tracking structure
321 The first thing to do is to init bitStream and state.
322 size_t errorCode = BIT_initCStream(&bitStream, dstBuffer, maxDstSize);
329 FSE_encodeByte(&bitStream, &state, symbol);
333 BIT_addBits(&bitStream, bitField, nbBits);
338 BIT_flushBits(&bitStream);
341 FSE_flushState(&bitStream, &state);
343 Finally, you must close the bitStream.
347 size_t size = BIT_closeCStream(&bitStream);
366 You will decode FSE-encoded symbols from the bitStream,
369 You will need a few variables to track your bitStream. They are :
375 The first thing to do is to init the bitStream.
387 You can retrieve any bitfield you eventually stored into the bitStream (in reverse order)