b_frame.h

来自「Mobile IP VCEG的信道模拟程序」· C头文件 代码 · 共 34 行

H
34
字号
/****************************************************************
 *
 *  File B_frame.h :	Header file for B picture coding 
 *
 *	Main contributor and Contact Information
 *
 *		Byeong-Moon Jeon			<jeonbm@lge.com>
 *      Yoon-Seong Soh				<yunsung@lge.com>
 *      LG Electronics Inc., Digital Media Research Lab.
 *      16 Woomyeon-Dong, Seocho-Gu, Seoul, 137-724, Korea
 *
 *****************************************************************/
#ifndef _B_FRAME_H_
#define _B_FRAME_H_

#define MAX_DIR_SAD			100000000

extern int ONE_FOURTH_TAP[3][2];
extern int  MODTAB[3][2];
extern int NCBP[48][2];
#ifdef USE_9_INTRA_MODES
extern const byte PRED_IPRED[10][10][9];
extern int IPRED_ORDER[9][9]; 
#else // !USE_9_INTRA_MODES
extern const byte PRED_IPRED[7][7][6];
extern int IPRED_ORDER[6][6]; 
#endif
extern int JQ[32][2];
extern int QP2QUANT[32];


#endif

⌨️ 快捷键说明

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