bitstream.h

来自「mpeg4 encoder MPEG4编码库源代码」· C头文件 代码 · 共 25 行

H
25
字号

#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_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?