Lines Matching refs:BitStream
150 BitStream;
154 static BitStream* bsOpenReadStream ( FILE* stream )
156 BitStream *bs = malloc ( sizeof(BitStream) );
157 if (bs == NULL) mallocFail ( sizeof(BitStream) );
167 static BitStream* bsOpenWriteStream ( FILE* stream )
169 BitStream *bs = malloc ( sizeof(BitStream) );
170 if (bs == NULL) mallocFail ( sizeof(BitStream) );
180 static void bsPutBit ( BitStream* bs, Int32 bit )
199 static Int32 bsGetBit ( BitStream* bs )
218 static void bsClose ( BitStream* bs )
242 static void bsPutUChar ( BitStream* bs, UChar c )
251 static void bsPutUInt32 ( BitStream* bs, UInt32 c )
305 BitStream* bsIn, *bsWr;