bitstream.h
Upload User: hxb_1234
Upload Date: 2010-03-30
Package Size: 8328k
Code Size: 0k
Development Platform:

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