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-10-19 23:30:02 +0400
committerCasimir666 <casimir666@users.sourceforge.net>2007-10-19 23:30:02 +0400
commitafe04861df6403e0164e96c4550fd8553f0cf65b (patch)
tree79e2c7855556dafe3c1a11c48fbb91433b87f698 /src/filters/transform/mpcvideodec/MPCVideoDecSettingsWnd.h
parentf2bf4131f191423c9580aa2629baa54dece52fea (diff)
NEW : Support for FLV4, VP5 and VP6 video using ffmpeg codec
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@316 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/transform/mpcvideodec/MPCVideoDecSettingsWnd.h')
-rw-r--r--src/filters/transform/mpcvideodec/MPCVideoDecSettingsWnd.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/filters/transform/mpcvideodec/MPCVideoDecSettingsWnd.h b/src/filters/transform/mpcvideodec/MPCVideoDecSettingsWnd.h
new file mode 100644
index 000000000..76f33be12
--- /dev/null
+++ b/src/filters/transform/mpcvideodec/MPCVideoDecSettingsWnd.h
@@ -0,0 +1,46 @@
+/*
+ * Copyright (C) 2003-2006 Gabest
+ * http://www.gabest.org
+ *
+ * This Program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This Program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Make; see the file COPYING. If not, write to
+ * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ */
+
+#pragma once
+
+#include "..\..\InternalPropertyPage.h"
+#include "IMPCVideoDecFilter.h"
+#include <afxcmn.h>
+
+[uuid("D5AA0389-D274-48e1-BF50-ACB05A56DDE0")]
+class CMPCVideoDecSettingsWnd : public CInternalPropertyPageWnd
+{
+ CComQIPtr<IMPCVideoDecFilter> m_pMDF;
+
+public:
+ CMPCVideoDecSettingsWnd();
+
+ bool OnConnect(const CInterfaceList<IUnknown, &IID_IUnknown>& pUnks);
+ void OnDisconnect();
+ bool OnActivate();
+ void OnDeactivate();
+ bool OnApply();
+
+ static LPCTSTR GetWindowTitle() {return _T("Settings");}
+ static CSize GetWindowSize() {return CSize(320, 240);}
+
+ DECLARE_MESSAGE_MAP()
+}; \ No newline at end of file