|
| 1 | +Arithmetic Coding |
| 2 | +============== |
| 3 | + |
| 4 | +This project is an open-source reference implementation of arithmetic coding |
| 5 | +in Java. The code is optimized for studying and extending, and contains extra |
| 6 | +assertions to check correctness. It is not optimized for speed/memory/performance. |
| 7 | + |
| 8 | + |
| 9 | +Description |
| 10 | +----------- |
| 11 | + |
| 12 | +An overview of the code is given here: [http://nayuki.eigenstate.org/page/arithmetic-coding-java](http://nayuki.eigenstate.org/page/arithmetic-coding-java) |
| 13 | + |
| 14 | + |
| 15 | +License |
| 16 | +------- |
| 17 | + |
| 18 | +(MIT License) |
| 19 | + |
| 20 | +Copyright © 2013 Nayuki Minase |
| 21 | + |
| 22 | +Permission is hereby granted, free of charge, to any person obtaining a copy of |
| 23 | +this software and associated documentation files (the "Software"), to deal in |
| 24 | +the Software without restriction, including without limitation the rights to |
| 25 | +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
| 26 | +the Software, and to permit persons to whom the Software is furnished to do so, |
| 27 | +subject to the following conditions: |
| 28 | + |
| 29 | +* The above copyright notice and this permission notice shall be included in |
| 30 | + all copies or substantial portions of the Software. |
| 31 | + |
| 32 | +* The Software is provided "as is", without warranty of any kind, express or |
| 33 | + implied, including but not limited to the warranties of merchantability, |
| 34 | + fitness for a particular purpose and noninfringement. In no event shall the |
| 35 | + authors or copyright holders be liable for any claim, damages or other |
| 36 | + liability, whether in an action of contract, tort or otherwise, arising from, |
| 37 | + out of or in connection with the Software or the use or other dealings in the |
| 38 | + Software. |
0 commit comments