bitstream.h
资源名称:VC++视频传输.rar [点击查看]
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:0k
源码类别:
VC书籍
开发平台:
Visual C++
- #ifndef _MOM_BITSTREAM_I_H_
- #define _MOM_BITSTREAM_I_H_
- #define BitstreamPutBits(x, y, z) Bitstream_PutBits(z, y)
- #ifdef __cplusplus
- extern "C" {
- #endif
- void Bitstream_Init (void *buffer);
- void Bitstream_PutBits ( int n, unsigned int val);
- int Bitstream_Close (void);
- int Bitstream_NextStartCode (void);
- int Bitstream_GetLength(void);
- #ifdef __cplusplus
- }
- #endif
- #endif