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:
authorXhmikosR <xhmikosr@users.sourceforge.net>2010-04-09 18:12:59 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2010-04-09 18:12:59 +0400
commitefbc9d9043ff8ff92716ddd00a5f61412d535593 (patch)
tree8f3e621f756cf1f5b4d64d97964c7e7abd8aaf08 /src/DSUtil/GolombBuffer.h
parentdf6b139a6d9027156f614b68687e039e3a5854db (diff)
revert r1783
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1785 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/DSUtil/GolombBuffer.h')
-rw-r--r--src/DSUtil/GolombBuffer.h82
1 files changed, 29 insertions, 53 deletions
diff --git a/src/DSUtil/GolombBuffer.h b/src/DSUtil/GolombBuffer.h
index 6e5e3c9d8..ffb596e02 100644
--- a/src/DSUtil/GolombBuffer.h
+++ b/src/DSUtil/GolombBuffer.h
@@ -1,4 +1,4 @@
-/*
+/*
* $Id$
*
* (C) 2006-2010 see AUTHORS
@@ -25,58 +25,34 @@
class CGolombBuffer
{
public:
- CGolombBuffer(BYTE* pBuffer, int nSize);
-
- UINT64 BitRead(int nBits, bool fPeek = false);
- UINT64 UExpGolombRead();
- INT64 SExpGolombRead();
- void BitByteAlign();
-
- inline BYTE ReadByte()
- {
- return (BYTE) BitRead(8);
- };
- inline SHORT ReadShort()
- {
- return (SHORT)BitRead(16);
- };
- inline DWORD ReadDword()
- {
- return (DWORD)BitRead(32);
- };
- void ReadBuffer(BYTE* pDest, int nSize);
-
- void Reset();
- void Reset(BYTE* pNewBuffer, int nNewSize);
-
- void SetSize(int nValue)
- {
- m_nSize = nValue;
- };
- int GetSize() const
- {
- return m_nSize;
- };
- int RemainingSize() const
- {
- return m_nSize - m_nBitPos;
- };
- bool IsEOF() const
- {
- return m_nBitPos >= m_nSize;
- };
- INT64 GetPos();
- BYTE* GetBufferPos()
- {
- return m_pBuffer + m_nBitPos;
- };
-
- void SkipBytes(int nCount);
+ CGolombBuffer(BYTE* pBuffer, int nSize);
+
+ UINT64 BitRead(int nBits, bool fPeek = false);
+ UINT64 UExpGolombRead();
+ INT64 SExpGolombRead();
+ void BitByteAlign();
+
+ inline BYTE ReadByte() { return (BYTE) BitRead ( 8); };
+ inline SHORT ReadShort() { return (SHORT)BitRead (16); };
+ inline DWORD ReadDword() { return (DWORD)BitRead (32); };
+ void ReadBuffer(BYTE* pDest, int nSize);
+
+ void Reset();
+ void Reset(BYTE* pNewBuffer, int nNewSize);
+
+ void SetSize(int nValue) { m_nSize = nValue; };
+ int GetSize() const { return m_nSize; };
+ int RemainingSize() const { return m_nSize - m_nBitPos; };
+ bool IsEOF() const { return m_nBitPos >= m_nSize; };
+ INT64 GetPos();
+ BYTE* GetBufferPos() { return m_pBuffer + m_nBitPos; };
+
+ void SkipBytes(int nCount);
private :
- BYTE* m_pBuffer;
- int m_nSize;
- int m_nBitPos;
- int m_bitlen;
- INT64 m_bitbuff;
+ BYTE* m_pBuffer;
+ int m_nSize;
+ int m_nBitPos;
+ int m_bitlen;
+ INT64 m_bitbuff;
};