mirror of https://github.com/opencv/opencv.git
Merge pull request #9217 from alalek:cleanup_3rdparty
commit
2ca561f104
19 changed files with 10 additions and 17769 deletions
@ -1,110 +0,0 @@ |
||||
/**
|
||||
* This file has no copyright assigned and is placed in the Public Domain. |
||||
* This file is part of the w64 mingw-runtime package. |
||||
* No warranty is given; refer to the file DISCLAIMER within this package. |
||||
*/ |
||||
|
||||
#if defined(_MSC_VER) && !defined(_MSC_EXTENSIONS) |
||||
#define NONAMELESSUNION 1 |
||||
#endif |
||||
#if defined(NONAMELESSSTRUCT) && \ |
||||
!defined(NONAMELESSUNION) |
||||
#define NONAMELESSUNION 1 |
||||
#endif |
||||
#if defined(NONAMELESSUNION) && \ |
||||
!defined(NONAMELESSSTRUCT) |
||||
#define NONAMELESSSTRUCT 1 |
||||
#endif |
||||
|
||||
#ifndef __ANONYMOUS_DEFINED |
||||
#define __ANONYMOUS_DEFINED |
||||
#if defined(__GNUC__) || defined(__GNUG__) |
||||
#define _ANONYMOUS_UNION __extension__ |
||||
#define _ANONYMOUS_STRUCT __extension__ |
||||
#else |
||||
#define _ANONYMOUS_UNION |
||||
#define _ANONYMOUS_STRUCT |
||||
#endif |
||||
#ifndef NONAMELESSUNION |
||||
#define _UNION_NAME(x) |
||||
#define _STRUCT_NAME(x) |
||||
#else /* NONAMELESSUNION */ |
||||
#define _UNION_NAME(x) x |
||||
#define _STRUCT_NAME(x) x |
||||
#endif |
||||
#endif /* __ANONYMOUS_DEFINED */ |
||||
|
||||
#ifndef DUMMYUNIONNAME |
||||
# ifdef NONAMELESSUNION |
||||
# define DUMMYUNIONNAME u |
||||
# define DUMMYUNIONNAME1 u1 /* Wine uses this variant */ |
||||
# define DUMMYUNIONNAME2 u2 |
||||
# define DUMMYUNIONNAME3 u3 |
||||
# define DUMMYUNIONNAME4 u4 |
||||
# define DUMMYUNIONNAME5 u5 |
||||
# define DUMMYUNIONNAME6 u6 |
||||
# define DUMMYUNIONNAME7 u7 |
||||
# define DUMMYUNIONNAME8 u8 |
||||
# define DUMMYUNIONNAME9 u9 |
||||
# else /* NONAMELESSUNION */ |
||||
# define DUMMYUNIONNAME |
||||
# define DUMMYUNIONNAME1 /* Wine uses this variant */ |
||||
# define DUMMYUNIONNAME2 |
||||
# define DUMMYUNIONNAME3 |
||||
# define DUMMYUNIONNAME4 |
||||
# define DUMMYUNIONNAME5 |
||||
# define DUMMYUNIONNAME6 |
||||
# define DUMMYUNIONNAME7 |
||||
# define DUMMYUNIONNAME8 |
||||
# define DUMMYUNIONNAME9 |
||||
# endif |
||||
#endif /* DUMMYUNIONNAME */ |
||||
|
||||
#if !defined(DUMMYUNIONNAME1) /* MinGW does not define this one */ |
||||
# ifdef NONAMELESSUNION |
||||
# define DUMMYUNIONNAME1 u1 /* Wine uses this variant */ |
||||
# else |
||||
# define DUMMYUNIONNAME1 /* Wine uses this variant */ |
||||
# endif |
||||
#endif /* DUMMYUNIONNAME1 */ |
||||
|
||||
#ifndef DUMMYSTRUCTNAME |
||||
# ifdef NONAMELESSUNION |
||||
# define DUMMYSTRUCTNAME s |
||||
# define DUMMYSTRUCTNAME1 s1 /* Wine uses this variant */ |
||||
# define DUMMYSTRUCTNAME2 s2 |
||||
# define DUMMYSTRUCTNAME3 s3 |
||||
# define DUMMYSTRUCTNAME4 s4 |
||||
# define DUMMYSTRUCTNAME5 s5 |
||||
# else |
||||
# define DUMMYSTRUCTNAME |
||||
# define DUMMYSTRUCTNAME1 /* Wine uses this variant */ |
||||
# define DUMMYSTRUCTNAME2 |
||||
# define DUMMYSTRUCTNAME3 |
||||
# define DUMMYSTRUCTNAME4 |
||||
# define DUMMYSTRUCTNAME5 |
||||
# endif |
||||
#endif /* DUMMYSTRUCTNAME */ |
||||
|
||||
/* These are for compatibility with the Wine source tree */ |
||||
|
||||
#ifndef WINELIB_NAME_AW |
||||
# ifdef __MINGW_NAME_AW |
||||
# define WINELIB_NAME_AW __MINGW_NAME_AW |
||||
# else |
||||
# ifdef UNICODE |
||||
# define WINELIB_NAME_AW(func) func##W |
||||
# else |
||||
# define WINELIB_NAME_AW(func) func##A |
||||
# endif |
||||
# endif |
||||
#endif /* WINELIB_NAME_AW */ |
||||
|
||||
#ifndef DECL_WINELIB_TYPE_AW |
||||
# ifdef __MINGW_TYPEDEF_AW |
||||
# define DECL_WINELIB_TYPE_AW __MINGW_TYPEDEF_AW |
||||
# else |
||||
# define DECL_WINELIB_TYPE_AW(type) typedef WINELIB_NAME_AW(type) type; |
||||
# endif |
||||
#endif /* DECL_WINELIB_TYPE_AW */ |
||||
|
@ -1,33 +0,0 @@ |
||||
/**
|
||||
* This file has no copyright assigned and is placed in the Public Domain. |
||||
* This file is part of the w64 mingw-runtime package. |
||||
* No warranty is given; refer to the file DISCLAIMER.PD within this package. |
||||
*/ |
||||
|
||||
#if !defined(_INC_CRT_UNICODE_MACROS) |
||||
/* _INC_CRT_UNICODE_MACROS defined based on UNICODE flag */ |
||||
|
||||
#if defined(UNICODE) |
||||
# define _INC_CRT_UNICODE_MACROS 1 |
||||
# define __MINGW_NAME_AW(func) func##W |
||||
# define __MINGW_NAME_AW_EXT(func,ext) func##W##ext |
||||
# define __MINGW_NAME_UAW(func) func##_W |
||||
# define __MINGW_NAME_UAW_EXT(func,ext) func##_W_##ext |
||||
# define __MINGW_STRING_AW(str) L##str /* same as TEXT() from winnt.h */ |
||||
# define __MINGW_PROCNAMEEXT_AW "W" |
||||
#else |
||||
# define _INC_CRT_UNICODE_MACROS 2 |
||||
# define __MINGW_NAME_AW(func) func##A |
||||
# define __MINGW_NAME_AW_EXT(func,ext) func##A##ext |
||||
# define __MINGW_NAME_UAW(func) func##_A |
||||
# define __MINGW_NAME_UAW_EXT(func,ext) func##_A_##ext |
||||
# define __MINGW_STRING_AW(str) str /* same as TEXT() from winnt.h */ |
||||
# define __MINGW_PROCNAMEEXT_AW "A" |
||||
#endif |
||||
|
||||
#define __MINGW_TYPEDEF_AW(type) \ |
||||
typedef __MINGW_NAME_AW(type) type; |
||||
#define __MINGW_TYPEDEF_UAW(type) \ |
||||
typedef __MINGW_NAME_UAW(type) type; |
||||
|
||||
#endif /* !defined(_INC_CRT_UNICODE_MACROS) */ |
File diff suppressed because it is too large
Load Diff
@ -1,31 +0,0 @@ |
||||
#ifndef _AUDEVCOD_H |
||||
#define _AUDEVCOD_H |
||||
#if __GNUC__ >=3 |
||||
#pragma GCC system_header |
||||
#endif |
||||
|
||||
#ifdef __cplusplus |
||||
extern "C" { |
||||
#endif |
||||
|
||||
typedef enum _tagSND_DEVICE_ERROR { |
||||
SNDDEV_ERROR_Open = 1, |
||||
SNDDEV_ERROR_Close = 2, |
||||
SNDDEV_ERROR_GetCaps = 3, |
||||
SNDDEV_ERROR_PrepareHeader = 4, |
||||
SNDDEV_ERROR_UnprepareHeader = 5, |
||||
SNDDEV_ERROR_Reset = 6, |
||||
SNDDEV_ERROR_Restart = 7, |
||||
SNDDEV_ERROR_GetPosition = 8, |
||||
SNDDEV_ERROR_Write = 9, |
||||
SNDDEV_ERROR_Pause = 10, |
||||
SNDDEV_ERROR_Stop = 11, |
||||
SNDDEV_ERROR_Start = 12, |
||||
SNDDEV_ERROR_AddBuffer = 13, |
||||
SNDDEV_ERROR_Query = 14 |
||||
} SNDDEV_ERR; |
||||
|
||||
#ifdef __cplusplus |
||||
} |
||||
#endif |
||||
#endif |
@ -1,32 +0,0 @@ |
||||
#ifndef _BDATYPES_H |
||||
#define _BDATYPES_H |
||||
#if __GNUC__ >= 3 |
||||
#pragma GCC system_header |
||||
#endif |
||||
|
||||
#ifdef __cplusplus |
||||
extern "C" { |
||||
#endif |
||||
|
||||
/*--- DirectShow Reference - DirectShow Enumerated Types */ |
||||
typedef enum { |
||||
MEDIA_TRANSPORT_PACKET, |
||||
MEDIA_ELEMENTARY_STREAM, |
||||
MEDIA_MPEG2_PSI, |
||||
MEDIA_TRANSPORT_PAYLOAD |
||||
} MEDIA_SAMPLE_CONTENT; |
||||
/*--- DirectShow Reference - DirectShow Structures */ |
||||
typedef struct { |
||||
DWORD dwOffset; |
||||
DWORD dwPacketLength; |
||||
DWORD dwStride; |
||||
} MPEG2_TRANSPORT_STRIDE; |
||||
typedef struct { |
||||
ULONG ulPID; |
||||
MEDIA_SAMPLE_CONTENT MediaSampleContent ; |
||||
} PID_MAP; |
||||
|
||||
#ifdef __cplusplus |
||||
} |
||||
#endif |
||||
#endif |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,61 +0,0 @@ |
||||
/*
|
||||
* Copyright (C) 2002 Alexandre Julliard |
||||
* |
||||
* This library is free software; you can redistribute it and/or |
||||
* modify it under the terms of the GNU Lesser General Public |
||||
* License as published by the Free Software Foundation; either |
||||
* version 2.1 of the License, or (at your option) any later version. |
||||
* |
||||
* This library is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
* Lesser General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Lesser General Public |
||||
* License along with this library; if not, write to the Free Software |
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
||||
*/ |
||||
|
||||
#ifndef __DSHOW_INCLUDED__ |
||||
#define __DSHOW_INCLUDED__ |
||||
|
||||
#define AM_NOVTABLE |
||||
|
||||
#ifndef __WINESRC__ |
||||
# include <windows.h> |
||||
# include <windowsx.h> |
||||
#else |
||||
# include <windef.h> |
||||
# include <wingdi.h> |
||||
# include <objbase.h> |
||||
#endif |
||||
#include <olectl.h> |
||||
#include <dshow/ddraw.h> |
||||
#include <mmsystem.h> |
||||
/* FIXME: #include <strsafe.h>*/ |
||||
|
||||
#ifndef NUMELMS |
||||
#define NUMELMS(array) (sizeof(array)/sizeof((array)[0])) |
||||
#endif |
||||
|
||||
#include <dshow/strmif.h> |
||||
#include <dshow/amvideo.h> |
||||
#ifdef DSHOW_USE_AMAUDIO |
||||
/* FIXME: #include <amaudio.h>*/ |
||||
#endif |
||||
#include <dshow/control.h> |
||||
#include <dshow/evcode.h> |
||||
#include <dshow/uuids.h> |
||||
#include <dshow/errors.h> |
||||
/* FIXME: #include <edevdefs.h> */ |
||||
#include <dshow/audevcod.h> |
||||
/* FIXME: #include <dvdevcod.h> */ |
||||
|
||||
#ifndef OATRUE |
||||
#define OATRUE (-1) |
||||
#endif |
||||
#ifndef OAFALSE |
||||
#define OAFALSE (0) |
||||
#endif |
||||
|
||||
#endif /* __DSHOW_INCLUDED__ */ |
File diff suppressed because it is too large
Load Diff
@ -1,75 +0,0 @@ |
||||
/*
|
||||
* Copyright (C) 2008 Maarten Lankhorst |
||||
* |
||||
* This library is free software; you can redistribute it and/or |
||||
* modify it under the terms of the GNU Lesser General Public |
||||
* License as published by the Free Software Foundation; either |
||||
* version 2.1 of the License, or (at your option) any later version. |
||||
* |
||||
* This library is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
* Lesser General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Lesser General Public |
||||
* License along with this library; if not, write to the Free Software |
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
||||
*/ |
||||
|
||||
#ifndef __DVDMEDIA_H__ |
||||
#define __DVDMEDIA_H__ |
||||
|
||||
#define AMCONTROL_USED 0x00000001 |
||||
#define AMCONTROL_PAD_TO_4x3 0x00000002 |
||||
#define AMCONTROL_PAD_TO_16x9 0x00000004 |
||||
|
||||
enum AM_MPEG2Level { |
||||
AM_MPEG2Level_Low = 1, |
||||
AM_MPEG2Level_Main, |
||||
AM_MPEG2Level_High1440, |
||||
AM_MPEG2Level_High |
||||
}; |
||||
enum AM_MPEG2Profile { |
||||
AM_MPEG2Profile_Simple = 1, |
||||
AM_MPEG2Profile_Main, |
||||
AM_MPEG2Profile_SNRScalable, |
||||
AM_MPEG2Profile_SpatiallyScalable, |
||||
AM_MPEG2Profile_High |
||||
}; |
||||
typedef enum { |
||||
AM_RATE_ChangeRate = 1, |
||||
AM_RATE_FullDataRateMax = 2, |
||||
AM_RATE_ReverseDecode = 3, |
||||
AM_RATE_DecoderPosition = 4, |
||||
AM_RATE_DecoderVersion = 5 |
||||
} AM_PROPERTY_DVD_RATE_CHANGE; |
||||
|
||||
typedef struct tagVIDEOINFOHEADER2 { |
||||
RECT rcSource; |
||||
RECT rcTarget; |
||||
DWORD dwBitRate; |
||||
DWORD dwBitErrorRate; |
||||
REFERENCE_TIME AvgTimePerFrame; |
||||
DWORD dwInterlaceFlags; |
||||
DWORD dwCopyProtectFlags; |
||||
DWORD dwPictAspectRatioX; |
||||
DWORD dwPictAspectRatioY; |
||||
union { |
||||
DWORD dwControlFlags; |
||||
DWORD dwReserved1; |
||||
} DUMMYUNIONNAME; |
||||
DWORD dwReserved2; |
||||
BITMAPINFOHEADER bmiHeader; |
||||
} VIDEOINFOHEADER2; |
||||
|
||||
typedef struct tagMPEG2VIDEOINFO { |
||||
VIDEOINFOHEADER2 hdr; |
||||
DWORD dwStartTimeCode; |
||||
DWORD cbSequenceHeader; |
||||
DWORD dwProfile; |
||||
DWORD dwLevel; |
||||
DWORD dwFlags; |
||||
DWORD dwSequenceHeader[1]; |
||||
} MPEG2VIDEOINFO; |
||||
|
||||
#endif /* __DVDMEDIA_H__ */ |
@ -1,169 +0,0 @@ |
||||
#ifndef _ERRORS_H |
||||
#define _ERRORS_H |
||||
#if __GNUC__ >=3 |
||||
#pragma GCC system_header |
||||
#endif |
||||
|
||||
#ifdef __cplusplus |
||||
extern "C" { |
||||
#endif |
||||
|
||||
/*--- DirectShow Reference - Constants and GUIDs - Error and Success Codes */ |
||||
#define VFW_S_NO_MORE_ITEMS 0x00040103 |
||||
#define VFW_S_DUPLICATE_NAME 0x0004022D |
||||
#define VFW_S_STATE_INTERMEDIATE 0x00040237 |
||||
#define VFW_S_PARTIAL_RENDER 0x00040242 |
||||
#define VFW_S_SOME_DATA_IGNORED 0x00040245 |
||||
#define VFW_S_CONNECTIONS_DEFERRED 0x00040246 |
||||
#define VFW_S_RESOURCE_NOT_NEEDED 0x00040250 |
||||
#define VFW_S_MEDIA_TYPE_IGNORED 0x00040254 |
||||
#define VFW_S_VIDEO_NOT_RENDERED 0x00040257 |
||||
#define VFW_S_AUDIO_NOT_RENDERED 0x00040258 |
||||
#define VFW_S_RPZA 0x0004025A |
||||
#define VFW_S_ESTIMATED 0x00040260 |
||||
#define VFW_S_RESERVED 0x00040263 |
||||
#define VFW_S_STREAM_OFF 0x00040267 |
||||
#define VFW_S_CANT_CUE 0x00040268 |
||||
#define VFW_S_NOPREVIEWPIN 0x0004027E |
||||
#define VFW_S_DVD_NON_ONE_SEQUENTIAL 0x00040280 |
||||
#define VFW_S_DVD_CHANNEL_CONTENTS_NOT_AVAILABLE 0x0004028C |
||||
#define VFW_S_DVD_NOT_ACCURATE 0x0004028D |
||||
#define VFW_E_INVALIDMEDIATYPE 0x80040200 |
||||
#define VFW_E_INVALIDSUBTYPE 0x80040201 |
||||
#define VFW_E_NEED_OWNER 0x80040202 |
||||
#define VFW_E_ENUM_OUT_OF_SYNC 0x80040203 |
||||
#define VFW_E_ALREADY_CONNECTED 0x80040204 |
||||
#define VFW_E_FILTER_ACTIVE 0x80040205 |
||||
#define VFW_E_NO_TYPES 0x80040206 |
||||
#define VFW_E_NO_ACCEPTABLE_TYPES 0x80040207 |
||||
#define VFW_E_INVALID_DIRECTION 0x80040208 |
||||
#define VFW_E_NOT_CONNECTED 0x80040209 |
||||
#define VFW_E_NO_ALLOCATOR 0x8004020A |
||||
#define VFW_E_RUNTIME_ERROR 0x8004020B |
||||
#define VFW_E_BUFFER_NOTSET 0x8004020C |
||||
#define VFW_E_BUFFER_OVERFLOW 0x8004020D |
||||
#define VFW_E_BADALIGN 0x8004020E |
||||
#define VFW_E_ALREADY_COMMITTED 0x8004020F |
||||
#define VFW_E_BUFFERS_OUTSTANDING 0x80040210 |
||||
#define VFW_E_NOT_COMMITTED 0x80040211 |
||||
#define VFW_E_SIZENOTSET 0x80040212 |
||||
#define VFW_E_NO_CLOCK 0x80040213 |
||||
#define VFW_E_NO_SINK 0x80040214 |
||||
#define VFW_E_NO_INTERFACE 0x80040215 |
||||
#define VFW_E_NOT_FOUND 0x80040216 |
||||
#define VFW_E_CANNOT_CONNECT 0x80040217 |
||||
#define VFW_E_CANNOT_RENDER 0x80040218 |
||||
#define VFW_E_CHANGING_FORMAT 0x80040219 |
||||
#define VFW_E_NO_COLOR_KEY_SET 0x8004021A |
||||
#define VFW_E_NOT_OVERLAY_CONNECTION 0x8004021B |
||||
#define VFW_E_NOT_SAMPLE_CONNECTION 0x8004021C |
||||
#define VFW_E_PALETTE_SET 0x8004021D |
||||
#define VFW_E_COLOR_KEY_SET 0x8004021E |
||||
#define VFW_E_NO_COLOR_KEY_FOUND 0x8004021F |
||||
#define VFW_E_NO_PALETTE_AVAILABLE 0x80040220 |
||||
#define VFW_E_NO_DISPLAY_PALETTE 0x80040221 |
||||
#define VFW_E_TOO_MANY_COLORS 0x80040222 |
||||
#define VFW_E_STATE_CHANGED 0x80040223 |
||||
#define VFW_E_NOT_STOPPED 0x80040224 |
||||
#define VFW_E_NOT_PAUSED 0x80040225 |
||||
#define VFW_E_NOT_RUNNING 0x80040226 |
||||
#define VFW_E_WRONG_STATE 0x80040227 |
||||
#define VFW_E_START_TIME_AFTER_END 0x80040228 |
||||
#define VFW_E_INVALID_RECT 0x80040229 |
||||
#define VFW_E_TYPE_NOT_ACCEPTED 0x8004022A |
||||
#define VFW_E_SAMPLE_REJECTED 0x8004022B |
||||
#define VFW_E_SAMPLE_REJECTED_EOS 0x8004022C |
||||
#define VFW_E_DUPLICATE_NAME 0x8004022D |
||||
#define VFW_E_TIMEOUT 0x8004022E |
||||
#define VFW_E_INVALID_FILE_FORMAT 0x8004022F |
||||
#define VFW_E_ENUM_OUT_OF_RANGE 0x80040230 |
||||
#define VFW_E_CIRCULAR_GRAPH 0x80040231 |
||||
#define VFW_E_NOT_ALLOWED_TO_SAVE 0x80040232 |
||||
#define VFW_E_TIME_ALREADY_PASSED 0x80040233 |
||||
#define VFW_E_ALREADY_CANCELLED 0x80040234 |
||||
#define VFW_E_CORRUPT_GRAPH_FILE 0x80040235 |
||||
#define VFW_E_ADVISE_ALREADY_SET 0x80040236 |
||||
#define VFW_E_NO_MODEX_AVAILABLE 0x80040238 |
||||
#define VFW_E_NO_ADVISE_SET 0x80040239 |
||||
#define VFW_E_NO_FULLSCREEN 0x8004023A |
||||
#define VFW_E_IN_FULLSCREEN_MODE 0x8004023B |
||||
#define VFW_E_UNKNOWN_FILE_TYPE 0x80040240 |
||||
#define VFW_E_CANNOT_LOAD_SOURCE_FILTER 0x80040241 |
||||
#define VFW_E_FILE_TOO_SHORT 0x80040243 |
||||
#define VFW_E_INVALID_FILE_VERSION 0x80040244 |
||||
#define VFW_E_INVALID_CLSID 0x80040247 |
||||
#define VFW_E_INVALID_MEDIA_TYPE 0x80040248 |
||||
#define VFW_E_SAMPLE_TIME_NOT_SET 0x80040249 |
||||
#define VFW_E_MEDIA_TIME_NOT_SET 0x80040251 |
||||
#define VFW_E_NO_TIME_FORMAT_SET 0x80040252 |
||||
#define VFW_E_MONO_AUDIO_HW 0x80040253 |
||||
#define VFW_E_NO_DECOMPRESSOR 0x80040255 |
||||
#define VFW_E_NO_AUDIO_HARDWARE 0x80040256 |
||||
#define VFW_E_RPZA 0x80040259 |
||||
#define VFW_E_PROCESSOR_NOT_SUITABLE 0x8004025B |
||||
#define VFW_E_UNSUPPORTED_AUDIO 0x8004025C |
||||
#define VFW_E_UNSUPPORTED_VIDEO 0x8004025D |
||||
#define VFW_E_MPEG_NOT_CONSTRAINED 0x8004025E |
||||
#define VFW_E_NOT_IN_GRAPH 0x8004025F |
||||
#define VFW_E_NO_TIME_FORMAT 0x80040261 |
||||
#define VFW_E_READ_ONLY 0x80040262 |
||||
#define VFW_E_BUFFER_UNDERFLOW 0x80040264 |
||||
#define VFW_E_UNSUPPORTED_STREAM 0x80040265 |
||||
#define VFW_E_NO_TRANSPORT 0x80040266 |
||||
#define VFW_E_BAD_VIDEOCD 0x80040269 |
||||
#define VFW_S_NO_STOP_TIME 0x80040270 |
||||
#define VFW_E_OUT_OF_VIDEO_MEMORY 0x80040271 |
||||
#define VFW_E_VP_NEGOTIATION_FAILED 0x80040272 |
||||
#define VFW_E_DDRAW_CAPS_NOT_SUITABLE 0x80040273 |
||||
#define VFW_E_NO_VP_HARDWARE 0x80040274 |
||||
#define VFW_E_NO_CAPTURE_HARDWARE 0x80040275 |
||||
#define VFW_E_DVD_OPERATION_INHIBITED 0x80040276 |
||||
#define VFW_E_DVD_INVALIDDOMAIN 0x80040277 |
||||
#define VFW_E_DVD_NO_BUTTON 0x80040278 |
||||
#define VFW_E_DVD_GRAPHNOTREADY 0x80040279 |
||||
#define VFW_E_DVD_RENDERFAIL 0x8004027A |
||||
#define VFW_E_DVD_DECNOTENOUGH 0x8004027B |
||||
#define VFW_E_DDRAW_VERSION_NOT_SUITABLE 0x8004027C |
||||
#define VFW_E_COPYPROT_FAILED 0x8004027D |
||||
#define VFW_E_TIME_EXPIRED 0x8004027F |
||||
#define VFW_E_DVD_WRONG_SPEED 0x80040281 |
||||
#define VFW_E_DVD_MENU_DOES_NOT_EXIST 0x80040282 |
||||
#define VFW_E_DVD_CMD_CANCELLED 0x80040283 |
||||
#define VFW_E_DVD_STATE_WRONG_VERSION 0x80040284 |
||||
#define VFW_E_DVD_STATE_CORRUPT 0x80040285 |
||||
#define VFW_E_DVD_STATE_WRONG_DISC 0x80040286 |
||||
#define VFW_E_DVD_INCOMPATIBLE_REGION 0x80040287 |
||||
#define VFW_E_DVD_NO_ATTRIBUTES 0x80040288 |
||||
#define VFW_E_DVD_NO_GOUP_PGC 0x80040289 |
||||
#define VFW_E_DVD_LOW_PARENTAL_LEVEL 0x8004028A |
||||
#define VFW_E_DVD_NOT_IN_KARAOKE_MODE 0x8004028B |
||||
#define VFW_E_FRAME_STEP_UNSUPPORTED 0x8004028E |
||||
#define VFW_E_DVD_STREAM_DISABLED 0x8004028F |
||||
#define VFW_E_DVD_TITLE_UNKNOWN 0x80040290 |
||||
#define VFW_E_DVD_INVALID_DISC 0x80040291 |
||||
#define VFW_E_DVD_NO_RESUME_INFORMATION 0x80040292 |
||||
#define VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD 0x80040293 |
||||
#define VFW_E_PIN_ALREADY_BLOCKED 0x80040294 |
||||
#define VFW_E_CERTIFICATION_FAILURE 0x80040295 |
||||
#define VFW_E_VMR_NOT_IN_MIXER_MODE 0x80040296 |
||||
#define VFW_E_VMR_NO_AP_SUPPLIED 0x80040297 |
||||
#define VFW_E_VMR_NO_DEINTERLACE_HW 0x80040298 |
||||
#define VFW_E_VMR_NO_PROCAMP_HW 0x80040299 |
||||
#define VFW_E_DVD_VMR9_INCOMPATIBLEDEC 0x8004029A |
||||
#define VFW_E_NO_COPP_HW 0x8004029B |
||||
#define VFW_E_BAD_KEY 0x800403F2 |
||||
/*--- DirectShow Reference - Functions */ |
||||
#define MAX_ERROR_TEXT_LEN 160 |
||||
/*--- DirectShow Reference - Functions */ |
||||
DWORD WINAPI AMGetErrorTextA(HRESULT,CHAR*,DWORD); |
||||
DWORD WINAPI AMGetErrorTextW(HRESULT,WCHAR*,DWORD); |
||||
#ifdef UNICODE |
||||
#define AMGetErrorText AMGetErrorTextW |
||||
#else |
||||
#define AMGetErrorText AMGetErrorTextA |
||||
#endif |
||||
|
||||
#ifdef __cplusplus |
||||
} |
||||
#endif |
||||
#endif |
@ -1,68 +0,0 @@ |
||||
#ifndef _EVCODE_H |
||||
#define _EVCODE_H |
||||
#if __GNUC__ >=3 |
||||
#pragma GCC system_header |
||||
#endif |
||||
|
||||
#ifdef __cplusplus |
||||
extern "C" { |
||||
#endif |
||||
|
||||
/*--- DirectShow Reference - Constants and GUIDs - Event Notification Codes */ |
||||
#define EC_ACTIVATE 0x0013 |
||||
#define EC_BUFFERING_DATA 0x0011 |
||||
#define EC_BUILT 0x0300 |
||||
#define EC_CLOCK_CHANGED 0x000D |
||||
#define EC_CLOCK_UNSET 0x0051 |
||||
#define EC_CODECAPI_EVENT 0x0057 |
||||
#define EC_COMPLETE 0x0001 |
||||
#define EC_DEVICE_LOST 0x001F |
||||
#define EC_DISPLAY_CHANGED 0x0016 |
||||
#define EC_END_OF_SEGMENT 0x001C |
||||
#define EC_ERROR_STILLPLAYING 0x0008 |
||||
#define EC_ERRORABORT 0x0003 |
||||
#define EC_EXTDEVICE_MODE_CHANGE 0x0031 |
||||
#define EC_FULLSCREEN_LOST 0x0012 |
||||
#define EC_GRAPH_CHANGED 0x0050 |
||||
#define EC_LENGTH_CHANGED 0x001E |
||||
#define EC_NEED_RESTART 0x0014 |
||||
#define EC_NOTIFY_WINDOW 0x0019 |
||||
#define EC_OLE_EVENT 0x0018 |
||||
#define EC_OPENING_FILE 0x0010 |
||||
#define EC_PALETTE_CHANGED 0x0009 |
||||
#define EC_PAUSED 0x000E |
||||
#define EC_PREPROCESS_COMPLETE 0x0056 |
||||
#define EC_QUALITY_CHANGE 0x000B |
||||
#define EC_REPAINT 0x0005 |
||||
#define EC_SEGMENT_STARTED 0x001D |
||||
#define EC_SHUTTING_DOWN 0x000C |
||||
#define EC_SNDDEV_IN_ERROR 0x0200 |
||||
#define EC_SNDDEV_OUT_ERROR 0x0201 |
||||
#define EC_STARVATION 0x0017 |
||||
#define EC_STATE_CHANGE 0x0032 |
||||
#define EC_STEP_COMPLETE 0x0024 |
||||
#define EC_STREAM_CONTROL_STARTED 0x001B |
||||
#define EC_STREAM_CONTROL_STOPPED 0x001A |
||||
#define EC_STREAM_ERROR_STILLPLAYING 0x0007 |
||||
#define EC_STREAM_ERROR_STOPPED 0x0006 |
||||
#define EC_TIMECODE_AVAILABLE 0x0030 |
||||
#define EC_UNBUILT 0x0301 |
||||
#define EC_USERABORT 0x0002 |
||||
#define EC_VIDEO_SIZE_CHANGED 0x000A |
||||
#define EC_VMR_RENDERDEVICE_SET 0x0053 |
||||
#define EC_VMR_SURFACE_FLIPPED 0x0054 |
||||
#define EC_VMR_RECONNECTION_FAILED 0x0055 |
||||
#define EC_WINDOW_DESTROYED 0x0015 |
||||
#define EC_WMT_EVENT 0x0252 |
||||
#define EC_WMT_INDEX_EVENT 0x0251 |
||||
#define EC_USER 0x8000 |
||||
/*--- DirectShow Reference - DirectShow Structures */ |
||||
typedef struct { |
||||
HRESULT hrStatus; |
||||
void *pData; |
||||
} AM_WMT_EVENT_DATA; |
||||
|
||||
#ifdef __cplusplus |
||||
} |
||||
#endif |
||||
#endif |
@ -1,191 +0,0 @@ |
||||
/**
|
||||
* This file has no copyright assigned and is placed in the Public Domain. |
||||
* This file is part of the w64 mingw-runtime package. |
||||
* No warranty is given; refer to the file DISCLAIMER.PD within this package. |
||||
*/ |
||||
|
||||
OUR_GUID_ENTRY(MEDIATYPE_MPEG2_PACK, |
||||
0x36523B13,0x8EE5,0x11d1,0x8C,0xA3,0x00,0x60,0xB0,0x57,0x66,0x4A) |
||||
|
||||
OUR_GUID_ENTRY(MEDIATYPE_MPEG2_PES, |
||||
0xe06d8020,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x5f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2_WMDRM_TRANSPORT, |
||||
0x18BEC4EA,0x4676,0x450e,0xB4,0x78,0x0C,0xD8,0x4C,0x54,0xB3,0x27) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2_VIDEO, |
||||
0xe06d8026,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x5f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(FORMAT_MPEG2_VIDEO, |
||||
0xe06d80e3,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x5f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(FORMAT_VIDEOINFO2, |
||||
0xf72a76A0L,0xeb0a,0x11d0,0xac,0xe4,0x0,0x0,0xc0,0xcc,0x16,0xba) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2_PROGRAM, |
||||
0xe06d8022,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2_TRANSPORT, |
||||
0xe06d8023,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2_AUDIO, |
||||
0xe06d802b,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DOLBY_AC3, |
||||
0xe06d802c,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DVD_SUBPICTURE, |
||||
0xe06d802d,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DVD_LPCM_AUDIO, |
||||
0xe06d8032,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIATYPE_DVD_ENCRYPTED_PACK, |
||||
0xed0b916a,0x044d,0x11d1,0xaa,0x78,0x00,0xc0,0x04f,0xc3,0x1d,0x60) |
||||
|
||||
OUR_GUID_ENTRY(MEDIATYPE_DVD_NAVIGATION, |
||||
0xe06d802e,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DVD_NAVIGATION_PCI, |
||||
0xe06d802f,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DVD_NAVIGATION_DSI, |
||||
0xe06d8030,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DVD_NAVIGATION_PROVIDER, |
||||
0xe06d8031,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(FORMAT_MPEG2Video, |
||||
0xe06d80e3,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(FORMAT_DolbyAC3, |
||||
0xe06d80e4,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(FORMAT_MPEG2Audio, |
||||
0xe06d80e5,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(FORMAT_DVD_LPCMAudio, |
||||
0xe06d80e6,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSPROPSETID_AC3, |
||||
0xBFABE720,0x6E1F,0x11D0,0xBC,0xF2,0x44,0x45,0x53,0x54,0x00,0x00) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSPROPSETID_DvdSubPic, |
||||
0xac390460,0x43af,0x11d0,0xbd,0x6a,0x00,0x35,0x05,0xc1,0x03,0xa9) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSPROPSETID_CopyProt, |
||||
0x0E8A0A40,0x6AEF,0x11D0,0x9E,0xD0,0x00,0xA0,0x24,0xCA,0x19,0xB3) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSPROPSETID_TSRateChange, |
||||
0xa503c5c0,0x1d1d,0x11d1,0xad,0x80,0x44,0x45,0x53,0x54,0x0,0x0) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSPROPSETID_MPEG4_MediaType_Attributes, |
||||
0xff6c4bfa,0x7a9,0x4c7b,0xa2,0x37,0x67,0x2f,0x9d,0x68,0x6,0x5f) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_CAPTURE, |
||||
0x65E8773DL,0x8F56,0x11D0,0xA3,0xB9,0x00,0xA0,0xC9,0x22,0x31,0x96) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_RENDER, |
||||
0x65E8773EL,0x8F56,0x11D0,0xA3,0xB9,0x00,0xA0,0xC9,0x22,0x31,0x96) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_DATACOMPRESSOR, |
||||
0x1E84C900L,0x7E70,0x11D0,0xA5,0xD6,0x28,0xDB,0x04,0xC1,0x00,0x00) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_AUDIO, |
||||
0x6994AD04L,0x93EF,0x11D0,0xA3,0xCC,0x00,0xA0,0xC9,0x22,0x31,0x96) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_VIDEO, |
||||
0x6994AD05L,0x93EF,0x11D0,0xA3,0xCC,0x00,0xA0,0xC9,0x22,0x31,0x96) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_TVTUNER, |
||||
0xa799a800L,0xa46d,0x11d0,0xa1,0x8c,0x00,0xa0,0x24,0x01,0xdc,0xd4) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_CROSSBAR, |
||||
0xa799a801L,0xa46d,0x11d0,0xa1,0x8c,0x00,0xa0,0x24,0x01,0xdc,0xd4) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_TVAUDIO, |
||||
0xa799a802L,0xa46d,0x11d0,0xa1,0x8c,0x00,0xa0,0x24,0x01,0xdc,0xd4) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_VBICODEC, |
||||
0x07dad660L,0x22f1,0x11d1,0xa9,0xf4,0x00,0xc0,0x4f,0xbb,0xde,0x8f) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_SPLITTER, |
||||
0x0A4252A0L,0x7E70,0x11D0,0xA5,0xD6,0x28,0xDB,0x04,0xC1,0x00,0x00) |
||||
|
||||
OUR_GUID_ENTRY(IID_IKsInterfaceHandler, |
||||
0xD3ABC7E0L,0x9A61,0x11D0,0xA4,0x0D,0x00,0xA0,0xC9,0x22,0x31,0x96) |
||||
|
||||
OUR_GUID_ENTRY(IID_IKsDataTypeHandler, |
||||
0x5FFBAA02L,0x49A3,0x11D0,0x9F,0x36,0x00,0xAA,0x00,0xA2,0x16,0xA1) |
||||
|
||||
OUR_GUID_ENTRY(IID_IKsPin, |
||||
0xb61178d1L,0xa2d9,0x11cf,0x9e,0x53,0x00,0xaa,0x00,0xa2,0x16,0xa1) |
||||
|
||||
OUR_GUID_ENTRY(IID_IKsControl, |
||||
0x28F54685L,0x06FD,0x11D2,0xB2,0x7A,0x00,0xA0,0xC9,0x22,0x31,0x96) |
||||
|
||||
OUR_GUID_ENTRY(IID_IKsPinFactory, |
||||
0xCD5EBE6BL,0x8B6E,0x11D1,0x8A,0xE0,0x00,0xA0,0xC9,0x22,0x31,0x96) |
||||
|
||||
OUR_GUID_ENTRY(AM_INTERFACESETID_Standard, |
||||
0x1A8766A0L,0x62CE,0x11CF,0xA5,0xD6,0x28,0xDB,0x04,0xC1,0x00,0x00) |
||||
|
||||
#if ( (NTDDI_VERSION >= NTDDI_WINXPSP2) && (NTDDI_VERSION < NTDDI_WS03) ) || (NTDDI_VERSION >= NTDDI_WS03SP1) |
||||
OUR_GUID_ENTRY(MEDIATYPE_MPEG2_SECTIONS, |
||||
0x455f176c,0x4b06,0x47ce,0x9a,0xef,0x8c,0xae,0xf7,0x3d,0xf7,0xb5) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2_VERSIONED_TABLES, |
||||
0x1ed988b0,0x3ffc,0x4523,0x87,0x25,0x34,0x7b,0xee,0xc1,0xa8,0xa0) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ATSC_SI, |
||||
0xb3c7397c,0xd303,0x414d,0xb3,0x3c,0x4e,0xd2,0xc9,0xd2,0x97,0x33) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DVB_SI, |
||||
0xe9dd31a3,0x221d,0x4adb,0x85,0x32,0x9a,0xf3,0x9,0xc1,0xa4,0x8) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ISDB_SI, |
||||
0xe89ad298,0x3601,0x4b06,0xaa,0xec,0x9d,0xde,0xed,0xcc,0x5b,0xd0) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_TIF_SI, |
||||
0xec232eb2,0xcb96,0x4191,0xb2,0x26,0xe,0xa1,0x29,0xf3,0x82,0x50) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2DATA, |
||||
0xc892e55b,0x252d,0x42b5,0xa3,0x16,0xd9,0x97,0xe7,0xa5,0xd9,0x95) |
||||
#endif |
||||
/* ( (NTDDI_VERSION >= NTDDI_WINXPSP2) && (NTDDI_VERSION < NTDDI_WS03) ) ||
|
||||
(NTDDI_VERSION >= NTDDI_WS03SP1) */ |
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WINXP) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2_TRANSPORT_STRIDE, |
||||
0x138aa9a4,0x1ee2,0x4c5b,0x98,0x8e,0x19,0xab,0xfd,0xbc,0x8a,0x11) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2_UDCR_TRANSPORT, |
||||
0x18BEC4EA,0x4676,0x450e,0xB4,0x78,0x0C,0xD8,0x4C,0x54,0xB3,0x27) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2_PBDA_TRANSPORT_RAW, |
||||
0x0d7aed42,0xcb9a,0x11db,0x97,0x5,0x0,0x50,0x56,0xc0,0x0,0x8) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG2_PBDA_TRANSPORT_PROCESSED, |
||||
0xaf748dd4,0xd80,0x11db,0x97,0x5,0x0,0x50,0x56,0xc0,0x0,0x8) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DTS, |
||||
0xe06d8033,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_SDDS, |
||||
0xe06d8034,0xdb46,0x11cf,0xb4,0xd1,0x00,0x80,0x05f,0x6c,0xbb,0xea) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSPROPSETID_DVD_RateChange, |
||||
0x3577eb09,0x9582,0x477f,0xb2,0x9c,0xb0,0xc4,0x52,0xa4,0xff,0x9a) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSPROPSETID_DvdKaraoke, |
||||
0xae4720ae,0xaa71,0x42d8,0xb8,0x2a,0xff,0xfd,0xf5,0x8b,0x76,0xfd) |
||||
|
||||
OUR_GUID_ENTRY(AM_KSPROPSETID_FrameStep, |
||||
0xc830acbd,0xab07,0x492f,0x88,0x52,0x45,0xb6,0x98,0x7c,0x29,0x79) |
||||
#endif /* NTDDI_VERSION >= NTDDI_WINXP */ |
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WS03SP1) |
||||
OUR_GUID_ENTRY(AM_KSCATEGORY_VBICODEC_MI, |
||||
0x9c24a977,0x951,0x451a,0x80,0x6,0xe,0x49,0xbd,0x28,0xcd,0x5f) |
||||
#endif /* NTDDI_VERSION >= NTDDI_WS03SP1 */ |
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,368 +0,0 @@ |
||||
/**
|
||||
* This file has no copyright assigned and is placed in the Public Domain. |
||||
* This file is part of the w64 mingw-runtime package. |
||||
* No warranty is given; refer to the file DISCLAIMER.PD within this package. |
||||
*/ |
||||
#ifndef OUR_GUID_ENTRY |
||||
#define OUR_GUID_ENTRY(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8); |
||||
#endif |
||||
|
||||
#define MEDIATYPE_NULL GUID_NULL |
||||
#define MEDIASUBTYPE_NULL GUID_NULL |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_None,0xe436eb8e,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIATYPE_Video,0x73646976,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIATYPE_Audio,0x73647561,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIATYPE_Text,0x73747874,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIATYPE_Midi,0x7364696D,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIATYPE_Stream,0xe436eb83,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIATYPE_Interleaved,0x73766169,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIATYPE_File,0x656c6966,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIATYPE_ScriptCommand,0x73636d64,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIATYPE_AUXLine21Data,0x670aea80,0x3a82,0x11d0,0xb7,0x9b,0x0,0xaa,0x0,0x37,0x67,0xa7) |
||||
OUR_GUID_ENTRY(MEDIATYPE_VBI,0xf72a76e1,0xeb0a,0x11d0,0xac,0xe4,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(MEDIATYPE_Timecode,0x482dee3,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIATYPE_LMRT,0x74726c6d,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIATYPE_URL_STREAM,0x736c7275,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_CLPL,0x4C504C43,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_YUYV,0x56595559,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_IYUV,0x56555949,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_YVU9,0x39555659,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_Y411,0x31313459,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_Y41P,0x50313459,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_YUY2,0x32595559,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_YVYU,0x55595659,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_UYVY,0x59565955,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_Y211,0x31313259,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_CLJR,0x524a4c43,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_IF09,0x39304649,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_CPLA,0x414c5043,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MJPG,0x47504A4D,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_TVMJ,0x4A4D5654,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_WAKE,0x454B4157,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_CFCC,0x43434643,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_IJPG,0x47504A49,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_Plum,0x6D756C50,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DVCS,0x53435644,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DVSD,0x44535644,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MDVF,0x4656444D,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB1,0xe436eb78,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB4,0xe436eb79,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB8,0xe436eb7a,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB565,0xe436eb7b,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB555,0xe436eb7c,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB24,0xe436eb7d,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB32,0xe436eb7e,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ARGB1555,0x297c55af,0xe209,0x4cb3,0xb7,0x57,0xc7,0x6d,0x6b,0x9c,0x88,0xa8) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ARGB4444,0x6e6415e6,0x5c24,0x425f,0x93,0xcd,0x80,0x10,0x2b,0x3d,0x1c,0xca) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ARGB32,0x773c9ac0,0x3274,0x11d0,0xb7,0x24,0x0,0xaa,0x0,0x6c,0x1a,0x1) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_A2R10G10B10,0x2f8bb76d,0xb644,0x4550,0xac,0xf3,0xd3,0x0c,0xaa,0x65,0xd5,0xc5) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_A2B10G10R10,0x576f7893,0xbdf6,0x48c4,0x87,0x5f,0xae,0x7b,0x81,0x83,0x45,0x67) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AYUV,0x56555941,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AI44,0x34344941,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_IA44,0x34344149,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB32_D3D_DX7_RT,0x32335237,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB16_D3D_DX7_RT,0x36315237,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ARGB32_D3D_DX7_RT,0x38384137,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ARGB4444_D3D_DX7_RT,0x34344137,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ARGB1555_D3D_DX7_RT,0x35314137,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB32_D3D_DX9_RT,0x32335239,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RGB16_D3D_DX9_RT,0x36315239,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ARGB32_D3D_DX9_RT,0x38384139,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ARGB4444_D3D_DX9_RT,0x34344139,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_ARGB1555_D3D_DX9_RT,0x35314139,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
|
||||
#define MEDIASUBTYPE_HASALPHA(mt) (((mt).subtype==MEDIASUBTYPE_ARGB4444) || ((mt).subtype==MEDIASUBTYPE_ARGB32) || ((mt).subtype==MEDIASUBTYPE_AYUV) || ((mt).subtype==MEDIASUBTYPE_AI44) || ((mt).subtype==MEDIASUBTYPE_IA44) || ((mt).subtype==MEDIASUBTYPE_ARGB1555) || ((mt).subtype==MEDIASUBTYPE_ARGB32_D3D_DX7_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB4444_D3D_DX7_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB1555_D3D_DX7_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB32_D3D_DX9_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB4444_D3D_DX9_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB1555_D3D_DX9_RT)) |
||||
#define MEDIASUBTYPE_HASALPHA7(mt) (((mt).subtype==MEDIASUBTYPE_ARGB32_D3D_DX7_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB4444_D3D_DX7_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB1555_D3D_DX7_RT)) |
||||
#define MEDIASUBTYPE_D3D_DX7_RT(mt) (((mt).subtype==MEDIASUBTYPE_ARGB32_D3D_DX7_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB4444_D3D_DX7_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB1555_D3D_DX7_RT) || ((mt).subtype==MEDIASUBTYPE_RGB32_D3D_DX7_RT) || ((mt).subtype==MEDIASUBTYPE_RGB16_D3D_DX7_RT)) |
||||
#define MEDIASUBTYPE_HASALPHA9(mt) (((mt).subtype==MEDIASUBTYPE_ARGB32_D3D_DX9_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB4444_D3D_DX9_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB1555_D3D_DX9_RT)) |
||||
#define MEDIASUBTYPE_D3D_DX9_RT(mt) (((mt).subtype==MEDIASUBTYPE_ARGB32_D3D_DX9_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB4444_D3D_DX9_RT) || ((mt).subtype==MEDIASUBTYPE_ARGB1555_D3D_DX9_RT) || ((mt).subtype==MEDIASUBTYPE_RGB32_D3D_DX9_RT) || ((mt).subtype==MEDIASUBTYPE_RGB16_D3D_DX9_RT)) |
||||
|
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_YV12,0x32315659,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_NV12,0x3231564E,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_IMC1,0x31434D49,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_IMC2,0x32434D49,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_IMC3,0x33434D49,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_IMC4,0x34434D49,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_S340,0x30343353,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_S342,0x32343353,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_Overlay,0xe436eb7f,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG1Packet,0xe436eb80,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG1Payload,0xe436eb81,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG1AudioPayload,0x00000050,0x0000,0x0010,0x80,0x00,0x00,0xAA,0x00,0x38,0x9B,0x71) |
||||
OUR_GUID_ENTRY(MEDIATYPE_MPEG1SystemStream,0xe436eb82,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG1System,0xe436eb84,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG1VideoCD,0xe436eb85,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG1Video,0xe436eb86,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_MPEG1Audio,0xe436eb87,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_Avi,0xe436eb88,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_Asf,0x3db80f90,0x9412,0x11d1,0xad,0xed,0x0,0x0,0xf8,0x75,0x4b,0x99) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_QTMovie,0xe436eb89,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_QTRpza,0x617a7072,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_QTSmc,0x20636d73,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_QTRle,0x20656c72,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_QTJpeg,0x6765706a,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_PCMAudio_Obsolete,0xe436eb8a,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_PCM,0x00000001,0x0000,0x0010,0x80,0x00,0x00,0xAA,0x00,0x38,0x9B,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_WAVE,0xe436eb8b,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AU,0xe436eb8c,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AIFF,0xe436eb8d,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_dvsd,0x64737664,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_dvhd,0x64687664,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_dvsl,0x6c737664,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_dv25,0x35327664,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_dv50,0x30357664,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_dvh1,0x31687664,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_Line21_BytePair,0x6e8d4a22,0x310c,0x11d0,0xb7,0x9a,0x0,0xaa,0x0,0x37,0x67,0xa7) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_Line21_GOPPacket,0x6e8d4a23,0x310c,0x11d0,0xb7,0x9a,0x0,0xaa,0x0,0x37,0x67,0xa7) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_Line21_VBIRawData,0x6e8d4a24,0x310c,0x11d0,0xb7,0x9a,0x0,0xaa,0x0,0x37,0x67,0xa7) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_TELETEXT,0xf72a76e3,0xeb0a,0x11d0,0xac,0xe4,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_WSS,0x2791D576,0x8E7A,0x466F,0x9E,0x90,0x5D,0x3F,0x30,0x83,0x73,0x8B) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_VPS,0xa1b3f620,0x9792,0x4d8d,0x81,0xa4,0x86,0xaf,0x25,0x77,0x20,0x90) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DRM_Audio,0x00000009,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_IEEE_FLOAT,0x00000003,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DOLBY_AC3_SPDIF,0x00000092,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_RAW_SPORT,0x00000240,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_SPDIF_TAG_241h,0x00000241,0x0000,0x0010,0x80,0x00,0x00,0xaa,0x00,0x38,0x9b,0x71) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DssVideo,0xa0af4f81,0xe163,0x11d0,0xba,0xd9,0x0,0x60,0x97,0x44,0x11,0x1a) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_DssAudio,0xa0af4f82,0xe163,0x11d0,0xba,0xd9,0x0,0x60,0x97,0x44,0x11,0x1a) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_VPVideo,0x5a9b6a40,0x1a22,0x11d1,0xba,0xd9,0x0,0x60,0x97,0x44,0x11,0x1a) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_VPVBI,0x5a9b6a41,0x1a22,0x11d1,0xba,0xd9,0x0,0x60,0x97,0x44,0x11,0x1a) |
||||
OUR_GUID_ENTRY(CLSID_CaptureGraphBuilder,0xBF87B6E0,0x8C27,0x11d0,0xB3,0xF0,0x0,0xAA,0x00,0x37,0x61,0xC5) |
||||
OUR_GUID_ENTRY(CLSID_CaptureGraphBuilder2,0xBF87B6E1,0x8C27,0x11d0,0xB3,0xF0,0x0,0xAA,0x00,0x37,0x61,0xC5) |
||||
OUR_GUID_ENTRY(CLSID_ProtoFilterGraph,0xe436ebb0,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_SystemClock,0xe436ebb1,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_FilterMapper,0xe436ebb2,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_FilterGraph,0xe436ebb3,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_FilterGraphNoThread,0xe436ebb8,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_MPEG1Doc,0xe4bbd160,0x4269,0x11ce,0x83,0x8d,0x0,0xaa,0x0,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(CLSID_FileSource,0x701722e0,0x8ae3,0x11ce,0xa8,0x5c,0x00,0xaa,0x00,0x2f,0xea,0xb5) |
||||
OUR_GUID_ENTRY(CLSID_MPEG1PacketPlayer,0x26c25940,0x4ca9,0x11ce,0xa8,0x28,0x0,0xaa,0x0,0x2f,0xea,0xb5) |
||||
OUR_GUID_ENTRY(CLSID_MPEG1Splitter,0x336475d0,0x942a,0x11ce,0xa8,0x70,0x00,0xaa,0x00,0x2f,0xea,0xb5) |
||||
OUR_GUID_ENTRY(CLSID_CMpegVideoCodec,0xfeb50740,0x7bef,0x11ce,0x9b,0xd9,0x0,0x0,0xe2,0x2,0x59,0x9c) |
||||
OUR_GUID_ENTRY(CLSID_CMpegAudioCodec,0x4a2286e0,0x7bef,0x11ce,0x9b,0xd9,0x0,0x0,0xe2,0x2,0x59,0x9c) |
||||
OUR_GUID_ENTRY(CLSID_TextRender,0xe30629d3,0x27e5,0x11ce,0x87,0x5d,0x0,0x60,0x8c,0xb7,0x80,0x66) |
||||
OUR_GUID_ENTRY(CLSID_InfTee,0xf8388a40,0xd5bb,0x11d0,0xbe,0x5a,0x0,0x80,0xc7,0x6,0x56,0x8e) |
||||
OUR_GUID_ENTRY(CLSID_AviSplitter,0x1b544c20,0xfd0b,0x11ce,0x8c,0x63,0x0,0xaa,0x00,0x44,0xb5,0x1e) |
||||
OUR_GUID_ENTRY(CLSID_AviReader,0x1b544c21,0xfd0b,0x11ce,0x8c,0x63,0x0,0xaa,0x00,0x44,0xb5,0x1e) |
||||
OUR_GUID_ENTRY(CLSID_VfwCapture,0x1b544c22,0xfd0b,0x11ce,0x8c,0x63,0x0,0xaa,0x00,0x44,0xb5,0x1e) |
||||
OUR_GUID_ENTRY(CLSID_CaptureProperties,0x1B544c22,0xFD0B,0x11ce,0x8C,0x63,0x00,0xAA,0x00,0x44,0xB5,0x1F) |
||||
OUR_GUID_ENTRY(CLSID_FGControl,0xe436ebb4,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_MOVReader,0x44584800,0xf8ee,0x11ce,0xb2,0xd4,0x00,0xdd,0x1,0x10,0x1b,0x85) |
||||
OUR_GUID_ENTRY(CLSID_QuickTimeParser,0xd51bd5a0,0x7548,0x11cf,0xa5,0x20,0x0,0x80,0xc7,0x7e,0xf5,0x8a) |
||||
OUR_GUID_ENTRY(CLSID_QTDec,0xfdfe9681,0x74a3,0x11d0,0xaf,0xa7,0x0,0xaa,0x0,0xb6,0x7a,0x42) |
||||
OUR_GUID_ENTRY(CLSID_AVIDoc,0xd3588ab0,0x0781,0x11ce,0xb0,0x3a,0x00,0x20,0xaf,0xb,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_VideoRenderer,0x70e102b0,0x5556,0x11ce,0x97,0xc0,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(CLSID_Colour,0x1643e180,0x90f5,0x11ce,0x97,0xd5,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(CLSID_Dither,0x1da08500,0x9edc,0x11cf,0xbc,0x10,0x00,0xaa,0x00,0xac,0x74,0xf6) |
||||
OUR_GUID_ENTRY(CLSID_ModexRenderer,0x7167665,0x5011,0x11cf,0xbf,0x33,0x0,0xaa,0x0,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(CLSID_AudioRender,0xe30629d1,0x27e5,0x11ce,0x87,0x5d,0x0,0x60,0x8c,0xb7,0x80,0x66) |
||||
OUR_GUID_ENTRY(CLSID_AudioProperties,0x05589faf,0xc356,0x11ce,0xbf,0x01,0x0,0xaa,0x0,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(CLSID_DSoundRender,0x79376820,0x07D0,0x11CF,0xA2,0x4D,0x0,0x20,0xAF,0xD7,0x97,0x67) |
||||
OUR_GUID_ENTRY(CLSID_AudioRecord,0xe30629d2,0x27e5,0x11ce,0x87,0x5d,0x0,0x60,0x8c,0xb7,0x80,0x66) |
||||
OUR_GUID_ENTRY(CLSID_AudioInputMixerProperties,0x2ca8ca52,0x3c3f,0x11d2,0xb7,0x3d,0x0,0xc0,0x4f,0xb6,0xbd,0x3d) |
||||
OUR_GUID_ENTRY(CLSID_AVIDec,0xcf49d4e0,0x1115,0x11ce,0xb0,0x3a,0x0,0x20,0xaf,0xb,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_AVIDraw,0xa888df60,0x1e90,0x11cf,0xac,0x98,0x0,0xaa,0x0,0x4c,0xf,0xa9) |
||||
OUR_GUID_ENTRY(CLSID_ACMWrapper,0x6a08cf80,0x0e18,0x11cf,0xa2,0x4d,0x0,0x20,0xaf,0xd7,0x97,0x67) |
||||
OUR_GUID_ENTRY(CLSID_AsyncReader,0xe436ebb5,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_URLReader,0xe436ebb6,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_PersistMonikerPID,0xe436ebb7,0x524f,0x11ce,0x9f,0x53,0x00,0x20,0xaf,0x0b,0xa7,0x70) |
||||
OUR_GUID_ENTRY(CLSID_AVICo,0xd76e2820,0x1563,0x11cf,0xac,0x98,0x0,0xaa,0x0,0x4c,0xf,0xa9) |
||||
OUR_GUID_ENTRY(CLSID_FileWriter,0x8596e5f0,0xda5,0x11d0,0xbd,0x21,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_AviDest,0xe2510970,0xf137,0x11ce,0x8b,0x67,0x0,0xaa,0x0,0xa3,0xf1,0xa6) |
||||
OUR_GUID_ENTRY(CLSID_AviMuxProptyPage,0xc647b5c0,0x157c,0x11d0,0xbd,0x23,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_AviMuxProptyPage1,0xa9ae910,0x85c0,0x11d0,0xbd,0x42,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_AVIMIDIRender,0x07b65360,0xc445,0x11ce,0xaf,0xde,0x00,0xaa,0x00,0x6c,0x14,0xf4) |
||||
OUR_GUID_ENTRY(CLSID_WMAsfReader,0x187463a0,0x5bb7,0x11d3,0xac,0xbe,0x0,0x80,0xc7,0x5e,0x24,0x6e) |
||||
OUR_GUID_ENTRY(CLSID_WMAsfWriter,0x7c23220e,0x55bb,0x11d3,0x8b,0x16,0x0,0xc0,0x4f,0xb6,0xbd,0x3d) |
||||
OUR_GUID_ENTRY(CLSID_MPEG2Demultiplexer,0xafb6c280,0x2c41,0x11d3,0x8a,0x60,0x00,0x00,0xf8,0x1e,0x0e,0x4a) |
||||
OUR_GUID_ENTRY(CLSID_MMSPLITTER,0x3ae86b20,0x7be8,0x11d1,0xab,0xe6,0x00,0xa0,0xc9,0x05,0xf3,0x75) |
||||
OUR_GUID_ENTRY(CLSID_StreamBufferSink,0x2db47ae5,0xcf39,0x43c2,0xb4,0xd6,0xc,0xd8,0xd9,0x9,0x46,0xf4) |
||||
OUR_GUID_ENTRY(CLSID_StreamBufferSource,0xc9f5fe02,0xf851,0x4eb5,0x99,0xee,0xad,0x60,0x2a,0xf1,0xe6,0x19) |
||||
OUR_GUID_ENTRY(CLSID_StreamBufferConfig,0xfa8a68b2,0xc864,0x4ba2,0xad,0x53,0xd3,0x87,0x6a,0x87,0x49,0x4b) |
||||
OUR_GUID_ENTRY(CLSID_Mpeg2VideoStreamAnalyzer,0x6cfad761,0x735d,0x4aa5,0x8a,0xfc,0xaf,0x91,0xa7,0xd6,0x1e,0xba) |
||||
OUR_GUID_ENTRY(CLSID_StreamBufferRecordingAttributes,0xccaa63ac,0x1057,0x4778,0xae,0x92,0x12,0x6,0xab,0x9a,0xce,0xe6) |
||||
OUR_GUID_ENTRY(CLSID_StreamBufferComposeRecording,0xd682c4ba,0xa90a,0x42fe,0xb9,0xe1,0x3,0x10,0x98,0x49,0xc4,0x23) |
||||
OUR_GUID_ENTRY(CLSID_DVVideoCodec,0xb1b77c00,0xc3e4,0x11cf,0xaf,0x79,0x0,0xaa,0x0,0xb6,0x7a,0x42) |
||||
OUR_GUID_ENTRY(CLSID_DVVideoEnc,0x13aa3650,0xbb6f,0x11d0,0xaf,0xb9,0x0,0xaa,0x0,0xb6,0x7a,0x42) |
||||
OUR_GUID_ENTRY(CLSID_DVSplitter,0x4eb31670,0x9fc6,0x11cf,0xaf,0x6e,0x0,0xaa,0x0,0xb6,0x7a,0x42) |
||||
OUR_GUID_ENTRY(CLSID_DVMux,0x129d7e40,0xc10d,0x11d0,0xaf,0xb9,0x0,0xaa,0x0,0xb6,0x7a,0x42) |
||||
OUR_GUID_ENTRY(CLSID_SeekingPassThru,0x60af76c,0x68dd,0x11d0,0x8f,0xc1,0x0,0xc0,0x4f,0xd9,0x18,0x9d) |
||||
OUR_GUID_ENTRY(CLSID_Line21Decoder,0x6e8d4a20,0x310c,0x11d0,0xb7,0x9a,0x0,0xaa,0x0,0x37,0x67,0xa7) |
||||
OUR_GUID_ENTRY(CLSID_Line21Decoder2,0xe4206432,0x01a1,0x4bee,0xb3,0xe1,0x37,0x02,0xc8,0xed,0xc5,0x74) |
||||
OUR_GUID_ENTRY(CLSID_OverlayMixer,0xcd8743a1,0x3736,0x11d0,0x9e,0x69,0x0,0xc0,0x4f,0xd7,0xc1,0x5b) |
||||
OUR_GUID_ENTRY(CLSID_VBISurfaces,0x814b9800,0x1c88,0x11d1,0xba,0xd9,0x0,0x60,0x97,0x44,0x11,0x1a) |
||||
OUR_GUID_ENTRY(CLSID_WSTDecoder,0x70bc06e0,0x5666,0x11d3,0xa1,0x84,0x0,0x10,0x5a,0xef,0x9f,0x33) |
||||
OUR_GUID_ENTRY(CLSID_MjpegDec,0x301056d0,0x6dff,0x11d2,0x9e,0xeb,0x0,0x60,0x8,0x3,0x9e,0x37) |
||||
OUR_GUID_ENTRY(CLSID_MJPGEnc,0xb80ab0a0,0x7416,0x11d2,0x9e,0xeb,0x0,0x60,0x8,0x3,0x9e,0x37) |
||||
OUR_GUID_ENTRY(CLSID_SystemDeviceEnum,0x62BE5D10,0x60EB,0x11d0,0xBD,0x3B,0x00,0xA0,0xC9,0x11,0xCE,0x86) |
||||
OUR_GUID_ENTRY(CLSID_CDeviceMoniker,0x4315D437,0x5B8C,0x11d0,0xBD,0x3B,0x00,0xA0,0xC9,0x11,0xCE,0x86) |
||||
OUR_GUID_ENTRY(CLSID_VideoInputDeviceCategory,0x860BB310,0x5D01,0x11d0,0xBD,0x3B,0x00,0xA0,0xC9,0x11,0xCE,0x86) |
||||
OUR_GUID_ENTRY(CLSID_CVidCapClassManager,0x860BB310,0x5D01,0x11d0,0xBD,0x3B,0x00,0xA0,0xC9,0x11,0xCE,0x86) |
||||
OUR_GUID_ENTRY(CLSID_LegacyAmFilterCategory,0x083863F1,0x70DE,0x11d0,0xBD,0x40,0x00,0xA0,0xC9,0x11,0xCE,0x86) |
||||
OUR_GUID_ENTRY(CLSID_CQzFilterClassManager,0x083863F1,0x70DE,0x11d0,0xBD,0x40,0x00,0xA0,0xC9,0x11,0xCE,0x86) |
||||
OUR_GUID_ENTRY(CLSID_VideoCompressorCategory,0x33d9a760,0x90c8,0x11d0,0xbd,0x43,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_CIcmCoClassManager,0x33d9a760,0x90c8,0x11d0,0xbd,0x43,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_AudioCompressorCategory,0x33d9a761,0x90c8,0x11d0,0xbd,0x43,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_CAcmCoClassManager,0x33d9a761,0x90c8,0x11d0,0xbd,0x43,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_AudioInputDeviceCategory,0x33d9a762,0x90c8,0x11d0,0xbd,0x43,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_CWaveinClassManager,0x33d9a762,0x90c8,0x11d0,0xbd,0x43,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_AudioRendererCategory,0xe0f158e1,0xcb04,0x11d0,0xbd,0x4e,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_CWaveOutClassManager,0xe0f158e1,0xcb04,0x11d0,0xbd,0x4e,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_MidiRendererCategory,0x4EfE2452,0x168A,0x11d1,0xBC,0x76,0x0,0xc0,0x4F,0xB9,0x45,0x3B) |
||||
OUR_GUID_ENTRY(CLSID_CMidiOutClassManager,0x4EfE2452,0x168A,0x11d1,0xBC,0x76,0x0,0xc0,0x4F,0xB9,0x45,0x3B) |
||||
OUR_GUID_ENTRY(CLSID_TransmitCategory,0xcc7bfb41,0xf175,0x11d1,0xa3,0x92,0x0,0xe0,0x29,0x1f,0x39,0x59) |
||||
OUR_GUID_ENTRY(CLSID_DeviceControlCategory,0xcc7bfb46,0xf175,0x11d1,0xa3,0x92,0x0,0xe0,0x29,0x1f,0x39,0x59) |
||||
OUR_GUID_ENTRY(CLSID_ActiveMovieCategories,0xda4e3da0,0xd07d,0x11d0,0xbd,0x50,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_DVDHWDecodersCategory,0x2721AE20,0x7E70,0x11D0,0xA5,0xD6,0x28,0xDB,0x04,0xC1,0x00,0x00) |
||||
OUR_GUID_ENTRY(CLSID_MediaEncoderCategory,0x7D22E920,0x5CA9,0x4787,0x8C,0x2B,0xA6,0x77,0x9B,0xD1,0x17,0x81) |
||||
OUR_GUID_ENTRY(CLSID_MediaMultiplexerCategory,0x236C9559,0xADCE,0x4736,0xBF,0x72,0xBA,0xB3,0x4E,0x39,0x21,0x96) |
||||
OUR_GUID_ENTRY(CLSID_FilterMapper2,0xcda42200,0xbd88,0x11d0,0xbd,0x4e,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_MemoryAllocator,0x1e651cc0,0xb199,0x11d0,0x82,0x12,0x00,0xc0,0x4f,0xc3,0x2c,0x45) |
||||
OUR_GUID_ENTRY(CLSID_MediaPropertyBag,0xcdbd8d00,0xc193,0x11d0,0xbd,0x4e,0x0,0xa0,0xc9,0x11,0xce,0x86) |
||||
OUR_GUID_ENTRY(CLSID_DvdGraphBuilder,0xFCC152B7,0xF372,0x11d0,0x8E,0x00,0x00,0xC0,0x4F,0xD7,0xC0,0x8B) |
||||
OUR_GUID_ENTRY(CLSID_DVDNavigator,0x9b8c4620,0x2c1a,0x11d0,0x84,0x93,0x0,0xa0,0x24,0x38,0xad,0x48) |
||||
OUR_GUID_ENTRY(CLSID_DVDState,0xf963c5cf,0xa659,0x4a93,0x96,0x38,0xca,0xf3,0xcd,0x27,0x7d,0x13) |
||||
OUR_GUID_ENTRY(CLSID_SmartTee,0xcc58e280,0x8aa1,0x11d1,0xb3,0xf1,0x0,0xaa,0x0,0x37,0x61,0xc5) |
||||
OUR_GUID_ENTRY(FORMAT_None,0x0F6417D6,0xc318,0x11d0,0xa4,0x3f,0x00,0xa0,0xc9,0x22,0x31,0x96) |
||||
OUR_GUID_ENTRY(FORMAT_VideoInfo,0x05589f80,0xc356,0x11ce,0xbf,0x01,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(FORMAT_VideoInfo2,0xf72a76A0,0xeb0a,0x11d0,0xac,0xe4,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(FORMAT_WaveFormatEx,0x05589f81,0xc356,0x11ce,0xbf,0x01,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(FORMAT_MPEGVideo,0x05589f82,0xc356,0x11ce,0xbf,0x01,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(FORMAT_MPEGStreams,0x05589f83,0xc356,0x11ce,0xbf,0x01,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(FORMAT_DvInfo,0x05589f84,0xc356,0x11ce,0xbf,0x01,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(CLSID_DirectDrawProperties,0x944d4c00,0xdd52,0x11ce,0xbf,0x0e,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(CLSID_PerformanceProperties,0x59ce6880,0xacf8,0x11cf,0xb5,0x6e,0x00,0x80,0xc7,0xc4,0xb6,0x8a) |
||||
OUR_GUID_ENTRY(CLSID_QualityProperties,0x418afb70,0xf8b8,0x11ce,0xaa,0xc6,0x00,0x20,0xaf,0x0b,0x99,0xa3) |
||||
OUR_GUID_ENTRY(IID_IBaseVideoMixer,0x61ded640,0xe912,0x11ce,0xa0,0x99,0x00,0xaa,0x00,0x47,0x9a,0x58) |
||||
OUR_GUID_ENTRY(IID_IDirectDrawVideo,0x36d39eb0,0xdd75,0x11ce,0xbf,0x0e,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(IID_IQualProp,0x1bd0ecb0,0xf8e2,0x11ce,0xaa,0xc6,0x00,0x20,0xaf,0x0b,0x99,0xa3) |
||||
OUR_GUID_ENTRY(CLSID_VPObject,0xce292861,0xfc88,0x11d0,0x9e,0x69,0x0,0xc0,0x4f,0xd7,0xc1,0x5b) |
||||
OUR_GUID_ENTRY(IID_IVPObject,0xce292862,0xfc88,0x11d0,0x9e,0x69,0x0,0xc0,0x4f,0xd7,0xc1,0x5b) |
||||
OUR_GUID_ENTRY(IID_IVPControl,0x25df12c1,0x3de0,0x11d1,0x9e,0x69,0x0,0xc0,0x4f,0xd7,0xc1,0x5b) |
||||
OUR_GUID_ENTRY(CLSID_VPVBIObject,0x814b9801,0x1c88,0x11d1,0xba,0xd9,0x0,0x60,0x97,0x44,0x11,0x1a) |
||||
OUR_GUID_ENTRY(IID_IVPVBIObject,0x814b9802,0x1c88,0x11d1,0xba,0xd9,0x0,0x60,0x97,0x44,0x11,0x1a) |
||||
OUR_GUID_ENTRY(IID_IVPConfig,0xbc29a660,0x30e3,0x11d0,0x9e,0x69,0x0,0xc0,0x4f,0xd7,0xc1,0x5b) |
||||
OUR_GUID_ENTRY(IID_IVPNotify,0xc76794a1,0xd6c5,0x11d0,0x9e,0x69,0x0,0xc0,0x4f,0xd7,0xc1,0x5b) |
||||
OUR_GUID_ENTRY(IID_IVPNotify2,0xebf47183,0x8764,0x11d1,0x9e,0x69,0x0,0xc0,0x4f,0xd7,0xc1,0x5b) |
||||
OUR_GUID_ENTRY(IID_IVPVBIConfig,0xec529b00,0x1a1f,0x11d1,0xba,0xd9,0x0,0x60,0x97,0x44,0x11,0x1a) |
||||
OUR_GUID_ENTRY(IID_IVPVBINotify,0xec529b01,0x1a1f,0x11d1,0xba,0xd9,0x0,0x60,0x97,0x44,0x11,0x1a) |
||||
OUR_GUID_ENTRY(IID_IMixerPinConfig,0x593cdde1,0x759,0x11d1,0x9e,0x69,0x0,0xc0,0x4f,0xd7,0xc1,0x5b) |
||||
OUR_GUID_ENTRY(IID_IMixerPinConfig2,0xebf47182,0x8764,0x11d1,0x9e,0x69,0x0,0xc0,0x4f,0xd7,0xc1,0x5b) |
||||
#ifndef __DDRAW_INCLUDED__ |
||||
OUR_GUID_ENTRY(CLSID_DirectDraw,0xD7B70EE0,0x4340,0x11CF,0xB0,0x63,0x00,0x20,0xAF,0xC2,0xCD,0x35) |
||||
OUR_GUID_ENTRY(CLSID_DirectDrawClipper,0x593817A0,0x7DB3,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xb9,0x33,0x56) |
||||
OUR_GUID_ENTRY(IID_IDirectDraw,0x6C14DB80,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60) |
||||
OUR_GUID_ENTRY(IID_IDirectDraw2,0xB3A6F3E0,0x2B43,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56) |
||||
OUR_GUID_ENTRY(IID_IDirectDrawSurface,0x6C14DB81,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60) |
||||
OUR_GUID_ENTRY(IID_IDirectDrawSurface2,0x57805885,0x6eec,0x11cf,0x94,0x41,0xa8,0x23,0x03,0xc1,0x0e,0x27) |
||||
OUR_GUID_ENTRY(IID_IDirectDrawSurface3,0xDA044E00,0x69B2,0x11D0,0xA1,0xD5,0x00,0xAA,0x00,0xB8,0xDF,0xBB) |
||||
OUR_GUID_ENTRY(IID_IDirectDrawSurface4,0x0B2B8630,0xAD35,0x11D0,0x8E,0xA6,0x00,0x60,0x97,0x97,0xEA,0x5B) |
||||
OUR_GUID_ENTRY(IID_IDirectDrawSurface7,0x06675a80,0x3b9b,0x11d2,0xb9,0x2f,0x00,0x60,0x97,0x97,0xea,0x5b) |
||||
OUR_GUID_ENTRY(IID_IDirectDrawPalette,0x6C14DB84,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60) |
||||
OUR_GUID_ENTRY(IID_IDirectDrawClipper,0x6C14DB85,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60) |
||||
OUR_GUID_ENTRY(IID_IDirectDrawColorControl,0x4B9F0EE0,0x0D7E,0x11D0,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8) |
||||
#endif |
||||
#ifndef __DVP_INCLUDED__ |
||||
OUR_GUID_ENTRY(IID_IDDVideoPortContainer,0x6C142760,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60) |
||||
#endif |
||||
#ifndef __DDKM_INCLUDED__ |
||||
OUR_GUID_ENTRY(IID_IDirectDrawKernel,0x8D56C120,0x6A08,0x11D0,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8) |
||||
OUR_GUID_ENTRY(IID_IDirectDrawSurfaceKernel,0x60755DA0,0x6A40,0x11D0,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8) |
||||
#endif |
||||
OUR_GUID_ENTRY(CLSID_ModexProperties,0x0618aa30,0x6bc4,0x11cf,0xbf,0x36,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(IID_IFullScreenVideo,0xdd1d7110,0x7836,0x11cf,0xbf,0x47,0x00,0xaa,0x00,0x55,0x59,0x5a) |
||||
OUR_GUID_ENTRY(IID_IFullScreenVideoEx,0x53479470,0xf1dd,0x11cf,0xbc,0x42,0x00,0xaa,0x00,0xac,0x74,0xf6) |
||||
OUR_GUID_ENTRY(CLSID_DVDecPropertiesPage,0x101193c0,0xbfe,0x11d0,0xaf,0x91,0x0,0xaa,0x0,0xb6,0x7a,0x42) |
||||
OUR_GUID_ENTRY(CLSID_DVEncPropertiesPage,0x4150f050,0xbb6f,0x11d0,0xaf,0xb9,0x0,0xaa,0x0,0xb6,0x7a,0x42) |
||||
OUR_GUID_ENTRY(CLSID_DVMuxPropertyPage,0x4db880e0,0xc10d,0x11d0,0xaf,0xb9,0x0,0xaa,0x0,0xb6,0x7a,0x42) |
||||
OUR_GUID_ENTRY(IID_IAMDirectSound,0x546f4260,0xd53e,0x11cf,0xb3,0xf0,0x0,0xaa,0x0,0x37,0x61,0xc5) |
||||
OUR_GUID_ENTRY(IID_IMpegAudioDecoder,0xb45dd570,0x3c77,0x11d1,0xab,0xe1,0x00,0xa0,0xc9,0x05,0xf3,0x75) |
||||
OUR_GUID_ENTRY(IID_IAMLine21Decoder,0x6e8d4a21,0x310c,0x11d0,0xb7,0x9a,0x0,0xaa,0x0,0x37,0x67,0xa7) |
||||
OUR_GUID_ENTRY(IID_IAMWstDecoder,0xc056de21,0x75c2,0x11d3,0xa1,0x84,0x0,0x10,0x5a,0xef,0x9f,0x33) |
||||
OUR_GUID_ENTRY(CLSID_WstDecoderPropertyPage,0x4e27f80,0x91e4,0x11d3,0xa1,0x84,0x0,0x10,0x5a,0xef,0x9f,0x33) |
||||
OUR_GUID_ENTRY(FORMAT_AnalogVideo,0x482dde0,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIATYPE_AnalogVideo,0x482dde1,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_NTSC_M,0x482dde2,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_PAL_B,0x482dde5,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_PAL_D,0x482dde6,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_PAL_G,0x482dde7,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_PAL_H,0x482dde8,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_PAL_I,0x482dde9,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_PAL_M,0x482ddea,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_PAL_N,0x482ddeb,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_PAL_N_COMBO,0x482ddec,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_SECAM_B,0x482ddf0,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_SECAM_D,0x482ddf1,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_SECAM_G,0x482ddf2,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_SECAM_H,0x482ddf3,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_SECAM_K,0x482ddf4,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_SECAM_K1,0x482ddf5,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIASUBTYPE_AnalogVideo_SECAM_L,0x482ddf6,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(MEDIATYPE_AnalogAudio,0x482dee1,0x7817,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
|
||||
#include "dshow/ksuuids.h" |
||||
|
||||
OUR_GUID_ENTRY(TIME_FORMAT_NONE,0L,0,0,0,0,0,0,0,0,0,0) |
||||
OUR_GUID_ENTRY(TIME_FORMAT_FRAME,0x7b785570,0x8c82,0x11cf,0xbc,0xc,0x0,0xaa,0x0,0xac,0x74,0xf6) |
||||
OUR_GUID_ENTRY(TIME_FORMAT_BYTE,0x7b785571,0x8c82,0x11cf,0xbc,0xc,0x0,0xaa,0x0,0xac,0x74,0xf6) |
||||
OUR_GUID_ENTRY(TIME_FORMAT_SAMPLE,0x7b785572,0x8c82,0x11cf,0xbc,0xc,0x0,0xaa,0x0,0xac,0x74,0xf6) |
||||
OUR_GUID_ENTRY(TIME_FORMAT_FIELD,0x7b785573,0x8c82,0x11cf,0xbc,0xc,0x0,0xaa,0x0,0xac,0x74,0xf6) |
||||
OUR_GUID_ENTRY(TIME_FORMAT_MEDIA_TIME,0x7b785574,0x8c82,0x11cf,0xbc,0xc,0x0,0xaa,0x0,0xac,0x74,0xf6) |
||||
OUR_GUID_ENTRY(AMPROPSETID_Pin,0x9b00f101,0x1567,0x11d1,0xb3,0xf1,0x0,0xaa,0x0,0x37,0x61,0xc5) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_CAPTURE,0xfb6c4281,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_PREVIEW,0xfb6c4282,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_ANALOGVIDEOIN,0xfb6c4283,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_VBI,0xfb6c4284,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_VIDEOPORT,0xfb6c4285,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_NABTS,0xfb6c4286,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_EDS,0xfb6c4287,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_TELETEXT,0xfb6c4288,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_CC,0xfb6c4289,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_STILL,0xfb6c428a,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_TIMECODE,0xfb6c428b,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(PIN_CATEGORY_VIDEOPORT_VBI,0xfb6c428c,0x0353,0x11d1,0x90,0x5f,0x00,0x00,0xc0,0xcc,0x16,0xba) |
||||
OUR_GUID_ENTRY(LOOK_UPSTREAM_ONLY,0xac798be0,0x98e3,0x11d1,0xb3,0xf1,0x0,0xaa,0x0,0x37,0x61,0xc5) |
||||
OUR_GUID_ENTRY(LOOK_DOWNSTREAM_ONLY,0xac798be1,0x98e3,0x11d1,0xb3,0xf1,0x0,0xaa,0x0,0x37,0x61,0xc5) |
||||
OUR_GUID_ENTRY(CLSID_TVTunerFilterPropertyPage,0x266eee41,0x6c63,0x11cf,0x8a,0x3,0x0,0xaa,0x0,0x6e,0xcb,0x65) |
||||
OUR_GUID_ENTRY(CLSID_CrossbarFilterPropertyPage,0x71f96461,0x78f3,0x11d0,0xa1,0x8c,0x0,0xa0,0xc9,0x11,0x89,0x56) |
||||
OUR_GUID_ENTRY(CLSID_TVAudioFilterPropertyPage,0x71f96463,0x78f3,0x11d0,0xa1,0x8c,0x0,0xa0,0xc9,0x11,0x89,0x56) |
||||
OUR_GUID_ENTRY(CLSID_VideoProcAmpPropertyPage,0x71f96464,0x78f3,0x11d0,0xa1,0x8c,0x0,0xa0,0xc9,0x11,0x89,0x56) |
||||
OUR_GUID_ENTRY(CLSID_CameraControlPropertyPage,0x71f96465,0x78f3,0x11d0,0xa1,0x8c,0x0,0xa0,0xc9,0x11,0x89,0x56) |
||||
OUR_GUID_ENTRY(CLSID_AnalogVideoDecoderPropertyPage,0x71f96466,0x78f3,0x11d0,0xa1,0x8c,0x0,0xa0,0xc9,0x11,0x89,0x56) |
||||
OUR_GUID_ENTRY(CLSID_VideoStreamConfigPropertyPage,0x71f96467,0x78f3,0x11d0,0xa1,0x8c,0x0,0xa0,0xc9,0x11,0x89,0x56) |
||||
OUR_GUID_ENTRY(CLSID_AudioRendererAdvancedProperties,0x37e92a92,0xd9aa,0x11d2,0xbf,0x84,0x8e,0xf2,0xb1,0x55,0x5a,0xed) |
||||
OUR_GUID_ENTRY(CLSID_VideoMixingRenderer,0xB87BEB7B,0x8D29,0x423f,0xAE,0x4D,0x65,0x82,0xC1,0x01,0x75,0xAC) |
||||
OUR_GUID_ENTRY(CLSID_VideoRendererDefault,0x6BC1CFFA,0x8FC1,0x4261,0xAC,0x22,0xCF,0xB4,0xCC,0x38,0xDB,0x50) |
||||
OUR_GUID_ENTRY(CLSID_AllocPresenter,0x99d54f63,0x1a69,0x41ae,0xaa,0x4d,0xc9,0x76,0xeb,0x3f,0x07,0x13) |
||||
OUR_GUID_ENTRY(CLSID_AllocPresenterDDXclMode,0x4444ac9e,0x242e,0x471b,0xa3,0xc7,0x45,0xdc,0xd4,0x63,0x52,0xbc) |
||||
OUR_GUID_ENTRY(CLSID_VideoPortManager,0x6f26a6cd,0x967b,0x47fd,0x87,0x4a,0x7a,0xed,0x2c,0x9d,0x25,0xa2) |
||||
OUR_GUID_ENTRY(CLSID_VideoMixingRenderer9,0x51b4abf3,0x748f,0x4e3b,0xa2,0x76,0xc8,0x28,0x33,0x0e,0x92,0x6a) |
||||
OUR_GUID_ENTRY(CLSID_ATSCNetworkProvider,0x0dad2fdd,0x5fd7,0x11d3,0x8f,0x50,0x00,0xc0,0x4f,0x79,0x71,0xe2) |
||||
OUR_GUID_ENTRY(CLSID_ATSCNetworkPropertyPage,0xe3444d16,0x5ac4,0x4386,0x88,0xdf,0x13,0xfd,0x23,0x0e,0x1d,0xda) |
||||
OUR_GUID_ENTRY(CLSID_DVBSNetworkProvider,0xfa4b375a,0x45b4,0x4d45,0x84,0x40,0x26,0x39,0x57,0xb1,0x16,0x23) |
||||
OUR_GUID_ENTRY(CLSID_DVBTNetworkProvider,0x216c62df,0x6d7f,0x4e9a,0x85,0x71,0x5,0xf1,0x4e,0xdb,0x76,0x6a) |
||||
OUR_GUID_ENTRY(CLSID_DVBCNetworkProvider,0xdc0c0fe7,0x485,0x4266,0xb9,0x3f,0x68,0xfb,0xf8,0xe,0xd8,0x34) |
||||
OUR_GUID_ENTRY(CLSID_DShowTVEFilter,0x05500280,0xFAA5,0x4DF9,0x82,0x46,0xBF,0xC2,0x3A,0xC5,0xCE,0xA8) |
||||
OUR_GUID_ENTRY(CLSID_TVEFilterTuneProperties,0x05500281,0xFAA5,0x4DF9,0x82,0x46,0xBF,0xC2,0x3A,0xC5,0xCE,0xA8) |
||||
OUR_GUID_ENTRY(CLSID_TVEFilterCCProperties,0x05500282,0xFAA5,0x4DF9,0x82,0x46,0xBF,0xC2,0x3A,0xC5,0xCE,0xA8) |
||||
OUR_GUID_ENTRY(CLSID_TVEFilterStatsProperties,0x05500283,0xFAA5,0x4DF9,0x82,0x46,0xBF,0xC2,0x3A,0xC5,0xCE,0xA8) |
||||
OUR_GUID_ENTRY(CLSID_IVideoEncoderProxy,0xb43c4eec,0x8c32,0x4791,0x91,0x2,0x50,0x8a,0xda,0x5e,0xe8,0xe7) |
||||
OUR_GUID_ENTRY(CLSID_ICodecAPIProxy,0x7ff0997a,0x1999,0x4286,0xa7,0x3c,0x62,0x2b,0x88,0x14,0xe7,0xeb) |
||||
OUR_GUID_ENTRY(CLSID_IVideoEncoderCodecAPIProxy,0xb05dabd9,0x56e5,0x4fdc,0xaf,0xa4,0x8a,0x47,0xe9,0x1f,0x1c,0x9c) |
||||
|
||||
#ifndef __ENCODER_API_GUIDS__ |
||||
#define __ENCODER_API_GUIDS__ |
||||
OUR_GUID_ENTRY(ENCAPIPARAM_BITRATE,0x49cc4c43,0xca83,0x4ad4,0xa9,0xaf,0xf3,0x69,0x6a,0xf6,0x66,0xdf) |
||||
OUR_GUID_ENTRY(ENCAPIPARAM_PEAK_BITRATE,0x703f16a9,0x3d48,0x44a1,0xb0,0x77,0x1,0x8d,0xff,0x91,0x5d,0x19) |
||||
OUR_GUID_ENTRY(ENCAPIPARAM_BITRATE_MODE,0xee5fb25c,0xc713,0x40d1,0x9d,0x58,0xc0,0xd7,0x24,0x1e,0x25,0xf) |
||||
OUR_GUID_ENTRY(CODECAPI_CHANGELISTS,0x62b12acf,0xf6b0,0x47d9,0x94,0x56,0x96,0xf2,0x2c,0x4e,0x0b,0x9d) |
||||
OUR_GUID_ENTRY(CODECAPI_VIDEO_ENCODER,0x7112e8e1,0x3d03,0x47ef,0x8e,0x60,0x03,0xf1,0xcf,0x53,0x73,0x01) |
||||
OUR_GUID_ENTRY(CODECAPI_AUDIO_ENCODER,0xb9d19a3e,0xf897,0x429c,0xbc,0x46,0x81,0x38,0xb7,0x27,0x2b,0x2d) |
||||
OUR_GUID_ENTRY(CODECAPI_SETALLDEFAULTS,0x6c5e6a7c,0xacf8,0x4f55,0xa9,0x99,0x1a,0x62,0x81,0x09,0x05,0x1b) |
||||
OUR_GUID_ENTRY(CODECAPI_ALLSETTINGS,0x6a577e92,0x83e1,0x4113,0xad,0xc2,0x4f,0xce,0xc3,0x2f,0x83,0xa1) |
||||
OUR_GUID_ENTRY(CODECAPI_SUPPORTSEVENTS,0x0581af97,0x7693,0x4dbd,0x9d,0xca,0x3f,0x9e,0xbd,0x65,0x85,0xa1) |
||||
OUR_GUID_ENTRY(CODECAPI_CURRENTCHANGELIST,0x1cb14e83,0x7d72,0x4657,0x83,0xfd,0x47,0xa2,0xc5,0xb9,0xd1,0x3d) |
||||
#endif |
||||
|
||||
#undef OUR_GUID_ENTRY |
@ -1,301 +0,0 @@ |
||||
// ISO C9x compliant inttypes.h for Microsoft Visual Studio
|
||||
// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124
|
||||
//
|
||||
// Copyright (c) 2006 Alexander Chemeris
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are met:
|
||||
//
|
||||
// 1. Redistributions of source code must retain the above copyright notice,
|
||||
// this list of conditions and the following disclaimer.
|
||||
//
|
||||
// 2. Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in the
|
||||
// documentation and/or other materials provided with the distribution.
|
||||
//
|
||||
// 3. The name of the author may be used to endorse or promote products
|
||||
// derived from this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _MSC_VER // [
|
||||
#error "Use this header only with Microsoft Visual C++ compilers!" |
||||
#endif // _MSC_VER ]
|
||||
|
||||
#ifndef _MSC_INTTYPES_H_ // [
|
||||
#define _MSC_INTTYPES_H_ |
||||
|
||||
#if _MSC_VER > 1000 |
||||
#pragma once |
||||
#endif |
||||
|
||||
#include <msc_stdint.h> |
||||
|
||||
// 7.8 Format conversion of integer types
|
||||
|
||||
typedef struct { |
||||
intmax_t quot; |
||||
intmax_t rem; |
||||
} imaxdiv_t; |
||||
|
||||
// 7.8.1 Macros for format specifiers
|
||||
|
||||
// The fprintf macros for signed integers are:
|
||||
#define PRId8 "d" |
||||
#define PRIi8 "i" |
||||
#define PRIdLEAST8 "d" |
||||
#define PRIiLEAST8 "i" |
||||
#define PRIdFAST8 "d" |
||||
#define PRIiFAST8 "i" |
||||
|
||||
#define PRId16 "hd" |
||||
#define PRIi16 "hi" |
||||
#define PRIdLEAST16 "hd" |
||||
#define PRIiLEAST16 "hi" |
||||
#define PRIdFAST16 "hd" |
||||
#define PRIiFAST16 "hi" |
||||
|
||||
#define PRId32 "I32d" |
||||
#define PRIi32 "I32i" |
||||
#define PRIdLEAST32 "I32d" |
||||
#define PRIiLEAST32 "I32i" |
||||
#define PRIdFAST32 "I32d" |
||||
#define PRIiFAST32 "I32i" |
||||
|
||||
#define PRId64 "I64d" |
||||
#define PRIi64 "I64i" |
||||
#define PRIdLEAST64 "I64d" |
||||
#define PRIiLEAST64 "I64i" |
||||
#define PRIdFAST64 "I64d" |
||||
#define PRIiFAST64 "I64i" |
||||
|
||||
#define PRIdMAX "I64d" |
||||
#define PRIiMAX "I64i" |
||||
|
||||
#define PRIdPTR "Id" |
||||
#define PRIiPTR "Ii" |
||||
|
||||
// The fprintf macros for unsigned integers are:
|
||||
#define PRIo8 "o" |
||||
#define PRIu8 "u" |
||||
#define PRIx8 "x" |
||||
#define PRIX8 "X" |
||||
#define PRIoLEAST8 "o" |
||||
#define PRIuLEAST8 "u" |
||||
#define PRIxLEAST8 "x" |
||||
#define PRIXLEAST8 "X" |
||||
#define PRIoFAST8 "o" |
||||
#define PRIuFAST8 "u" |
||||
#define PRIxFAST8 "x" |
||||
#define PRIXFAST8 "X" |
||||
|
||||
#define PRIo16 "ho" |
||||
#define PRIu16 "hu" |
||||
#define PRIx16 "hx" |
||||
#define PRIX16 "hX" |
||||
#define PRIoLEAST16 "ho" |
||||
#define PRIuLEAST16 "hu" |
||||
#define PRIxLEAST16 "hx" |
||||
#define PRIXLEAST16 "hX" |
||||
#define PRIoFAST16 "ho" |
||||
#define PRIuFAST16 "hu" |
||||
#define PRIxFAST16 "hx" |
||||
#define PRIXFAST16 "hX" |
||||
|
||||
#define PRIo32 "I32o" |
||||
#define PRIu32 "I32u" |
||||
#define PRIx32 "I32x" |
||||
#define PRIX32 "I32X" |
||||
#define PRIoLEAST32 "I32o" |
||||
#define PRIuLEAST32 "I32u" |
||||
#define PRIxLEAST32 "I32x" |
||||
#define PRIXLEAST32 "I32X" |
||||
#define PRIoFAST32 "I32o" |
||||
#define PRIuFAST32 "I32u" |
||||
#define PRIxFAST32 "I32x" |
||||
#define PRIXFAST32 "I32X" |
||||
|
||||
#define PRIo64 "I64o" |
||||
#define PRIu64 "I64u" |
||||
#define PRIx64 "I64x" |
||||
#define PRIX64 "I64X" |
||||
#define PRIoLEAST64 "I64o" |
||||
#define PRIuLEAST64 "I64u" |
||||
#define PRIxLEAST64 "I64x" |
||||
#define PRIXLEAST64 "I64X" |
||||
#define PRIoFAST64 "I64o" |
||||
#define PRIuFAST64 "I64u" |
||||
#define PRIxFAST64 "I64x" |
||||
#define PRIXFAST64 "I64X" |
||||
|
||||
#define PRIoMAX "I64o" |
||||
#define PRIuMAX "I64u" |
||||
#define PRIxMAX "I64x" |
||||
#define PRIXMAX "I64X" |
||||
|
||||
#define PRIoPTR "Io" |
||||
#define PRIuPTR "Iu" |
||||
#define PRIxPTR "Ix" |
||||
#define PRIXPTR "IX" |
||||
|
||||
// The fscanf macros for signed integers are:
|
||||
#define SCNd8 "d" |
||||
#define SCNi8 "i" |
||||
#define SCNdLEAST8 "d" |
||||
#define SCNiLEAST8 "i" |
||||
#define SCNdFAST8 "d" |
||||
#define SCNiFAST8 "i" |
||||
|
||||
#define SCNd16 "hd" |
||||
#define SCNi16 "hi" |
||||
#define SCNdLEAST16 "hd" |
||||
#define SCNiLEAST16 "hi" |
||||
#define SCNdFAST16 "hd" |
||||
#define SCNiFAST16 "hi" |
||||
|
||||
#define SCNd32 "ld" |
||||
#define SCNi32 "li" |
||||
#define SCNdLEAST32 "ld" |
||||
#define SCNiLEAST32 "li" |
||||
#define SCNdFAST32 "ld" |
||||
#define SCNiFAST32 "li" |
||||
|
||||
#define SCNd64 "I64d" |
||||
#define SCNi64 "I64i" |
||||
#define SCNdLEAST64 "I64d" |
||||
#define SCNiLEAST64 "I64i" |
||||
#define SCNdFAST64 "I64d" |
||||
#define SCNiFAST64 "I64i" |
||||
|
||||
#define SCNdMAX "I64d" |
||||
#define SCNiMAX "I64i" |
||||
|
||||
#ifdef _WIN64 // [
|
||||
# define SCNdPTR "I64d" |
||||
# define SCNiPTR "I64i" |
||||
#else // _WIN64 ][
|
||||
# define SCNdPTR "ld" |
||||
# define SCNiPTR "li" |
||||
#endif // _WIN64 ]
|
||||
|
||||
// The fscanf macros for unsigned integers are:
|
||||
#define SCNo8 "o" |
||||
#define SCNu8 "u" |
||||
#define SCNx8 "x" |
||||
#define SCNX8 "X" |
||||
#define SCNoLEAST8 "o" |
||||
#define SCNuLEAST8 "u" |
||||
#define SCNxLEAST8 "x" |
||||
#define SCNXLEAST8 "X" |
||||
#define SCNoFAST8 "o" |
||||
#define SCNuFAST8 "u" |
||||
#define SCNxFAST8 "x" |
||||
#define SCNXFAST8 "X" |
||||
|
||||
#define SCNo16 "ho" |
||||
#define SCNu16 "hu" |
||||
#define SCNx16 "hx" |
||||
#define SCNX16 "hX" |
||||
#define SCNoLEAST16 "ho" |
||||
#define SCNuLEAST16 "hu" |
||||
#define SCNxLEAST16 "hx" |
||||
#define SCNXLEAST16 "hX" |
||||
#define SCNoFAST16 "ho" |
||||
#define SCNuFAST16 "hu" |
||||
#define SCNxFAST16 "hx" |
||||
#define SCNXFAST16 "hX" |
||||
|
||||
#define SCNo32 "lo" |
||||
#define SCNu32 "lu" |
||||
#define SCNx32 "lx" |
||||
#define SCNX32 "lX" |
||||
#define SCNoLEAST32 "lo" |
||||
#define SCNuLEAST32 "lu" |
||||
#define SCNxLEAST32 "lx" |
||||
#define SCNXLEAST32 "lX" |
||||
#define SCNoFAST32 "lo" |
||||
#define SCNuFAST32 "lu" |
||||
#define SCNxFAST32 "lx" |
||||
#define SCNXFAST32 "lX" |
||||
|
||||
#define SCNo64 "I64o" |
||||
#define SCNu64 "I64u" |
||||
#define SCNx64 "I64x" |
||||
#define SCNX64 "I64X" |
||||
#define SCNoLEAST64 "I64o" |
||||
#define SCNuLEAST64 "I64u" |
||||
#define SCNxLEAST64 "I64x" |
||||
#define SCNXLEAST64 "I64X" |
||||
#define SCNoFAST64 "I64o" |
||||
#define SCNuFAST64 "I64u" |
||||
#define SCNxFAST64 "I64x" |
||||
#define SCNXFAST64 "I64X" |
||||
|
||||
#define SCNoMAX "I64o" |
||||
#define SCNuMAX "I64u" |
||||
#define SCNxMAX "I64x" |
||||
#define SCNXMAX "I64X" |
||||
|
||||
#ifdef _WIN64 // [
|
||||
# define SCNoPTR "I64o" |
||||
# define SCNuPTR "I64u" |
||||
# define SCNxPTR "I64x" |
||||
# define SCNXPTR "I64X" |
||||
#else // _WIN64 ][
|
||||
# define SCNoPTR "lo" |
||||
# define SCNuPTR "lu" |
||||
# define SCNxPTR "lx" |
||||
# define SCNXPTR "lX" |
||||
#endif // _WIN64 ]
|
||||
|
||||
// 7.8.2 Functions for greatest-width integer types
|
||||
|
||||
// 7.8.2.1 The imaxabs function
|
||||
#define imaxabs _abs64 |
||||
|
||||
// 7.8.2.2 The imaxdiv function
|
||||
|
||||
// This is modified version of div() function from Microsoft's div.c found
|
||||
// in %MSVC.NET%\crt\src\div.c
|
||||
#ifdef STATIC_IMAXDIV // [
|
||||
static |
||||
#else // STATIC_IMAXDIV ][
|
||||
_inline |
||||
#endif // STATIC_IMAXDIV ]
|
||||
imaxdiv_t __cdecl imaxdiv(intmax_t numer, intmax_t denom) |
||||
{ |
||||
imaxdiv_t result; |
||||
|
||||
result.quot = numer / denom; |
||||
result.rem = numer % denom; |
||||
|
||||
if (numer < 0 && result.rem > 0) { |
||||
// did division wrong; must fix up
|
||||
++result.quot; |
||||
result.rem -= denom; |
||||
} |
||||
|
||||
return result; |
||||
} |
||||
|
||||
// 7.8.2.3 The strtoimax and strtoumax functions
|
||||
#define strtoimax _strtoi64 |
||||
#define strtoumax _strtoui64 |
||||
|
||||
// 7.8.2.4 The wcstoimax and wcstoumax functions
|
||||
#define wcstoimax _wcstoi64 |
||||
#define wcstoumax _wcstoui64 |
||||
|
||||
|
||||
#endif // _MSC_INTTYPES_H_ ]
|
@ -1,219 +0,0 @@ |
||||
// ISO C9x compliant stdint.h for Microsoft Visual Studio
|
||||
// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124
|
||||
//
|
||||
// Copyright (c) 2006 Alexander Chemeris
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are met:
|
||||
//
|
||||
// 1. Redistributions of source code must retain the above copyright notice,
|
||||
// this list of conditions and the following disclaimer.
|
||||
//
|
||||
// 2. Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in the
|
||||
// documentation and/or other materials provided with the distribution.
|
||||
//
|
||||
// 3. The name of the author may be used to endorse or promote products
|
||||
// derived from this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _MSC_STDINT_H_ // [
|
||||
#define _MSC_STDINT_H_ |
||||
|
||||
#include <limits.h> |
||||
|
||||
// For Visual Studio 6 in C++ mode wrap <wchar.h> include with 'extern "C++" {}'
|
||||
// or compiler give many errors like this:
|
||||
// error C2733: second C linkage of overloaded function 'wmemchr' not allowed
|
||||
#if (_MSC_VER < 1300) && defined(__cplusplus) |
||||
extern "C++" { |
||||
#endif |
||||
# include <wchar.h> |
||||
#if (_MSC_VER < 1300) && defined(__cplusplus) |
||||
} |
||||
#endif |
||||
|
||||
#if defined __GNUC__ || _MSC_VER >= 1600 |
||||
#include "stdint.h" |
||||
#else |
||||
|
||||
// 7.18.1 Integer types
|
||||
|
||||
// 7.18.1.1 Exact-width integer types
|
||||
typedef __int8 int8_t; |
||||
typedef __int16 int16_t; |
||||
typedef __int32 int32_t; |
||||
typedef __int64 int64_t; |
||||
typedef unsigned __int8 uint8_t; |
||||
typedef unsigned __int16 uint16_t; |
||||
typedef unsigned __int32 uint32_t; |
||||
typedef unsigned __int64 uint64_t; |
||||
|
||||
// 7.18.1.2 Minimum-width integer types
|
||||
typedef int8_t int_least8_t; |
||||
typedef int16_t int_least16_t; |
||||
typedef int32_t int_least32_t; |
||||
typedef int64_t int_least64_t; |
||||
typedef uint8_t uint_least8_t; |
||||
typedef uint16_t uint_least16_t; |
||||
typedef uint32_t uint_least32_t; |
||||
typedef uint64_t uint_least64_t; |
||||
|
||||
// 7.18.1.3 Fastest minimum-width integer types
|
||||
typedef int8_t int_fast8_t; |
||||
typedef int16_t int_fast16_t; |
||||
typedef int32_t int_fast32_t; |
||||
typedef int64_t int_fast64_t; |
||||
typedef uint8_t uint_fast8_t; |
||||
typedef uint16_t uint_fast16_t; |
||||
typedef uint32_t uint_fast32_t; |
||||
typedef uint64_t uint_fast64_t; |
||||
|
||||
// 7.18.1.4 Integer types capable of holding object pointers
|
||||
#ifdef _WIN64 // [
|
||||
typedef __int64 intptr_t; |
||||
typedef unsigned __int64 uintptr_t; |
||||
#else // _WIN64 ][
|
||||
typedef int intptr_t; |
||||
typedef unsigned int uintptr_t; |
||||
#endif // _WIN64 ]
|
||||
|
||||
// 7.18.1.5 Greatest-width integer types
|
||||
typedef int64_t intmax_t; |
||||
typedef uint64_t uintmax_t; |
||||
|
||||
|
||||
// 7.18.2 Limits of specified-width integer types
|
||||
|
||||
#if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS) // [ See footnote 220 at page 257 and footnote 221 at page 259
|
||||
|
||||
// 7.18.2.1 Limits of exact-width integer types
|
||||
#define INT8_MIN _I8_MIN |
||||
#define INT8_MAX _I8_MAX |
||||
#define INT16_MIN _I16_MIN |
||||
#define INT16_MAX _I16_MAX |
||||
#define INT32_MIN _I32_MIN |
||||
#define INT32_MAX _I32_MAX |
||||
#define INT64_MIN _I64_MIN |
||||
#define INT64_MAX _I64_MAX |
||||
#define UINT8_MAX _UI8_MAX |
||||
#define UINT16_MAX _UI16_MAX |
||||
#define UINT32_MAX _UI32_MAX |
||||
#define UINT64_MAX _UI64_MAX |
||||
|
||||
// 7.18.2.2 Limits of minimum-width integer types
|
||||
#define INT_LEAST8_MIN INT8_MIN |
||||
#define INT_LEAST8_MAX INT8_MAX |
||||
#define INT_LEAST16_MIN INT16_MIN |
||||
#define INT_LEAST16_MAX INT16_MAX |
||||
#define INT_LEAST32_MIN INT32_MIN |
||||
#define INT_LEAST32_MAX INT32_MAX |
||||
#define INT_LEAST64_MIN INT64_MIN |
||||
#define INT_LEAST64_MAX INT64_MAX |
||||
#define UINT_LEAST8_MAX UINT8_MAX |
||||
#define UINT_LEAST16_MAX UINT16_MAX |
||||
#define UINT_LEAST32_MAX UINT32_MAX |
||||
#define UINT_LEAST64_MAX UINT64_MAX |
||||
|
||||
// 7.18.2.3 Limits of fastest minimum-width integer types
|
||||
#define INT_FAST8_MIN INT8_MIN |
||||
#define INT_FAST8_MAX INT8_MAX |
||||
#define INT_FAST16_MIN INT16_MIN |
||||
#define INT_FAST16_MAX INT16_MAX |
||||
#define INT_FAST32_MIN INT32_MIN |
||||
#define INT_FAST32_MAX INT32_MAX |
||||
#define INT_FAST64_MIN INT64_MIN |
||||
#define INT_FAST64_MAX INT64_MAX |
||||
#define UINT_FAST8_MAX UINT8_MAX |
||||
#define UINT_FAST16_MAX UINT16_MAX |
||||
#define UINT_FAST32_MAX UINT32_MAX |
||||
#define UINT_FAST64_MAX UINT64_MAX |
||||
|
||||
// 7.18.2.4 Limits of integer types capable of holding object pointers
|
||||
#ifdef _WIN64 // [
|
||||
# define INTPTR_MIN INT64_MIN |
||||
# define INTPTR_MAX INT64_MAX |
||||
# define UINTPTR_MAX UINT64_MAX |
||||
#else // _WIN64 ][
|
||||
# define INTPTR_MIN INT32_MIN |
||||
# define INTPTR_MAX INT32_MAX |
||||
# define UINTPTR_MAX UINT32_MAX |
||||
#endif // _WIN64 ]
|
||||
|
||||
// 7.18.2.5 Limits of greatest-width integer types
|
||||
#define INTMAX_MIN INT64_MIN |
||||
#define INTMAX_MAX INT64_MAX |
||||
#define UINTMAX_MAX UINT64_MAX |
||||
|
||||
// 7.18.3 Limits of other integer types
|
||||
|
||||
#ifdef _WIN64 // [
|
||||
# define PTRDIFF_MIN _I64_MIN |
||||
# define PTRDIFF_MAX _I64_MAX |
||||
#else // _WIN64 ][
|
||||
# define PTRDIFF_MIN _I32_MIN |
||||
# define PTRDIFF_MAX _I32_MAX |
||||
#endif // _WIN64 ]
|
||||
|
||||
#define SIG_ATOMIC_MIN INT_MIN |
||||
#define SIG_ATOMIC_MAX INT_MAX |
||||
|
||||
#ifndef SIZE_MAX // [
|
||||
# ifdef _WIN64 // [
|
||||
# define SIZE_MAX _UI64_MAX |
||||
# else // _WIN64 ][
|
||||
# define SIZE_MAX _UI32_MAX |
||||
# endif // _WIN64 ]
|
||||
#endif // SIZE_MAX ]
|
||||
|
||||
// WCHAR_MIN and WCHAR_MAX are also defined in <wchar.h>
|
||||
#ifndef WCHAR_MIN // [
|
||||
# define WCHAR_MIN 0 |
||||
#endif // WCHAR_MIN ]
|
||||
#ifndef WCHAR_MAX // [
|
||||
# define WCHAR_MAX _UI16_MAX |
||||
#endif // WCHAR_MAX ]
|
||||
|
||||
#define WINT_MIN 0 |
||||
#define WINT_MAX _UI16_MAX |
||||
|
||||
#endif // __STDC_LIMIT_MACROS ]
|
||||
|
||||
|
||||
// 7.18.4 Limits of other integer types
|
||||
|
||||
#if !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS) // [ See footnote 224 at page 260
|
||||
|
||||
// 7.18.4.1 Macros for minimum-width integer constants
|
||||
|
||||
#define INT8_C(val) val |
||||
#define INT16_C(val) val |
||||
#define INT32_C(val) val##L |
||||
#define INT64_C(val) val##i64 |
||||
|
||||
#define UINT8_C(val) val |
||||
#define UINT16_C(val) val |
||||
#define UINT32_C(val) val##UL |
||||
#define UINT64_C(val) val##Ui64 |
||||
|
||||
// 7.18.4.2 Macros for greatest-width integer constants
|
||||
#define INTMAX_C INT64_C |
||||
#define UINTMAX_C UINT64_C |
||||
|
||||
#endif // __STDC_CONSTANT_MACROS ]
|
||||
|
||||
#endif |
||||
|
||||
#endif // _MSC_STDINT_H_ ]
|
Loading…
Reference in new issue