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

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorkasper93 <kasper93@gmail.com>2013-12-22 03:51:49 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2013-12-26 22:12:05 +0400
commitfb9081de4fd38e1c6821d51b8407074d8ea59ea1 (patch)
treec392ec9db6276e6a3d4fe0b09ffddbfa7cdc109b /common
parent30a903bb8a07a115b17715b197bedc411a4c773a (diff)
Implement IBitRateInfo
Signed-off-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'common')
-rw-r--r--common/includes/IBitRateInfo.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/common/includes/IBitRateInfo.h b/common/includes/IBitRateInfo.h
new file mode 100644
index 00000000..393d4c96
--- /dev/null
+++ b/common/includes/IBitRateInfo.h
@@ -0,0 +1,27 @@
+/*
+ * (C) 2003-2006 Gabest
+ * (C) 2006-2013 MPC-HC Team
+ *
+ * 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 3 of the License, 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 this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#pragma once
+
+interface __declspec(uuid("EB2CD9E6-BA08-4acb-AA0F-3D8D0DD521CA"))
+IBitRateInfo :
+public IUnknown {
+ STDMETHOD_(DWORD, GetCurrentBitRate)() PURE;
+ STDMETHOD_(DWORD, GetAverageBitRate)() PURE;
+};