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:
Diffstat (limited to 'src/filters/muxer/BaseMuxer/BitStream.h')
-rw-r--r--src/filters/muxer/BaseMuxer/BitStream.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/filters/muxer/BaseMuxer/BitStream.h b/src/filters/muxer/BaseMuxer/BitStream.h
index 2d90f0a35..914447ca4 100644
--- a/src/filters/muxer/BaseMuxer/BitStream.h
+++ b/src/filters/muxer/BaseMuxer/BitStream.h
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2012 see Authors.txt
+ * (C) 2006-2013 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -24,12 +24,12 @@
interface __declspec(uuid("30AB78C7-5259-4594-AEFE-9C0FC2F08A5E"))
IBitStream :
public IUnknown {
- STDMETHOD_(UINT64, GetPos)() = 0;
- STDMETHOD_(UINT64, Seek)(UINT64 pos) = 0; // it's a _stream_, please don't seek if you don't have to
- STDMETHOD(ByteWrite)(const void * pData, int len) = 0;
- STDMETHOD(BitWrite)(UINT64 data, int len) = 0;
- STDMETHOD(BitFlush)() = 0;
- STDMETHOD(StrWrite)(LPCSTR pData, BOOL bFixNewLine) = 0;
+ STDMETHOD_(UINT64, GetPos)() PURE;
+ STDMETHOD_(UINT64, Seek)(UINT64 pos) PURE; // it's a _stream_, please don't seek if you don't have to
+ STDMETHOD(ByteWrite)(const void * pData, int len) PURE;
+ STDMETHOD(BitWrite)(UINT64 data, int len) PURE;
+ STDMETHOD(BitFlush)() PURE;
+ STDMETHOD(StrWrite)(LPCSTR pData, BOOL bFixNewLine) PURE;
};
class CBitStream : public CUnknown, public IBitStream