Package lupos.compression.bitstream

Examples of lupos.compression.bitstream.BitInputStream


  /**
   * 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);
  }
View Full Code Here

TOP

Related Classes of lupos.compression.bitstream.BitInputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.