summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
Diffstat (limited to 'loader')
-rw-r--r--loader/dshow/graph.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/loader/dshow/graph.h b/loader/dshow/graph.h
index 7667f5a39e..2fa72b49b4 100644
--- a/loader/dshow/graph.h
+++ b/loader/dshow/graph.h
@@ -52,6 +52,25 @@ struct FilterGraph {
HRESULT STDCALL (*SetDefaultSyncSource)(FilterGraph* This);
};
+
+HRESULT STDCALL FilterGraph_AddFilter(FilterGraph* This,
+ IBaseFilter* pFilter,
+ unsigned short* pName);
+HRESULT STDCALL FilterGraph_RemoveFilter(FilterGraph* This,
+ IBaseFilter* pFilter);
+HRESULT STDCALL FilterGraph_EnumFilters(FilterGraph* This,
+ IEnumFilters** ppEnum);
+HRESULT STDCALL FilterGraph_FindFilterByName(FilterGraph* This,
+ unsigned short* pName,
+ IBaseFilter** ppFilter);
+HRESULT STDCALL FilterGraph_ConnectDirect(FilterGraph* This,
+ IPin* ppinOut,
+ IPin* ppinIn,
+ const AM_MEDIA_TYPE* pmt);
+HRESULT STDCALL FilterGraph_Reconnect(FilterGraph* This, IPin* ppin);
+HRESULT STDCALL FilterGraph_Disconnect(FilterGraph* This, IPin* ppin);
+HRESULT STDCALL FilterGraph_SetDefaultSyncSource(FilterGraph* This);
+
FilterGraph* FilterGraphCreate(void);
#endif /* MPLAYER_GRAPH_H */