bitstream.h
上传用户:enenge
上传日期:2007-01-08
资源大小:96k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #ifndef _MOM_BITSTREAM_I_H_
  2. #define _MOM_BITSTREAM_I_H_
  3. /* this is a MACRO defined to accommondate the legacy MoMuSys calls. */
  4. #define BitstreamPutBits(x, y, z) Bitstream_PutBits(z, y)
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif /* __cplusplus */
  8. void   Bitstream_Init (void *buffer);
  9. void   Bitstream_PutBits ( int n, unsigned int val);
  10. int  Bitstream_Close (void);
  11. int   Bitstream_NextStartCode (void);
  12. int Bitstream_GetLength(void);
  13. #ifdef __cplusplus
  14. }
  15. #endif /* __cplusplus  */ 
  16. #endif /* _MOM_BITSTREAM_I_H_ */