mvblock.h

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

H
21
字号
#ifndef __MVBLOCK_H__
#define __MVBLOCK_H__

/* these functions is relate to block operation*/

/* extracted from Mbcoding.c,20070122 wuhaibin*/
void get_intra_block(Bitstream * bs, int16_t * block,
										 int direction, int coeff);

/* extracted from MbCoding.h,20070122 wuhaibin*/
void  get_inter_block_h263(Bitstream * bs, int16_t * block,
													 int direction, const int quant,
													 const uint16_t *matrix);
							
/* extracted from MbCoding.h,20070122 wuhaibin*/						 
void get_inter_block_mpeg(Bitstream * bs,	int16_t * block,
		                      int direction, const int quant,
		                      const uint16_t *matrix);
								
#endif

⌨️ 快捷键说明

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