summaryrefslogtreecommitdiffstats
path: root/loader/dshow/interfaces.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-12 15:30:21 +0200
committerwm4 <wm4@nowhere>2012-08-16 17:16:33 +0200
commitaebfbbf2bdda8e18beef90c16da97bd335f7d3b0 (patch)
treea7362bf3ef6f2d80a47b2e539a2ea4efe5e2e079 /loader/dshow/interfaces.h
parentc6b03ffef6250096373c4a81a489dae9fbff9087 (diff)
downloadmpv-aebfbbf2bdda8e18beef90c16da97bd335f7d3b0.tar.bz2
mpv-aebfbbf2bdda8e18beef90c16da97bd335f7d3b0.tar.xz
Remove win32/qt/xanim/real binary codecs loading
Remove the win32 loader - the win32 emulation layer, as well as the code for using DirectShow/DMO/VFW codecs. Remove loading of xanim, QuickTime, and RealMedia codecs. The win32 emulation layer is based on a very old version of wine. Apparently, wine code was copied and hacked until it was somehow able to load a limited collection of binary codecs. It poked around in the code segment of some known binary codecs to disable unsupported win32 API calls to make them work. Example from module.c: for (i=0;i<5;i++) RVA(0x19e842)[i]=0x90; // make_new_region ? for (i=0;i<28;i++) RVA(0x19e86d)[i]=0x90; // call__call_CreateCompatibleDC ? for (i=0;i<5;i++) RVA(0x19e898)[i]=0x90; // jmp_to_call_loadbitmap ? for (i=0;i<9;i++) RVA(0x19e8ac)[i]=0x90; // call__calls_OLE_shit ? for (i=0;i<106;i++) RVA(0x261b10)[i]=0x90; // disable threads Just to show how utterly insane this code is. You wouldn't want even your worst enemy to have to maintain this. In fact, it seems nobody made major changes to this code ever since it was committed. Most formats can be decoded by libavcodecs these days, and the loader couldn't be used on 64 bit platforms anyway. The same is (probably) true for the other binary codecs. General note about how support for win32 codecs could be added back: It's not possible to replace the win32 loader code by using wine as library, because modern wine can not be linked with native Linux programs for certain reasons. It would be possible to to move DirectShow video decoding into a separate process linked with wine, like the CoreAVC-for-Linux patches do. There is also the mplayer-ww fork, which uses the dshownative library to use DirectShow codecs on Windows.
Diffstat (limited to 'loader/dshow/interfaces.h')
-rw-r--r--loader/dshow/interfaces.h360
1 files changed, 0 insertions, 360 deletions
diff --git a/loader/dshow/interfaces.h b/loader/dshow/interfaces.h
deleted file mode 100644
index af9544ada5..0000000000
--- a/loader/dshow/interfaces.h
+++ /dev/null
@@ -1,360 +0,0 @@
-#ifndef MPLAYER_INTERFACES_H
-#define MPLAYER_INTERFACES_H
-
-/*
- * Definition of important DirectShow interfaces.
- * Created using freely-available DirectX 8.0 SDK
- * ( http://msdn.microsoft.com )
- */
-
-#include "iunk.h"
-#include "loader/com.h"
-
-/* Sh*t. MSVC++ and g++ use different methods of storing vtables. */
-
-typedef struct IReferenceClock IReferenceClock;
-typedef struct IFilterGraph IFilterGraph;
-
-typedef struct IBaseFilter IBaseFilter;
-
-typedef enum
-{
- PINDIR_INPUT = 0,
- PINDIR_OUTPUT
-} PIN_DIRECTION;
-
-typedef struct PinInfo
-{
- IBaseFilter* pFilter;
- PIN_DIRECTION dir;
- unsigned short achName[128];
-} PIN_INFO;
-
-typedef struct AllocatorProperties
-{
- long cBuffers;
- long cbBuffer;
- long cbAlign;
- long cbPrefix;
-} ALLOCATOR_PROPERTIES;
-
-typedef struct IEnumMediaTypes IEnumMediaTypes;
-typedef struct IEnumMediaTypes_vt
-{
- INHERIT_IUNKNOWN();
-
- HRESULT STDCALL ( *Next )(IEnumMediaTypes* This,
- /* [in] */ unsigned long cMediaTypes,
- /* [size_is][out] */ AM_MEDIA_TYPE** ppMediaTypes,
- /* [out] */ unsigned long* pcFetched);
- HRESULT STDCALL ( *Skip )(IEnumMediaTypes* This,
- /* [in] */ unsigned long cMediaTypes);
- HRESULT STDCALL ( *Reset )(IEnumMediaTypes* This);
- HRESULT STDCALL ( *Clone )(IEnumMediaTypes* This,
- /* [out] */ IEnumMediaTypes** ppEnum);
-} IEnumMediaTypes_vt;
-struct IEnumMediaTypes { IEnumMediaTypes_vt* vt; };
-
-
-
-typedef struct IPin IPin;
-typedef struct IPin_vt
-{
- INHERIT_IUNKNOWN();
-
- HRESULT STDCALL ( *Connect )(IPin * This,
- /* [in] */ IPin *pReceivePin,
- /* [in] */ /*const*/ AM_MEDIA_TYPE *pmt);
- HRESULT STDCALL ( *ReceiveConnection )(IPin * This,
- /* [in] */ IPin *pConnector,
- /* [in] */ const AM_MEDIA_TYPE *pmt);
- HRESULT STDCALL ( *Disconnect )(IPin * This);
- HRESULT STDCALL ( *ConnectedTo )(IPin * This, /* [out] */ IPin **pPin);
- HRESULT STDCALL ( *ConnectionMediaType )(IPin * This,
- /* [out] */ AM_MEDIA_TYPE *pmt);
- HRESULT STDCALL ( *QueryPinInfo )(IPin * This, /* [out] */ PIN_INFO *pInfo);
- HRESULT STDCALL ( *QueryDirection )(IPin * This,
- /* [out] */ PIN_DIRECTION *pPinDir);
- HRESULT STDCALL ( *QueryId )(IPin * This, /* [out] */ unsigned short* *Id);
- HRESULT STDCALL ( *QueryAccept )(IPin * This,
- /* [in] */ const AM_MEDIA_TYPE *pmt);
- HRESULT STDCALL ( *EnumMediaTypes )(IPin * This,
- /* [out] */ IEnumMediaTypes **ppEnum);
- HRESULT STDCALL ( *QueryInternalConnections )(IPin * This,
- /* [out] */ IPin **apPin,
- /* [out][in] */ unsigned long *nPin);
- HRESULT STDCALL ( *EndOfStream )(IPin * This);
- HRESULT STDCALL ( *BeginFlush )(IPin * This);
- HRESULT STDCALL ( *EndFlush )(IPin * This);
- HRESULT STDCALL ( *NewSegment )(IPin * This,
- /* [in] */ REFERENCE_TIME tStart,
- /* [in] */ REFERENCE_TIME tStop,
- /* [in] */ double dRate);
-} IPin_vt;
-struct IPin { IPin_vt *vt; };
-
-
-typedef struct IEnumPins IEnumPins;
-typedef struct IEnumPins_vt
-{
- INHERIT_IUNKNOWN();
-
- // retrieves a specified number of pins in the enumeration sequence..
- HRESULT STDCALL ( *Next )(IEnumPins* This,
- /* [in] */ unsigned long cPins,
- /* [size_is][out] */ IPin** ppPins,
- /* [out] */ unsigned long* pcFetched);
- // skips over a specified number of pins.
- HRESULT STDCALL ( *Skip )(IEnumPins* This,
- /* [in] */ unsigned long cPins);
- // resets the enumeration sequence to the beginning.
- HRESULT STDCALL ( *Reset )(IEnumPins* This);
- // makes a copy of the enumerator with the same enumeration state.
- HRESULT STDCALL ( *Clone )(IEnumPins* This,
- /* [out] */ IEnumPins** ppEnum);
-} IEnumPins_vt;
-struct IEnumPins { struct IEnumPins_vt* vt; };
-
-
-typedef struct IMediaSample IMediaSample;
-typedef struct IMediaSample_vt
-{
- INHERIT_IUNKNOWN();
-
- HRESULT STDCALL ( *GetPointer )(IMediaSample* This,
- /* [out] */ unsigned char** ppBuffer);
- LONG STDCALL ( *GetSize )(IMediaSample* This);
- HRESULT STDCALL ( *GetTime )(IMediaSample* This,
- /* [out] */ REFERENCE_TIME* pTimeStart,
- /* [out] */ REFERENCE_TIME* pTimeEnd);
- HRESULT STDCALL ( *SetTime )(IMediaSample* This,
- /* [in] */ REFERENCE_TIME* pTimeStart,
- /* [in] */ REFERENCE_TIME* pTimeEnd);
-
- // sync-point property. If true, then the beginning of this
- // sample is a sync-point. (note that if AM_MEDIA_TYPE.bTemporalCompression
- // is false then all samples are sync points). A filter can start
- // a stream at any sync point. S_FALSE if not sync-point, S_OK if true.
- HRESULT STDCALL ( *IsSyncPoint )(IMediaSample* This);
- HRESULT STDCALL ( *SetSyncPoint )(IMediaSample* This,
- long bIsSyncPoint);
-
- // preroll property. If true, this sample is for preroll only and
- // shouldn't be displayed.
- HRESULT STDCALL ( *IsPreroll )(IMediaSample* This);
- HRESULT STDCALL ( *SetPreroll )(IMediaSample* This,
- long bIsPreroll);
-
- LONG STDCALL ( *GetActualDataLength )(IMediaSample* This);
- HRESULT STDCALL ( *SetActualDataLength )(IMediaSample* This,
- long __MIDL_0010);
-
- // these allow for limited format changes in band - if no format change
- // has been made when you receive a sample GetMediaType will return S_FALSE
- HRESULT STDCALL ( *GetMediaType )(IMediaSample* This,
- AM_MEDIA_TYPE** ppMediaType);
- HRESULT STDCALL ( *SetMediaType )(IMediaSample* This,
- AM_MEDIA_TYPE* pMediaType);
-
- // returns S_OK if there is a discontinuity in the data (this frame is
- // not a continuation of the previous stream of data
- // - there has been a seek or some dropped samples).
- HRESULT STDCALL ( *IsDiscontinuity )(IMediaSample* This);
- HRESULT STDCALL ( *SetDiscontinuity )(IMediaSample* This,
- long bDiscontinuity);
-
- // get the media times for this sample
- HRESULT STDCALL ( *GetMediaTime )(IMediaSample* This,
- /* [out] */ long long* pTimeStart,
- /* [out] */ long long* pTimeEnd);
- // Set the media times for this sample
- // pTimeStart==pTimeEnd==NULL will invalidate the media time stamps in
- // this sample
- HRESULT STDCALL ( *SetMediaTime )(IMediaSample* This,
- /* [in] */ long long* pTimeStart,
- /* [in] */ long long* pTimeEnd);
-} IMediaSample_vt;
-struct IMediaSample { struct IMediaSample_vt* vt; };
-
-
-
-//typedef struct IBaseFilter IBaseFilter;
-typedef struct IBaseFilter_vt
-{
- INHERIT_IUNKNOWN();
-
- HRESULT STDCALL ( *GetClassID )(IBaseFilter * This,
- /* [out] */ CLSID *pClassID);
- HRESULT STDCALL ( *Stop )(IBaseFilter * This);
- HRESULT STDCALL ( *Pause )(IBaseFilter * This);
- HRESULT STDCALL ( *Run )(IBaseFilter * This,
- REFERENCE_TIME tStart);
- HRESULT STDCALL ( *GetState )(IBaseFilter * This,
- /* [in] */ unsigned long dwMilliSecsTimeout,
- ///* [out] */ FILTER_STATE *State);
- void* State);
- HRESULT STDCALL ( *SetSyncSource )(IBaseFilter* This,
- /* [in] */ IReferenceClock *pClock);
- HRESULT STDCALL ( *GetSyncSource )(IBaseFilter* This,
- /* [out] */ IReferenceClock **pClock);
- HRESULT STDCALL ( *EnumPins )(IBaseFilter* This,
- /* [out] */ IEnumPins **ppEnum);
- HRESULT STDCALL ( *FindPin )(IBaseFilter* This,
- /* [string][in] */ const unsigned short* Id,
- /* [out] */ IPin** ppPin);
- HRESULT STDCALL ( *QueryFilterInfo )(IBaseFilter* This,
- // /* [out] */ FILTER_INFO *pInfo);
- void* pInfo);
- HRESULT STDCALL ( *JoinFilterGraph )(IBaseFilter* This,
- /* [in] */ IFilterGraph* pGraph,
- /* [string][in] */ const unsigned short* pName);
- HRESULT STDCALL ( *QueryVendorInfo )(IBaseFilter* This,
- /* [string][out] */ unsigned short** pVendorInfo);
-} IBaseFilter_vt;
-struct IBaseFilter { struct IBaseFilter_vt* vt; };
-
-
-
-typedef struct IMemAllocator IMemAllocator;
-typedef struct IMemAllocator_vt
-{
- INHERIT_IUNKNOWN();
-
- // specifies the number of buffers to allocate and the size of each buffer.
- HRESULT STDCALL ( *SetProperties )(IMemAllocator* This,
- /* [in] */ ALLOCATOR_PROPERTIES *pRequest,
- /* [out] */ ALLOCATOR_PROPERTIES *pActual);
- // retrieves the number of buffers that the allocator will create, and the buffer properties.
- HRESULT STDCALL ( *GetProperties )(IMemAllocator* This,
- /* [out] */ ALLOCATOR_PROPERTIES *pProps);
- // allocates the buffer memory.
- HRESULT STDCALL ( *Commit )(IMemAllocator* This);
- // releases the memory for the buffers.
- HRESULT STDCALL ( *Decommit )(IMemAllocator* This);
- // retrieves a media sample that contains an empty buffer.
- HRESULT STDCALL ( *GetBuffer )(IMemAllocator* This,
- /* [out] */ IMediaSample** ppBuffer,
- /* [in] */ REFERENCE_TIME* pStartTime,
- /* [in] */ REFERENCE_TIME* pEndTime,
- /* [in] */ unsigned long dwFlags);
- // releases a media sample.
- HRESULT STDCALL ( *ReleaseBuffer )(IMemAllocator* This,
- /* [in] */ IMediaSample* pBuffer);
-} IMemAllocator_vt;
-struct IMemAllocator { IMemAllocator_vt* vt; };
-
-
-
-typedef struct IMemInputPin IMemInputPin;
-typedef struct IMemInputPin_vt
-{
- INHERIT_IUNKNOWN();
-
- HRESULT STDCALL ( *GetAllocator )(IMemInputPin * This,
- /* [out] */ IMemAllocator **ppAllocator);
- HRESULT STDCALL ( *NotifyAllocator )(IMemInputPin * This,
- /* [in] */ IMemAllocator *pAllocator,
- /* [in] */ int bReadOnly);
- HRESULT STDCALL ( *GetAllocatorRequirements )(IMemInputPin * This,
- /* [out] */ ALLOCATOR_PROPERTIES *pProps);
- HRESULT STDCALL ( *Receive )(IMemInputPin * This,
- /* [in] */ IMediaSample *pSample);
- HRESULT STDCALL ( *ReceiveMultiple )(IMemInputPin * This,
- /* [size_is][in] */ IMediaSample **pSamples,
- /* [in] */ long nSamples,
- /* [out] */ long *nSamplesProcessed);
- HRESULT STDCALL ( *ReceiveCanBlock )(IMemInputPin * This);
-} IMemInputPin_vt;
-struct IMemInputPin { IMemInputPin_vt* vt; };
-
-
-typedef struct IHidden IHidden;
-typedef struct IHidden_vt
-{
- INHERIT_IUNKNOWN();
-
- HRESULT STDCALL ( *GetSmth )(IHidden* This, int* pv);
- HRESULT STDCALL ( *SetSmth )(IHidden* This, int v1, int v2);
- HRESULT STDCALL ( *GetSmth2 )(IHidden* This, int* pv);
- HRESULT STDCALL ( *SetSmth2 )(IHidden* This, int v1, int v2);
- HRESULT STDCALL ( *GetSmth3 )(IHidden* This, int* pv);
- HRESULT STDCALL ( *SetSmth3 )(IHidden* This, int v1, int v2);
- HRESULT STDCALL ( *GetSmth4 )(IHidden* This, int* pv);
- HRESULT STDCALL ( *SetSmth4 )(IHidden* This, int v1, int v2);
- HRESULT STDCALL ( *GetSmth5 )(IHidden* This, int* pv);
- HRESULT STDCALL ( *SetSmth5 )(IHidden* This, int v1, int v2);
- HRESULT STDCALL ( *GetSmth6 )(IHidden* This, int* pv);
-} IHidden_vt;
-struct IHidden { struct IHidden_vt* vt; };
-
-
-typedef struct IHidden2 IHidden2;
-typedef struct IHidden2_vt
-{
- INHERIT_IUNKNOWN();
-
- HRESULT STDCALL ( *unk1 )(void);
- HRESULT STDCALL ( *unk2 )(void);
- HRESULT STDCALL ( *unk3 )(void);
- HRESULT STDCALL ( *DecodeGet )(IHidden2* This, int* region);
- HRESULT STDCALL ( *unk5 )(void);
- HRESULT STDCALL ( *DecodeSet )(IHidden2* This, int* region);
- HRESULT STDCALL ( *unk7 )(void);
- HRESULT STDCALL ( *unk8 )(void);
-} IHidden2_vt;
-struct IHidden2 { struct IHidden2_vt* vt; };
-
-
-// fixme
-typedef struct IDivxFilterInterface {
- struct IDivxFilterInterface_vt* vt;
-} IDivxFilterInterface;
-
-struct IDivxFilterInterface_vt
-{
- INHERIT_IUNKNOWN();
-
- HRESULT STDCALL ( *get_PPLevel )(IDivxFilterInterface* This, int* PPLevel); // current postprocessing level
- HRESULT STDCALL ( *put_PPLevel )(IDivxFilterInterface* This, int PPLevel); // new postprocessing level
- HRESULT STDCALL ( *put_DefaultPPLevel )(IDivxFilterInterface* This);
- HRESULT STDCALL ( *put_MaxDelayAllowed )(IDivxFilterInterface* This, int maxdelayallowed);
- HRESULT STDCALL ( *put_Brightness )(IDivxFilterInterface* This, int brightness);
- HRESULT STDCALL ( *put_Contrast )(IDivxFilterInterface* This, int contrast);
- HRESULT STDCALL ( *put_Saturation )(IDivxFilterInterface* This, int saturation);
- HRESULT STDCALL ( *get_MaxDelayAllowed )(IDivxFilterInterface* This, int* maxdelayallowed);
- HRESULT STDCALL ( *get_Brightness)(IDivxFilterInterface* This, int* brightness);
- HRESULT STDCALL ( *get_Contrast)(IDivxFilterInterface* This, int* contrast);
- HRESULT STDCALL ( *get_Saturation )(IDivxFilterInterface* This, int* saturation);
- HRESULT STDCALL ( *put_AspectRatio )(IDivxFilterInterface* This, int x, IDivxFilterInterface* Thisit, int y);
- HRESULT STDCALL ( *get_AspectRatio )(IDivxFilterInterface* This, int* x, IDivxFilterInterface* Thisit, int* y);
-};
-
-typedef struct IEnumFilters IEnumFilters;
-
-typedef struct IFilterGraph_vt
-{
- INHERIT_IUNKNOWN();
-
- HRESULT STDCALL ( *AddFilter )(IFilterGraph* This,
- /* [in] */ IBaseFilter* pFilter,
- /* [string][in] */ unsigned short* pName);
- HRESULT STDCALL ( *RemoveFilter )(IFilterGraph* This,
- /* [in] */ IBaseFilter* pFilter);
- HRESULT STDCALL ( *EnumFilters )(IFilterGraph* This,
- /* [out] */ IEnumFilters** ppEnum);
- HRESULT STDCALL ( *FindFilterByName )(IFilterGraph* This,
- /* [string][in] */ unsigned short* pName,
- /* [out] */ IBaseFilter** ppFilter);
- HRESULT STDCALL ( *ConnectDirect )(IFilterGraph* This,
- /* [in] */ IPin* ppinOut,
- /* [in] */ IPin* ppinIn,
- /* [in] */ const AM_MEDIA_TYPE* pmt);
- HRESULT STDCALL ( *Reconnect )(IFilterGraph* This,
- /* [in] */ IPin* ppin);
- HRESULT STDCALL ( *Disconnect )(IFilterGraph* This,
- /* [in] */ IPin* ppin);
- HRESULT STDCALL ( *SetDefaultSyncSource )(IFilterGraph* This);
-} IFilterGraph_vt;
-struct IFilterGraph { IFilterGraph_vt *vt; };
-
-#endif /*MPLAYER_INTERFACES_H */