4.27 beta

This commit is contained in:
Igor Pavlov
2005-09-21 00:00:00 +00:00
committed by Kornel Lesiński
parent 31e7b924e8
commit d66cf2fcf3
393 changed files with 17345 additions and 4743 deletions

View File

@@ -11,7 +11,6 @@ namespace NImplode {
namespace NHuffman {
const int kNumBitsInLongestCode = 16;
class CDecoderException{};
typedef NStream::NLSBF::CDecoder<CInBuffer> CInBit;
@@ -25,7 +24,7 @@ public:
CDecoder(UInt32 numSymbols);
~CDecoder();
void SetCodeLengths(const Byte *codeLengths);
bool SetCodeLengths(const Byte *codeLengths);
UInt32 DecodeSymbol(CInBit *inStream);
};