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

📄 picture.h

📁 H.263的编码程序,加了CPU指令优化,VC版.
💻 H
字号:
#ifndef  _PICTURE_H
#define  _PICTURE_H

//! Encode one Intra frame
//return the sum of bits of this frame
int EncIfrm (H263VencStatus *);
//! Encode one Inter frame
//return the sum of bits of this frame
int EncPfrm(H263VencStatus *encoder, MCParam *MC);
//! Encode one B frame
int EncBfrm(H263VencStatus *encoder, MCParam *MC);

int  findbiSAD_c(unsigned char *prev, unsigned char *next, unsigned char *curr, 
			   int lx_ipol,  int lx_curr, int blocksize);
int  findbiSAD_sse(unsigned char *prev, unsigned char *next, unsigned char *curr, 
			   int lx_ipol,  int lx_curr, int blocksize);
#endif

⌨️ 快捷键说明

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