Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\e32huffman.h
24 /** Bit output stream.
25 Good for writing bit streams for packed, compressed or huffman data algorithms.
27 This class must be derived from and OverflowL() reimplemented if the bitstream data
28 cannot be generated into a single memory buffer.
33 IMPORT_C TBitOutput();
34 IMPORT_C TBitOutput(TUint8* aBuf,TInt aSize);
35 inline void Set(TUint8* aBuf,TInt aSize);
36 inline const TUint8* Ptr() const;
37 inline TInt BufferedBits() const;
39 IMPORT_C void WriteL(TUint aValue, TInt aLength);
40 IMPORT_C void HuffmanL(TUint aHuffCode);
41 IMPORT_C void PadL(TUint aPadding);
43 void DoWriteL(TUint aBits, TInt aSize);
44 virtual void OverflowL();
46 TUint iCode; // code in production
52 /** Set the memory buffer to use for output
54 Data will be written to this buffer until it is full, at which point OverflowL() will
55 be called. This should handle the data and then can Set() again to reset the buffer
58 @param aBuf The buffer for output
59 @param aSize The size of the buffer in bytes
61 inline void TBitOutput::Set(TUint8* aBuf,TInt aSize)
62 {iPtr=aBuf;iEnd=aBuf+aSize;}
64 /** Get the current write position in the output buffer
66 In conjunction with the address of the buffer, which should be known to the
67 caller, this describes the data in the bitstream.
69 inline const TUint8* TBitOutput::Ptr() const
72 /** Get the number of bits that are buffered
74 This reports the number of bits that have not yet been written into the
75 output buffer. It will always lie in the range 0..7. Use PadL() to
76 pad the data out to the next byte and write it to the buffer.
78 inline TInt TBitOutput::BufferedBits() const
82 /** Bit input stream. Good for reading bit streams for packed, compressed or huffman
89 IMPORT_C TBitInput(const TUint8* aPtr, TInt aLength, TInt aOffset=0);
90 IMPORT_C void Set(const TUint8* aPtr, TInt aLength, TInt aOffset=0);
92 IMPORT_C TUint ReadL();
93 IMPORT_C TUint ReadL(TInt aSize);
94 IMPORT_C TUint HuffmanL(const TUint32* aTree);
96 virtual void UnderflowL();
104 /** Huffman code toolkit.
106 This class builds a huffman encoding from a frequency table and builds
107 a decoding tree from a code-lengths table
109 The encoding generated is based on the rule that given two symbols s1 and s2, with
110 code length l1 and l2, and huffman codes h1 and h2:
112 if l1<l2 then h1<h2 when compared lexicographically
113 if l1==l2 and s1<s2 then h1<h2 ditto
115 This allows the encoding to be stored compactly as a table of code lengths
120 enum {KMaxCodeLength=27};
121 enum {KMetaCodes=KMaxCodeLength+1};
122 enum {KMaxCodes=0x8000};
124 IMPORT_C static void HuffmanL(const TUint32 aFrequency[],TInt aNumCodes,TUint32 aHuffman[]);
125 IMPORT_C static void Encoding(const TUint32 aHuffman[],TInt aNumCodes,TUint32 aEncodeTable[]);
126 IMPORT_C static void Decoding(const TUint32 aHuffman[],TInt aNumCodes,TUint32 aDecodeTree[],TInt aSymbolBase=0);
127 IMPORT_C static TBool IsValid(const TUint32 aHuffman[],TInt aNumCodes);
129 IMPORT_C static void ExternalizeL(TBitOutput& aOutput,const TUint32 aHuffman[],TInt aNumCodes);
130 IMPORT_C static void InternalizeL(TBitInput& aInput,TUint32 aHuffman[],TInt aNumCodes);