00001
00002 #ifndef _MOM_BITSTREAM_I_H_
00003 #define _MOM_BITSTREAM_I_H_
00004
00005
00006
00007 #define BitstreamPutBits(x, y, z) Bitstream_PutBits(z, y)
00008
00009 #ifdef __cplusplus
00010 extern "C" {
00011 #endif
00012
00013 void Bitstream_Init (void *buffer);
00014 void Bitstream_PutBits ( int n, unsigned int val);
00015 int Bitstream_Close (void);
00016 int Bitstream_NextStartCode (void);
00017 int Bitstream_GetLength(void);
00018
00019 #ifdef __cplusplus
00020 }
00021 #endif
00022
00023 #endif
00024