mvvolvop.h

来自「优化过的xvid1.1.2源代码」· C头文件 代码 · 共 53 行

H
53
字号
#ifndef _MVVOLVOP_H_
#define _MVVOLVOP_H_

#include "MVGlobal.h"

int mavrix_read_vol(Bitstream * bs,
			 DECODER * dec,
			 uint32_t * rounding,
			 uint32_t * quant,
			 uint32_t * fcode_forward,
			 uint32_t * fcode_backward,
			 uint32_t * intra_dc_threshold,
			 WARPPOINTS *gmc_warp);
					 
int mavtrix_read_vop(Bitstream * bs,
			 DECODER * dec,
			 uint32_t * rounding,
			 uint32_t * quant,
			 uint32_t * fcode_forward,
			 uint32_t * fcode_backward,
			 uint32_t * intra_dc_threshold,
			 WARPPOINTS *gmc_warp);
			 
int read_video_packet_header(Bitstream *bs,
														DECODER * dec,
														const int addbits,
														int * quant,
														int * fcode_forward,
														int  * fcode_backward,
														int * intra_dc_threshold);
														
void decoder_iframe(DECODER * dec,
						        Bitstream * bs,
						        int quant,
						        int intra_dc_threshold);

void  decoder_pframe(DECODER * dec,
							        Bitstream * bs,
							        int rounding,
							        int quant,
							        int fcode,
							        int intra_dc_threshold,
							        const WARPPOINTS *const gmc_warp);
							        						       
void decoder_bframe(DECODER * dec,
						        Bitstream * bs,
						        int quant,
						        int fcode_forward,
						        int fcode_backward);
						        
						       
					 
#endif

⌨️ 快捷键说明

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