test.h

来自「是自己开发的程序」· C头文件 代码 · 共 70 行

H
70
字号
/***********************************//*      test.h                     *//*      write by wrh at 2001.11.13 *//************************************/#ifndef _TEST_H_#define _TEST_H_            #define MAX_PORT 36 typedef struct _rect{	int left;	int top;	int right;	int bottom;}rect;typedef struct _vwin{	int b, c;	int x, y;	int w, h;	int r[4];}video_win;#if 0typedef struct _iwin{	Window win;	int x, y;	int w, h;}videoinfo_win;#endif	typedef struct{	int Brightness;	int Contrast;	int Saturation;	int Hue;}video_info;typedef struct{	int IQuantVal;	int PQuantVal;	int BQuantVal;	int KeyFrameIntervals;	int BFrames;	int PFrames;	int FrameRate;}Frame_info;typedef struct{	unsigned short	Translucent;	int Brightness;	int PosX;	int PosY;}Osd_info;typedef struct{	unsigned short  Translucent;	int PosX;	int PosY;}Logo_info;/* add at 2005.6.2 for index creating */typedef struct{	unsigned long FilePos;   /* the locate for I frame in file */	unsigned long Reserve;	unsigned long FrameNum; /* the video frame num, include I frame and BBP frame,exclude the audio frame */}INDEX_NODE, *PINDEX_NODE; #endif

⌨️ 快捷键说明

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