📄 bitstream.h
字号:
#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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -