mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
f08a70d7df
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30872 b3059339-0415-0410-9bf9-f77b7e298cf2
38 lines
1.5 KiB
C
38 lines
1.5 KiB
C
#ifndef MPLAYER_GRAPH_H
|
|
#define MPLAYER_GRAPH_H
|
|
|
|
#include "interfaces.h"
|
|
#include "cmediasample.h"
|
|
|
|
typedef struct FilterGraph FilterGraph;
|
|
|
|
struct FilterGraph {
|
|
IFilterGraph_vt* vt;
|
|
DECLARE_IUNKNOWN();
|
|
GUID interfaces[2];
|
|
|
|
HRESULT STDCALL (*AddFilter)(FilterGraph* This,
|
|
/* [in] */ IBaseFilter* pFilter,
|
|
/* [string][in] */ unsigned short* pName);
|
|
HRESULT STDCALL (*RemoveFilter)(FilterGraph* This,
|
|
/* [in] */ IBaseFilter* pFilter);
|
|
HRESULT STDCALL (*EnumFilters)(FilterGraph* This,
|
|
/* [out] */ IEnumFilters** ppEnum);
|
|
HRESULT STDCALL (*FindFilterByName)(FilterGraph* This,
|
|
/* [string][in] */ unsigned short* pName,
|
|
/* [out] */ IBaseFilter** ppFilter);
|
|
HRESULT STDCALL (*ConnectDirect)(FilterGraph* This,
|
|
/* [in] */ IPin* ppinOut,
|
|
/* [in] */ IPin* ppinIn,
|
|
/* [in] */ const AM_MEDIA_TYPE* pmt);
|
|
HRESULT STDCALL (*Reconnect)(FilterGraph* This,
|
|
/* [in] */ IPin* ppin);
|
|
HRESULT STDCALL (*Disconnect)(FilterGraph* This,
|
|
/* [in] */ IPin* ppin);
|
|
HRESULT STDCALL (*SetDefaultSyncSource)(FilterGraph* This);
|
|
};
|
|
|
|
FilterGraph* FilterGraphCreate(void);
|
|
|
|
#endif /* MPLAYER_GRAPH_H */
|