2 #ifndef _MOM_BITSTREAM_I_H_
3 #define _MOM_BITSTREAM_I_H_
6 /* this is a MACRO defined to accommondate the legacy MoMuSys calls. */
7 #define BitstreamPutBits(x, y, z) Bitstream_PutBits(z, y)
11 #endif /* __cplusplus */
13 void Bitstream_Init (void *buffer
);
14 void Bitstream_PutBits ( int n
, unsigned int val
);
15 int Bitstream_Close (void);
16 int Bitstream_NextStartCode (void);
17 int Bitstream_GetLength(void);
21 #endif /* __cplusplus */
23 #endif /* _MOM_BITSTREAM_I_H_ */