bitstream.h
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:0k
源码类别:

VC书籍

开发平台:

Visual C++

  1. #ifndef _MOM_BITSTREAM_I_H_
  2. #define _MOM_BITSTREAM_I_H_
  3. #define BitstreamPutBits(x, y, z) Bitstream_PutBits(z, y)
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif 
  7. void   Bitstream_Init (void *buffer);
  8. void   Bitstream_PutBits ( int n, unsigned int val);
  9. int  Bitstream_Close (void);
  10. int   Bitstream_NextStartCode (void);
  11. int Bitstream_GetLength(void);
  12. #ifdef __cplusplus
  13. }
  14. #endif  
  15. #endif