Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasimir666 <casimir666@users.sourceforge.net>2007-04-21 22:15:47 +0400
committerCasimir666 <casimir666@users.sourceforge.net>2007-04-21 22:15:47 +0400
commitcf2302ed8ac483e06a46d1c098b8a42983a9f52b (patch)
tree8ebef5cb2f1124b7eafe9ac850fa386b7210aa89 /src/apps/mplayerc/FGManager.h
parent768d55cfb4ed8dd645f05415bd367c16533287b2 (diff)
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@54 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/apps/mplayerc/FGManager.h')
-rw-r--r--src/apps/mplayerc/FGManager.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/apps/mplayerc/FGManager.h b/src/apps/mplayerc/FGManager.h
index a660b5478..49579f6b3 100644
--- a/src/apps/mplayerc/FGManager.h
+++ b/src/apps/mplayerc/FGManager.h
@@ -60,6 +60,7 @@ protected:
static bool CheckBytes(HANDLE hFile, CString chkbytes);
+ HRESULT EnumSourceFilters(LPCWSTR lpcwstrFileName, CFGFilterList& fl);
HRESULT AddSourceFilter(CFGFilter* pFGF, LPCWSTR lpcwstrFileName, LPCWSTR lpcwstrFilterName, IBaseFilter** ppBF);
// IFilterGraph
@@ -144,6 +145,7 @@ class CFGManagerDVD : public CFGManagerPlayer
protected:
// IGraphBuilder
+ STDMETHODIMP RenderFile(LPCWSTR lpcwstrFile, LPCWSTR lpcwstrPlayList);
STDMETHODIMP AddSourceFilter(LPCWSTR lpcwstrFileName, LPCWSTR lpcwstrFilterName, IBaseFilter** ppFilter);
public:
@@ -162,3 +164,17 @@ public:
CFGManagerMuxer(LPCTSTR pName, LPUNKNOWN pUnk);
};
+//
+
+class CFGAggregator : public CUnknown
+{
+protected:
+ CComPtr<IUnknown> m_pUnkInner;
+
+public:
+ CFGAggregator(const CLSID& clsid, LPCTSTR pName, LPUNKNOWN pUnk, HRESULT& hr);
+ virtual ~CFGAggregator();
+
+ DECLARE_IUNKNOWN;
+ STDMETHODIMP NonDelegatingQueryInterface(REFIID riid, void** ppv);
+};