aboutsummaryrefslogtreecommitdiff
path: root/lib/UnrarXLib/coder.hpp
diff options
context:
space:
mode:
authorStefan Saraev <stefan@saraev.ca>2017-03-27 22:12:40 +0300
committerStefan Saraev <stefan@saraev.ca>2017-04-07 20:14:12 +0300
commitbee51e139fff45c788b9eb1e161b297d5ee7895b (patch)
tree69ad126aa511f7cf8ef70047c4ec28cad1f21888 /lib/UnrarXLib/coder.hpp
parent1d718acfb13b0681805867dc6ce4f9715c0d0216 (diff)
[cleanup] remove UnrarXLib
Diffstat (limited to 'lib/UnrarXLib/coder.hpp')
-rw-r--r--lib/UnrarXLib/coder.hpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/UnrarXLib/coder.hpp b/lib/UnrarXLib/coder.hpp
deleted file mode 100644
index f09f911c09..0000000000
--- a/lib/UnrarXLib/coder.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-/****************************************************************************
- * Contents: 'Carryless rangecoder' by Dmitry Subbotin *
- ****************************************************************************/
-
-const uint TOP=1 << 24, BOT=1 << 15;
-
-class RangeCoder
-{
- public:
- void InitDecoder(Unpack *UnpackRead);
- inline int GetCurrentCount();
- inline uint GetCurrentShiftCount(uint SHIFT);
- inline void Decode();
- inline void PutChar(unsigned int c);
- inline unsigned int GetChar();
-
- uint low, code, range;
- struct SUBRANGE
- {
- uint LowCount, HighCount, scale;
- } SubRange;
-
- Unpack *UnpackRead;
-};