Brotli compression format
Go to file
2017-03-24 12:54:20 +01:00
appveyor [appveyor/install.ps1] remove unused functions for miniconda 2015-10-07 12:46:16 +01:00
common Fix typos (#521) 2017-03-09 17:34:16 +01:00
dec Fix typos (#521) 2017-03-09 17:34:16 +01:00
docs Move java/ to java/org/brotli/ to fix sources.jar structure (#517) 2017-02-28 16:59:52 +01:00
enc Better compression (#523) 2017-03-21 16:08:23 +01:00
fuzz Prevent fuzzer timeouts on compression-bomb samples (#522) 2017-03-10 16:01:49 +01:00
go/cbrotli Add go wrapper, streamline java decoder: (#524) 2017-03-22 12:41:19 +01:00
include/brotli Fix typos (#521) 2017-03-09 17:34:16 +01:00
java/org/brotli Add go wrapper, streamline java decoder: (#524) 2017-03-22 12:41:19 +01:00
python Python: Create Makefile for development shortcuts (#488) 2016-12-21 10:17:11 +01:00
research Research (#491) 2016-12-22 13:03:28 +01:00
terryfy@8bb673f441 add support for Travis CI (OS X only for now) 2015-08-14 11:28:26 +01:00
tests Do not assume that bash is installed in /bin (#477) 2016-12-09 08:58:13 +01:00
tools bro: check return values of chown and chmod (#465) 2016-11-02 14:03:06 +01:00
.bintray.json Upload binaries to bintray (#528) 2017-03-24 12:54:20 +01:00
.configure-custom.sh Add configure-cmake (#474) (#486) 2016-12-20 17:45:40 +01:00
.gitignore Python: Simplify test suite generation by using unittest discovery (#485) 2016-12-20 14:40:47 +01:00
.gitmodules Replace sais.hxx by submodule hillbig/esaxx. 2016-09-19 19:12:30 +02:00
.travis.sh Upload binaries to bintray (#528) 2017-03-24 12:54:20 +01:00
.travis.yml Upload binaries to bintray (#528) 2017-03-24 12:54:20 +01:00
appveyor.yml Python: Run Appveyor tests in CMD mode (#461) 2016-10-27 17:25:05 +02:00
BUILD Add go wrapper, streamline java decoder: (#524) 2017-03-22 12:41:19 +01:00
CMakeLists.txt Fix CMakeLists.txt specifying a nonexistent pkgconfig package (#518) 2017-03-01 16:19:57 +01:00
configure Do not assume that bash is installed in /bin (#477) 2016-12-09 08:58:13 +01:00
configure-cmake Add configure-cmake (#474) (#486) 2016-12-20 17:45:40 +01:00
CONTRIBUTING.md Apply 80-chars limit to CONTRIBUTING.md 2016-02-18 15:20:59 +01:00
LICENSE Prepare to release 0.4.0 2016-06-14 15:07:13 +02:00
Makefile Update docs and add more java tests (#463) 2016-10-31 14:33:59 +01:00
MANIFEST.in Move "public" to "include/brotli" 2016-08-23 14:40:33 +02:00
premake5.lua Remove the underscore in the name of brotli libraries. #326 2016-10-12 18:24:04 +02:00
README.md Python: Create Makefile for development shortcuts (#488) 2016-12-21 10:17:11 +01:00
setup.cfg Python: Update README with information about code formatting 2016-10-17 13:57:56 -04:00
setup.py Update common, decoder, encoder, java (#520) 2017-03-06 14:22:45 +01:00
WORKSPACE Add go wrapper, streamline java decoder: (#524) 2017-03-22 12:41:19 +01:00

Introduction

Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression.

The specification of the Brotli Compressed Data Format is defined in RFC 7932.

Brotli is open-sourced under the MIT License, see the LICENSE file.

Brotli mailing list: https://groups.google.com/forum/#!forum/brotli

Build Status

Build instructions

Make

To build and run tests, simply do:

$ ./configure && make

If you want to install brotli, use one of the more advanced build systems below.

Bazel

See Bazel

CMake

The basic commands to build, test and install brotli are:

$ mkdir out && cd out && ../configure-cmake && make
$ make test
$ make install

You can use other CMake configuration. For example, to build static libraries and use a custom installation directory:

$ mkdir out-static && \
  cd out-static && \
  ../configure-cmake --disable-shared-libs --prefix='/my/prefix/dir/'
$ make install

Premake5

See Premake5

Python

To install the Python module from source, run the following:

$ python setup.py install

See the Python readme for more details on testing and development.

Benchmarks

Independent decoder implementation by Mark Adler, based entirely on format specification.

JavaScript port of brotli decoder. Could be used directly via npm install brotli