?? bitstream.h
字號:
//比特流文件操作
#ifndef _MOM_BITSTREAM_I_H_
#define _MOM_BITSTREAM_I_H_
/* this is a MACRO defined to accommondate the legacy MoMuSys calls. */
#define BitstreamPutBits(x, y, z) Bitstream_PutBits(z, y)
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
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 /* __cplusplus */
#endif /* _MOM_BITSTREAM_I_H_ */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -