/**
* Constructor
* @param in the underlying input stream, from which a bit input stream is created and from which for each block the huffman tree is read and the huffman encoded block
*/
public HuffmanInputStream(final InputStream in){
this.in = new BitInputStream(in);
}