mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 19:14:56 -06:00
9.38
This commit is contained in:
committed by
Kornel Lesiński
parent
7e021179cd
commit
0713a3ab80
@@ -121,12 +121,12 @@ public:
|
||||
|
||||
void AlignToByte() { MovePos((32 - this->_bitPos) & 7); }
|
||||
|
||||
Byte ReadDirectByte() { return _stream.ReadByte(); }
|
||||
Byte ReadDirectByte() { return this->_stream.ReadByte(); }
|
||||
|
||||
Byte ReadAlignedByte()
|
||||
{
|
||||
if (this->_bitPos == kNumBigValueBits)
|
||||
return _stream.ReadByte();
|
||||
return this->_stream.ReadByte();
|
||||
Byte b = (Byte)(_normalValue & 0xFF);
|
||||
MovePos(8);
|
||||
return b;
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
static const unsigned kNumCodecsMax = 48;
|
||||
unsigned g_NumCodecs = 0;
|
||||
const CCodecInfo *g_Codecs[kNumCodecsMax];
|
||||
void RegisterCodec(const CCodecInfo *codecInfo)
|
||||
void RegisterCodec(const CCodecInfo *codecInfo) throw()
|
||||
{
|
||||
if (g_NumCodecs < kNumCodecsMax)
|
||||
g_Codecs[g_NumCodecs++] = codecInfo;
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
#include "LzOutWindow.h"
|
||||
|
||||
void CLzOutWindow::Init(bool solid)
|
||||
void CLzOutWindow::Init(bool solid) throw()
|
||||
{
|
||||
if (!solid)
|
||||
COutBuffer::Init();
|
||||
|
||||
@@ -39,7 +39,7 @@ public:
|
||||
{
|
||||
if (Symbol >= 0)
|
||||
return (UInt32)Symbol;
|
||||
return DecodeSymbol(bitStream);
|
||||
return this->DecodeSymbol(bitStream);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -69,8 +69,6 @@ Byte CFilter::Decode(int &channelDelta, Byte deltaByte)
|
||||
}
|
||||
}
|
||||
|
||||
static const char *kNumberErrorMessage = "Number error";
|
||||
|
||||
static const UInt32 kHistorySize = 1 << 20;
|
||||
|
||||
static const int kNumStats = 11;
|
||||
|
||||
Reference in New Issue
Block a user