Giter VIP home page Giter VIP logo

Comments (1)

nayuki avatar nayuki commented on July 17, 2024

Adding any data after the end of an arithmetic-coded stream is tricky and easy to screw up. The problems are that the encoder needs to write a sufficient number of padding bits, and the decoder needs to read exactly the correct number of bits but no more and no less. Therefore my library does not attempt to implement or allow this functionality.

You cannot use my library to join two arithmetic-coded streams. You cannot put any bit data or byte data after an arithmetic-coded stream. You can work around this by methods such as:

  • Adding an explicit framing around the two chunks of arithmetic-coded data. Make a header that describes the bit length. Make an input stream class that reads the bit length from the header, and gives EOF after all bits are read. In essence, create subblocks in the file to act like virtual files that each have an EOF.
  • Make both vectors share the same arithmetic coder so that you only use one stream. There are many ways to do this - back-to-back, interleaved, etc.
  • Modify the library, with deep low-level knowledge of arithmetic coding, to support stream concatenation without corrupting the data. This is theoretically feasible, but I have not put in the effort to explore this functionality. Hence I cannot tell you what a correct implementation looks like.

No further support will be provided from me.

from reference-arithmetic-coding.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.