mom_bitstream_d.p

来自「本资源主要是MPEG-4压缩编码算法的C源码实现」· P 代码 · 共 94 行

P
94
字号
/*
 * This file was automatically generated by 'Makefile'.
 *
 * DO NOT EDIT BY HAND : your modifications will be lost.
 *
 */

#ifndef _mom_bitstream_d_P
#define _mom_bitstream_d_P

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */


/* vm_common/src/mom_bitstream_d.c */
Bitstream * 	BitstreamOpen _P_((	Char *filename
	));
Void  	BitstreamClose _P_((	Bitstream *stream
	));
Void  	BitstreamFillBuffer _P_((	Bitstream *stream
	));
UInt  	BitstreamShowBits _P_((	Bitstream *stream,
			Int nbits
	));
UInt  	BitstreamLookAheadBit _P_((	Bitstream *stream,
			Int nth_bit
	));
Void  	BitstreamFlushBits _P_((	Bitstream *stream,
			Int nbits
	));
Void  	RVLCBitstreamFlushBitsForward _P_((	Bitstream *stream,
			Int nbits
	));
Void  	RVLCBitstreamFlushBitsBackward _P_((	Bitstream *stream,
			Int nbits
	));
UInt  	BitstreamReadBits _P_((	Bitstream *stream,
			Int nbits,
			Char *s,
			Trace *trace,
			Int mode
	));
UInt  	BitstreamReadBitsSC _P_((	Bitstream *stream,
			Int nbits,
			Char *s,
			Trace *trace,
			Int mode
	));
UInt  	RVLCBitstreamReadBitsForward _P_((	Bitstream *stream,
			Int nbits,
			Char *s,
			Trace *trace,
			Int mode
	));
UInt  	RVLCBitstreamReadBitsBackward _P_((	Bitstream *stream,
			Int nbits,
			Char *s,
			Trace *trace,
			Int mode
	));
UInt  	BitstreamByteAlign _P_((	Bitstream *stream
	));
UInt  	BitstreamShowBitsByteAlign _P_((	Bitstream *stream,
			Int nbits
	));
Int  	CheckBitStuffing _P_((	Bitstream *stream
	));
Void  	RVLCBitstreamCopy _P_((	Bitstream *stream1,
			Bitstream *stream2
	));
UInt  	RVLCBitstreamShowBitsForward _P_((	Bitstream *stream,
			Int nbits
	));
UInt  	RVLCBitstreamShowBitsBackward _P_((	Bitstream *stream,
			Int nbits
	));
Void  	RVLCBitstreamGotoEnd _P_((	Bitstream *stream
	));
UInt  	BitstreamShowBitsAfterX _P_((	Bitstream *stream,
			Int xbits,
			Int nbits
	));
UInt  	H263BitstreamByteAlign _P_((	Bitstream *stream
	));
UInt  	H263BitstreamShowBitsByteAlign _P_((	Bitstream *stream,
			Int nbits
	));

#ifdef __cplusplus
}
#endif /* __cplusplus  */ 
#endif /* _mom_bitstream_d_P  */ 

⌨️ 快捷键说明

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