Added amvideo.{idl,h} and aviriff.h.
This commit is contained in:
parent
5f51bcf868
commit
367cf41471
|
@ -5,6 +5,7 @@ VPATH = @srcdir@
|
||||||
MODULE = none
|
MODULE = none
|
||||||
|
|
||||||
IDL_SRCS = \
|
IDL_SRCS = \
|
||||||
|
amvideo.idl \
|
||||||
comcat.idl \
|
comcat.idl \
|
||||||
docobj.idl \
|
docobj.idl \
|
||||||
exdisp.idl \
|
exdisp.idl \
|
||||||
|
@ -29,6 +30,7 @@ IDL_INCLUDES = \
|
||||||
WINDOWS_INCLUDES = \
|
WINDOWS_INCLUDES = \
|
||||||
accctrl.h \
|
accctrl.h \
|
||||||
audevcod.h \
|
audevcod.h \
|
||||||
|
aviriff.h \
|
||||||
basetsd.h \
|
basetsd.h \
|
||||||
cderr.h \
|
cderr.h \
|
||||||
cguid.h \
|
cguid.h \
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,232 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2003 Robert Shearman
|
||||||
|
*
|
||||||
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
import "objidl.idl";
|
||||||
|
|
||||||
|
/* trick widl into thinking that it knows the DirectDraw types
|
||||||
|
* as there is no IDL file for them (yet) */
|
||||||
|
cpp_quote("#if 0")
|
||||||
|
typedef void * LPDIRECTDRAW;
|
||||||
|
typedef void DDSURFACEDESC,DDCAPS;
|
||||||
|
typedef DWORD RGBQUAD;
|
||||||
|
typedef LONGLONG REFERENCE_TIME;
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
DWORD biSize;
|
||||||
|
LONG biWidth;
|
||||||
|
LONG biHeight;
|
||||||
|
WORD biPlanes;
|
||||||
|
WORD biBitCount;
|
||||||
|
DWORD biCompression;
|
||||||
|
DWORD biSizeImage;
|
||||||
|
LONG biXPelsPerMeter;
|
||||||
|
LONG biYPelsPerMeter;
|
||||||
|
DWORD biClrUsed;
|
||||||
|
DWORD biClrImportant;
|
||||||
|
} BITMAPINFOHEADER, *PBITMAPINFOHEADER, *LPBITMAPINFOHEADER;
|
||||||
|
cpp_quote("#endif")
|
||||||
|
|
||||||
|
cpp_quote("#include <ddraw.h>")
|
||||||
|
|
||||||
|
cpp_quote("#define AMDDS_NONE 0x00")
|
||||||
|
cpp_quote("#define AMDDS_DCIPS 0x01")
|
||||||
|
cpp_quote("#define AMDDS_PS 0x02")
|
||||||
|
cpp_quote("#define AMDDS_RGBOVR 0x04")
|
||||||
|
cpp_quote("#define AMDDS_YUVOVR 0x08")
|
||||||
|
cpp_quote("#define AMDDS_RGBOFF 0x10")
|
||||||
|
cpp_quote("#define AMDDS_YUVOFF 0x20")
|
||||||
|
cpp_quote("#define AMDDS_RGBFLP 0x40")
|
||||||
|
cpp_quote("#define AMDDS_YUVFLP 0x80")
|
||||||
|
cpp_quote("#define AMDDS_ALL 0xFF")
|
||||||
|
cpp_quote("#define AMDDS_DEFAULT AMDDS_ALL")
|
||||||
|
|
||||||
|
cpp_quote("#define AMDDS_YUV (AMDDS_YUVOFF | AMDDS_YUVOVR | AMDDS_YUVFLP)")
|
||||||
|
cpp_quote("#define AMDDS_RGB (AMDDS_RGBOFF | AMDDS_RGBOVR | AMDDS_RGBFLP)")
|
||||||
|
cpp_quote("#define AMDSS_PRIMARY (AMDDS_DCIPS | AMDDS_PS)")
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IDirectDrawVideo : IUnknown
|
||||||
|
{
|
||||||
|
HRESULT GetSwitches([out] DWORD * pSwitches);
|
||||||
|
HRESULT SetSwitches([in] DWORD Switches);
|
||||||
|
HRESULT GetCaps([out] DDCAPS * pCaps);
|
||||||
|
HRESULT GetEmulatedCaps([out] DDCAPS *pCaps);
|
||||||
|
HRESULT GetSurfaceDesc([out] DDSURFACEDESC * pSurfaceDesc);
|
||||||
|
HRESULT GetFourCCCodes([out] DWORD * pCount, [out] DWORD * pCodes);
|
||||||
|
HRESULT SetDirectDraw([in] LPDIRECTDRAW pDirectDraw);
|
||||||
|
HRESULT GetDirectDraw([out] LPDIRECTDRAW * ppDirectDraw);
|
||||||
|
HRESULT GetSurfaceType([out] DWORD * pSurfaceType);
|
||||||
|
HRESULT SetDefault();
|
||||||
|
HRESULT UseScanLine([in] long UseScanLine);
|
||||||
|
HRESULT CanUseScanLine([out] long * UseScanLine);
|
||||||
|
HRESULT UseOverlayStretch([in] long UseOverlayStretch);
|
||||||
|
HRESULT CanUseOverlayStretch([out] long * UseOverlayStretch);
|
||||||
|
HRESULT UseWhenFullScreen([in] long UseWhenFullScreen);
|
||||||
|
HRESULT WillUseFullScreen([out] long * UseWhenFullScreen);
|
||||||
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IQualProp : IUnknown
|
||||||
|
{
|
||||||
|
HRESULT get_FramesDroppedInRenderer([out] int * pcFrames);
|
||||||
|
HRESULT get_FramesDrawn([out] int * pcFramesDrawn);
|
||||||
|
HRESULT get_AvgFrameRate([out] int * piAvgFrameRate);
|
||||||
|
HRESULT get_Jitter([out] int * iJitter);
|
||||||
|
HRESULT get_AvgSyncOffset([out] int * piAvg);
|
||||||
|
HRESULT get_DevSyncOffset([out] int * piDev);
|
||||||
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IFullScreenVideo : IUnknown
|
||||||
|
{
|
||||||
|
HRESULT CountModes([out] long * pModes);
|
||||||
|
HRESULT GetModeInfo([in] long Mode, [out] long * pWidth, [out] long * pHeight, [out] long * pDepth);
|
||||||
|
HRESULT GetCurrentMode([out] long * pMode);
|
||||||
|
HRESULT IsModeAvailable([in] long Mode);
|
||||||
|
HRESULT IsModeEnabled([in] long Mode);
|
||||||
|
HRESULT SetEnabled([in] long Mode, [in] long bEnabled);
|
||||||
|
HRESULT GetClipFactor([out] long * pClipFactor);
|
||||||
|
HRESULT SetClipFactor([in] long ClipFactor);
|
||||||
|
HRESULT SetMessageDrain([in] HWND hwnd);
|
||||||
|
HRESULT GetMessageDrain([out] HWND * hwnd);
|
||||||
|
HRESULT SetMonitor([in] long Monitor);
|
||||||
|
HRESULT GetMonitor([out] long * Monitor);
|
||||||
|
HRESULT HideOnDeactivate([in] long Hide);
|
||||||
|
HRESULT IsHideOnDeactivate();
|
||||||
|
HRESULT SetCaption([in] BSTR strCaption);
|
||||||
|
HRESULT GetCaption([out] BSTR * pstrCaption);
|
||||||
|
HRESULT SetDefault();
|
||||||
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IFullScreenVideoEx : IFullScreenVideo
|
||||||
|
{
|
||||||
|
HRESULT SetAcceleratorTable([in] HWND hwnd, [in] HACCEL hAccel);
|
||||||
|
HRESULT GetAcceleratorTable([out] HWND * phwnd, [out] HACCEL * phAccel);
|
||||||
|
HRESULT KeepPixelAspectRatio([in] long KeepAspect);
|
||||||
|
/* FIXME: not sure is this next method is an [out] */
|
||||||
|
HRESULT IsKeepPixelAspectRatio([out] long * pKeepAspect);
|
||||||
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface IBaseVideoMixer : IUnknown
|
||||||
|
{
|
||||||
|
HRESULT SetLeadPin([in] int iPin);
|
||||||
|
HRESULT GetLeadPin([out] int * piPin);
|
||||||
|
HRESULT GetInputPinCount([out] int * piPinCount);
|
||||||
|
HRESULT IsUsingClock([out] int * pbValue);
|
||||||
|
HRESULT SetUsingClock([in] int bValue);
|
||||||
|
HRESULT GetClockPeriod([out] int * pbValue);
|
||||||
|
HRESULT SetClockPeriod([in] int bValue);
|
||||||
|
}
|
||||||
|
|
||||||
|
#define iPALETTE_COLORS 256
|
||||||
|
#define iMASK_COLORS 3
|
||||||
|
|
||||||
|
cpp_quote("#define iPALETTE_COLORS 256")
|
||||||
|
cpp_quote("#define iEGA_COLORS 16")
|
||||||
|
cpp_quote("#define iMASK_COLORS 3")
|
||||||
|
cpp_quote("#define iTRUECOLOR 16")
|
||||||
|
cpp_quote("#define iRED 0")
|
||||||
|
cpp_quote("#define iGREEN 1")
|
||||||
|
cpp_quote("#define iBLUE 2")
|
||||||
|
cpp_quote("#define iPALETTE 8")
|
||||||
|
cpp_quote("#define iMAXBITS 8")
|
||||||
|
|
||||||
|
typedef struct tag_TRUECOLORINFO
|
||||||
|
{
|
||||||
|
DWORD dwBitMasks[iMASK_COLORS];
|
||||||
|
RGBQUAD bmiColors[iPALETTE_COLORS];
|
||||||
|
} TRUECOLORINFO;
|
||||||
|
|
||||||
|
typedef struct tagVIDEOINFOHEADER
|
||||||
|
{
|
||||||
|
RECT rcSource;
|
||||||
|
RECT rcTarget;
|
||||||
|
DWORD dwBitRate;
|
||||||
|
DWORD dwBitErrorRate;
|
||||||
|
REFERENCE_TIME AvgTimePerFrame;
|
||||||
|
|
||||||
|
BITMAPINFOHEADER bmiHeader;
|
||||||
|
} VIDEOINFOHEADER;
|
||||||
|
|
||||||
|
typedef struct tagVIDEOINFO
|
||||||
|
{
|
||||||
|
RECT rcSource;
|
||||||
|
RECT rcTarget;
|
||||||
|
DWORD dwBitRate;
|
||||||
|
DWORD dwBitErrorRate;
|
||||||
|
REFERENCE_TIME AvgTimePerFrame;
|
||||||
|
|
||||||
|
BITMAPINFOHEADER bmiHeader;
|
||||||
|
|
||||||
|
union
|
||||||
|
{
|
||||||
|
RGBQUAD bmiColors[iPALETTE_COLORS];
|
||||||
|
DWORD dwBitMasks[iMASK_COLORS];
|
||||||
|
TRUECOLORINFO TrueColorInfo;
|
||||||
|
};
|
||||||
|
} VIDEOINFO;
|
||||||
|
|
||||||
|
typedef struct tagMPEG1VIDEOINFO
|
||||||
|
{
|
||||||
|
VIDEOINFOHEADER hdr;
|
||||||
|
DWORD dwStartTimeCode;
|
||||||
|
DWORD cbSequenceHeader;
|
||||||
|
BYTE bSequenceHeader[1];
|
||||||
|
} MPEG1VIDEOINFO;
|
||||||
|
|
||||||
|
cpp_quote("#define MAX_SIZE_MPEG1_SEQUENCE_INFO 140")
|
||||||
|
cpp_quote("#define MPEG1_SEQUENCE_INFO(pv) ((const BYTE *)(pv)->bSequenceHeader)")
|
||||||
|
|
||||||
|
typedef struct tagAnalogVideoInfo
|
||||||
|
{
|
||||||
|
RECT rcSource;
|
||||||
|
RECT rcTarget;
|
||||||
|
DWORD dwActiveWidth;
|
||||||
|
DWORD dwActiveHeight;
|
||||||
|
REFERENCE_TIME AvgTimePerFrame;
|
||||||
|
} ANALOGVIDEOINFO;
|
||||||
|
|
||||||
|
typedef enum
|
||||||
|
{
|
||||||
|
AM_PROPERTY_FRAMESTEP_STEP = 0x01,
|
||||||
|
AM_PROPERTY_FRAMESTEP_CANCEL = 0x02,
|
||||||
|
AM_PROPERTY_FRAMESTEP_CANSTEP = 0x03,
|
||||||
|
AM_PROPERTY_FRAMESTEP_CANSTEPMULTIPLE = 0x04
|
||||||
|
} AM_PROPERTY_FRAMESTEP;
|
||||||
|
|
||||||
|
typedef struct _AM_FRAMESTEP_STEP
|
||||||
|
{
|
||||||
|
DWORD dwFramesToStep;
|
||||||
|
} AM_FRAMESTEP_STEP;
|
|
@ -0,0 +1,164 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2003 Robert Shearman
|
||||||
|
*
|
||||||
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef struct _riffchunk
|
||||||
|
{
|
||||||
|
FOURCC fcc;
|
||||||
|
DWORD cb;
|
||||||
|
} RIFFCHUNK, * LPRIFFCHUNK;
|
||||||
|
|
||||||
|
typedef struct _rifflist
|
||||||
|
{
|
||||||
|
FOURCC fcc;
|
||||||
|
DWORD cb;
|
||||||
|
FOURCC fccListType;
|
||||||
|
} RIFFLIST, * LPRIFFLIST;
|
||||||
|
|
||||||
|
#define RIFFROUND(cb) ((cb) + ((cb)&1))
|
||||||
|
#define RIFFNEXT(pChunk) (LPRIFFCHUNK)((LPBYTE)(pChunk)+sizeof(RIFFCHUNK)+RIFFROUND(((LPRIFFCHUNK)pChunk)->cb))
|
||||||
|
|
||||||
|
/* flags for dwFlags member of AVIMAINHEADER */
|
||||||
|
#define AVIF_HASINDEX 0x00000010
|
||||||
|
#define AVIF_MUSTUSEINDEX 0x00000020
|
||||||
|
#define AVIF_ISINTERLEAVED 0x00000100
|
||||||
|
#define AVIF_TRUSTCKTYPE 0x00000800
|
||||||
|
#define AVIF_WASCAPTUREFILE 0x00010000
|
||||||
|
#define AVIF_COPYRIGHTED 0x00020000
|
||||||
|
|
||||||
|
typedef struct _avimainheader
|
||||||
|
{
|
||||||
|
FOURCC fcc;
|
||||||
|
DWORD cb;
|
||||||
|
DWORD dwMicroSecPerFrame;
|
||||||
|
DWORD dwMaxBytesPerSec;
|
||||||
|
DWORD dwPaddingGranularity;
|
||||||
|
DWORD dwFlags;
|
||||||
|
DWORD dwTotalFrames;
|
||||||
|
DWORD dwInitialFrames;
|
||||||
|
DWORD dwStreams;
|
||||||
|
DWORD dwSuggestedBufferSize;
|
||||||
|
DWORD dwWidth;
|
||||||
|
DWORD dwHeight;
|
||||||
|
DWORD dwReserved[4];
|
||||||
|
} AVIMAINHEADER;
|
||||||
|
|
||||||
|
typedef struct _aviextheader
|
||||||
|
{
|
||||||
|
FOURCC fcc;
|
||||||
|
DWORD cb;
|
||||||
|
DWORD dwGrandFrames;
|
||||||
|
DWORD dwFuture[61];
|
||||||
|
} AVIEXTHEADER;
|
||||||
|
|
||||||
|
|
||||||
|
/* flags for dwFlags member of AVISTREAMHEADER */
|
||||||
|
#define AVISF_DISABLED 0x00000001
|
||||||
|
#define AVISF_VIDEO_PALCHANGES 0x00010000
|
||||||
|
|
||||||
|
typedef struct _avistreamheader
|
||||||
|
{
|
||||||
|
FOURCC fcc;
|
||||||
|
DWORD cb;
|
||||||
|
FOURCC fccType;
|
||||||
|
FOURCC fccHandler;
|
||||||
|
DWORD dwFlags;
|
||||||
|
WORD wPriority;
|
||||||
|
WORD wLanguage;
|
||||||
|
DWORD dwInitialFrames;
|
||||||
|
DWORD dwScale;
|
||||||
|
DWORD dwRate;
|
||||||
|
DWORD dwStart;
|
||||||
|
DWORD dwLength;
|
||||||
|
DWORD dwSuggestedBufferSize;
|
||||||
|
DWORD dwQuality;
|
||||||
|
DWORD dwSampleSize;
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
short int left;
|
||||||
|
short int top;
|
||||||
|
short int right;
|
||||||
|
short int bottom;
|
||||||
|
} rcFrame;
|
||||||
|
} AVISTREAMHEADER;
|
||||||
|
|
||||||
|
/* flags for dwFlags member of _avioldindex_entry */
|
||||||
|
#define AVIIF_LIST 0x00000001
|
||||||
|
#define AVIIF_KEYFRAME 0x00000010
|
||||||
|
#define AVIIF_NO_TIME 0x00000100
|
||||||
|
#define AVIIF_COMPRESSOR 0x0FFF0000
|
||||||
|
|
||||||
|
typedef struct _avioldindex
|
||||||
|
{
|
||||||
|
FOURCC fcc;
|
||||||
|
DWORD cb;
|
||||||
|
struct _avioldindex_entry
|
||||||
|
{
|
||||||
|
DWORD dwChunkId;
|
||||||
|
DWORD dwFlags;
|
||||||
|
DWORD dwOffset;
|
||||||
|
DWORD dwSize;
|
||||||
|
} aIndex[0];
|
||||||
|
} AVIOLDINDEX;
|
||||||
|
|
||||||
|
typedef union _timecode
|
||||||
|
{
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
WORD wFrameRate;
|
||||||
|
WORD wFrameFract;
|
||||||
|
LONG cFrames;
|
||||||
|
} DUMMYSTRUCTNAME;
|
||||||
|
DWORDLONG qw;
|
||||||
|
} TIMECODE;
|
||||||
|
|
||||||
|
#define TIMECODE_RATE_30DROP 0
|
||||||
|
|
||||||
|
/* flags for dwSMPTEflags member of TIMECODEDATA */
|
||||||
|
#define TIMECODE_SMPTE_BINARY_GROUP 0x07
|
||||||
|
#define TIMECODE_SMPTE_COLOR_FRAME 0x08
|
||||||
|
|
||||||
|
typedef struct _timecodedata
|
||||||
|
{
|
||||||
|
TIMECODE time;
|
||||||
|
DWORD dwSMPTEflags;
|
||||||
|
DWORD dwUser;
|
||||||
|
} TIMECODEDATA;
|
||||||
|
|
||||||
|
#define AVI_INDEX_OF_INDEXES 0x00
|
||||||
|
#define AVI_INDEX_OF_CHUNKS 0x01
|
||||||
|
#define AVI_INDEX_OF_TIMED_CHUNKS 0x02
|
||||||
|
#define AVI_INDEX_OF_SUB_2FIELD 0x03
|
||||||
|
#define AVI_INDEX_IS_DATA 0x80
|
||||||
|
|
||||||
|
#define AVI_INDEX_SUB_DEFAULT 0x00
|
||||||
|
#define AVI_INDEX_SUB_2FIELD 0x01
|
||||||
|
|
||||||
|
typedef struct _avimetaindex
|
||||||
|
{
|
||||||
|
FOURCC fcc;
|
||||||
|
UINT cb;
|
||||||
|
WORD wLongsPerEntry;
|
||||||
|
BYTE bIndexSubType;
|
||||||
|
BYTE bIndexType;
|
||||||
|
DWORD nEntriesInUse;
|
||||||
|
DWORD dwChunkId;
|
||||||
|
DWORD dwReserved[3];
|
||||||
|
DWORD adwIndex[0];
|
||||||
|
} AVIMETAINDEX;
|
||||||
|
|
||||||
|
/* FIXME: index structures missing */
|
Loading…
Reference in New Issue