5f6ae3d318
of memset to avoid <string.h>. Still need a fix for memcmp. * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL) (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE) (AM_WST_STYLE): Add enums. (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo, AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New structures. * include/errors.h (VFW_*): Define. * include/evcode.h (AM_WMT_EVENT_DATA): New structure. * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define. * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP) (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here... * include/strmif.h: ... to here. New file. * include/aviriff.h: New file. * include/bdatypes.h: New file. * include/control.h: New file. * include/dvdmedia.h: New file. * include/il21dec.h: New file. * include/ks.h: New file. * include/ksmedia.h: New file. * include/mmreg.h: New file. * include/mpegtype.h: New file. * include/vidcap.h: New file. * include/vmr9.h: New file. * include/vptype.h: New file. * include/xprtdefs.h: New file.
36 lines
812 B
C
36 lines
812 B
C
#ifndef _IL21DEC_H
|
|
#define _IL21DEC_H
|
|
#if __GNUC__ >= 3
|
|
#pragma GCC system_header
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*--- DirectShow Reference - DirectShow Enumerated Types */
|
|
typedef enum _AM_LINE21_CCLEVEL {
|
|
AM_L21_CCLEVEL_TC2
|
|
} AM_LINE21_CCLEVEL,*PAM_LINE21_CCLEVEL;
|
|
typedef enum _AM_LINE21_CCSERVICE {
|
|
AM_L21_CCSERVICE_None,
|
|
AM_L21_CCSERVICE_Caption1,
|
|
AM_L21_CCSERVICE_Caption2,
|
|
AM_L21_CCSERVICE_Text1,
|
|
AM_L21_CCSERVICE_Text2,
|
|
AM_L21_CCSERVICE_XDS,
|
|
} AM_LINE21_CCSERVICE,*PAM_LINE21_CCSERVICE;
|
|
typedef enum _AM_LINE21_CCSTATE {
|
|
AM_L21_CCSTATE_Off,
|
|
AM_L21_CCSTATE_On
|
|
} AM_LINE21_CCSTATE,*PAM_LINE21_CCSTATE;
|
|
typedef enum _AM_LINE21_DRAWBGMODE {
|
|
AM_L21_DRAWBGMODE_Opaque,
|
|
AM_L21_DRAWBGMODE_Transparent
|
|
} AM_LINE21_DRAWBGMODE,*PAM_LINE21_DRAWBGMODE;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|