Brotli compression format
Go to file
Eugene Kliuchnikov d4973734e4 Update brotli.c
2017-09-05 18:20:09 +02:00
c Update brotli.c 2017-09-05 18:20:09 +02:00
csharp Transpile Java speedup (#548) 2017-05-07 17:40:12 +02:00
docs Update API, and more (#581) 2017-08-04 10:02:56 +02:00
go/cbrotli Update wrappers (#564) 2017-06-21 10:59:38 +02:00
java/org/brotli Update (#589) 2017-08-24 13:29:48 +02:00
js Update (#590) 2017-08-28 11:31:29 +02:00
python Update (#590) 2017-08-28 11:31:29 +02:00
research Update (#590) 2017-08-28 11:31:29 +02:00
scripts Update appveyor.yml 2017-09-05 18:01:58 +02:00
tests Update roundtrip_test.sh 2017-09-05 18:11:19 +02:00
.editorconfig Add an EditorConfig file to provide consistent style across editors. (#579) 2017-08-02 16:58:43 +02:00
.gitignore Update (#555) 2017-05-29 17:55:14 +02:00
.gitmodules disable buidling/deployment of python wheels (#583) 2017-08-23 20:45:13 +02:00
.travis.yml disable buidling/deployment of python wheels (#583) 2017-08-23 20:45:13 +02:00
BUILD Add JNI wrappers. (#556) 2017-06-01 13:51:18 +02:00
CMakeLists.txt Update (#555) 2017-05-29 17:55:14 +02:00
configure Do not assume that bash is installed in /bin (#477) 2016-12-09 08:58:13 +01:00
configure-cmake Move files & update paths (#541) 2017-04-23 14:07:08 +02: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 Makefile 2017-09-05 17:38:24 +02:00
MANIFEST.in Update (#555) 2017-05-29 17:55:14 +02:00
premake5.lua Added windows platform support to premake (#567) 2017-07-10 19:57:05 +02:00
README.md Update README.md 2017-09-04 14:54:51 +02:00
setup.cfg Python: Update README with information about code formatting 2016-10-17 13:57:56 -04:00
setup.py disable buidling/deployment of python wheels (#583) 2017-08-23 20:45:13 +02:00
WORKSPACE Update (#590) 2017-08-28 11:31:29 +02:00

Brotli

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

TravisCI Build Status AppVeyor Build Status

Build instructions

Autotools-style CMake

configure-cmake is an autotools-style configure script for CMake-based projects.

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

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

To build static libraries use --disable-shared-libs argument:

$ mkdir out-static && cd out-static
$ ../configure-cmake --disable-shared-libs
$ make install

Bazel

See Bazel

CMake

The basic commands to build and install brotli are:

$ mkdir out && cd out
$ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=./installed ..
$ cmake --build . --config Release --target install

You can use other CMake configuration. For example, to build static libraries:

$ mkdir out-static && cd out-static
$ cmake .. -DBUILD_SHARED_LIBS=OFF
$ make

Premake5

See Premake5

Python

To install the latest release of the Python module, run the following:

$ pip install brotli

See the Python readme for more details on installing from source, development, and testing.

Benchmarks

Disclaimer: Brotli authors take no responsibility for the third party projects mentioned in this section.

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

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

Hand ported decoder / encoder in haxe by Dominik Homberger. Output source code: JavaScript, PHP, Python, Java and C#

7Zip plugin