├── LICENSE ├── README.md ├── python ├── __init__.py ├── src │ ├── module.cpp │ ├── range_coder_interface.cpp │ └── range_coder_interface.h └── tests │ └── test_range_coder.py ├── range_coder.hpp ├── setup.py └── t ├── bench.cpp └── build_table.pl /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/README.md -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/python/__init__.py -------------------------------------------------------------------------------- /python/src/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/python/src/module.cpp -------------------------------------------------------------------------------- /python/src/range_coder_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/python/src/range_coder_interface.cpp -------------------------------------------------------------------------------- /python/src/range_coder_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/python/src/range_coder_interface.h -------------------------------------------------------------------------------- /python/tests/test_range_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/python/tests/test_range_coder.py -------------------------------------------------------------------------------- /range_coder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/range_coder.hpp -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/setup.py -------------------------------------------------------------------------------- /t/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/t/bench.cpp -------------------------------------------------------------------------------- /t/build_table.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucastheis/rangecoder/HEAD/t/build_table.pl --------------------------------------------------------------------------------