⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mvvolvop.h

📁 优化过的xvid1.1.2源代码
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -