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

📄 aws_api.h

📁 从FFMPEG转换而来的H264解码程序,VC下编译..
💻 H
字号:
//
//	aWarpSharp (version 1.0) - WarpSharping filter
//
//	aWarpSharp ffdshow api.
//
//	Copyright (C) 2003 Marc Fauconneau
//
//	designed for ffdshow only. thx.

#ifndef __AWS_API_H__
#define __AWS_API_H__

/* basic YV12 plane struct */
struct awsapi_plane {
	unsigned char* ptr;
	int height;
	int width;
	int pitch;
};

/* basic YV12 frame struct */
struct awsapi_frame {
	awsapi_plane yplane,uplane,vplane;
};

/*	all the stuff it needs.
	all/f
*/
struct awsapi_settings {
	awsapi_frame src,dst,work;
	int thresh,blurlevel,depth;
	int cm,bm;
	bool show;
};

void aws_run(awsapi_settings *set);

#endif /* __AWS_API_H__ */

⌨️ 快捷键说明

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