Lines Matching full:bitstream
283 #include "bitstream.h"
374 BIT_CStream_t bitStream; // bitStream tracking structure
378 The first thing to do is to init bitStream and state.
379 size_t errorCode = BIT_initCStream(&bitStream, dstBuffer, maxDstSize);
386 FSE_encodeByte(&bitStream, &state, symbol);
390 BIT_addBits(&bitStream, bitField, nbBits);
395 BIT_flushBits(&bitStream);
398 FSE_flushState(&bitStream, &state);
400 Finally, you must close the bitStream.
404 size_t size = BIT_closeCStream(&bitStream);
425 You will decode FSE-encoded symbols from the bitStream,
428 You will need a few variables to track your bitStream. They are :
434 The first thing to do is to init the bitStream.
446 You can retrieve any bitfield you eventually stored into the bitStream (in reverse order)