aws_api.h

来自「从FFMPEG转换而来的H264解码程序,VC下编译..」· C头文件 代码 · 共 39 行

H
39
字号
//
//	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 + =
减小字号Ctrl + -
显示快捷键?