Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / quicktime / encore50 / bitstream.h
blob503d3d060471157aaab40fb2b820a647fb89a3e5
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)
9 #ifdef __cplusplus
10 extern "C" {
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);
19 #ifdef __cplusplus
21 #endif /* __cplusplus */
23 #endif /* _MOM_BITSTREAM_I_H_ */