vptype.h

来自「MinGW+MSYS开发必用的api参考」· C头文件 代码 · 共 56 行

H
56
字号
#ifndef _VPTYPE_H#define _VPTYPE_H#if __GNUC__ >= 3#pragma GCC system_header#endif#ifdef __cplusplusextern "C" {#endif/*--- DirectShow Reference - DirectShow Enumerated Types */typedef enum _AMVP_MODE {	AMVP_MODE_WEAVE,	AMVP_MODE_BOBINTERLEAVED,	AMVP_MODE_BOBNONINTERLEAVED,	AMVP_MODE_SKIPEVEN,	AMVP_MODE_SKIPODD} AMVP_MODE;typedef enum _AMVP_SELECT_FORMAT_BY {	AMVP_DO_NOT_CARE,	AMVP_BEST_BANDWIDTH,	AMVP_INPUT_SAME_AS_OUTPUT} AMVP_SELECT_FORMAT_BY;/*--- DirectShow Reference - DirectShow Structures */typedef struct _AMVPDIMINFO{	DWORD dwFieldWidth;	DWORD dwFieldHeight;	DWORD dwVBIWidth;	DWORD dwVBIHeight;	RECT rcValidRegion;} AMVPDIMINFO,*LPAMVPDIMINFO;typedef struct _AMVPDATAINFO{	DWORD dwSize;	DWORD dwMicrosecondsPerField;	AMVPDIMINFO amvpDimInfo;	DWORD dwPictAspectRatioX;	DWORD dwPictAspectRatioY;	BOOL bEnableDoubleClock;	BOOL bEnableVACT;	BOOL bDataIsInterlaced;	LONG lHalfLinesOdd;	BOOL bFieldPolarityInverted;	DWORD dwNumLinesInVREF;	LONG lHalfLinesEven;	DWORD dwReserved1;} AMVPDATAINFO,*LPAMVPDATAINFO;typedef struct _AMVPSIZE{	DWORD dwWidth;	DWORD dwHeight;} AMVPSIZE,*LPAMVPSIZE;#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

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