Brotli compression format
Go to file
2016-10-12 16:12:13 +02:00
appveyor [appveyor/install.ps1] remove unused functions for miniconda 2015-10-07 12:46:16 +01:00
common Update encoder 2016-09-21 17:20:36 +02:00
dec Update encoder 2016-09-21 17:20:36 +02:00
docs Update the spec reference to RFC 7932, remove the old internet draft. 2016-08-02 13:27:29 +02:00
enc Update encoder 2016-09-21 17:20:36 +02:00
include/brotli Update encoder 2016-09-21 17:20:36 +02:00
python Update brotlimodule.cc 2016-09-21 16:02:32 +02:00
research Update research 2016-09-22 11:32:23 +02:00
terryfy@8bb673f441 add support for Travis CI (OS X only for now) 2015-08-14 11:28:26 +01:00
tests Add mingw support. 2016-07-28 19:32:33 -07:00
tools Update research 2016-09-22 11:32:23 +02:00
.gitignore Update build systems 2016-06-24 15:32:51 +02:00
.gitmodules Replace sais.hxx by submodule hillbig/esaxx. 2016-09-19 19:12:30 +02:00
.travis.sh .travis.sh: skip source venv on linux 2016-08-10 19:27:17 +01:00
.travis.yml Update .travis.yml 2016-09-20 10:11:46 +02:00
appveyor.yml appveyor: add Visual Studio builds (based on CMake) 2016-07-29 13:24:17 -07:00
BUILD Bazel: link ":brotli_enc" with -lm. 2016-08-29 02:32:12 -07:00
CMakeLists.txt Use install directories provided by GNUInstallDirs. 2016-10-12 16:12:13 +02:00
configure Update build systems 2016-06-24 15:32:51 +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 research 2016-09-22 11:32:23 +02:00
MANIFEST.in Move "public" to "include/brotli" 2016-08-23 14:40:33 +02:00
premake5.lua Move "public" to "include/brotli" 2016-08-23 14:40:33 +02:00
README.md Add benchmarks section 2016-08-10 14:44:59 +02:00
setup.cfg Fix wheels build. 2016-06-17 20:10:31 +02:00
setup.py Add includedir to setup.py 2016-08-23 14:44:13 +02:00
WORKSPACE Update build system. Now libraries are produced as build artifacts. 2016-06-16 10:52:57 +02: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

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