Brotli compression format
Go to file
Evan Nemerson c1ec7ba292 appveyor: add Visual Studio builds (based on CMake)
This only goes back to VS 12 (2013) because MSVC didn't support log2
until then.
2016-07-29 13:24:17 -07:00
appveyor [appveyor/install.ps1] remove unused functions for miniconda 2015-10-07 12:46:16 +01:00
common Add mingw support. 2016-07-28 19:32:33 -07:00
dec Do not use "static inline" for deprecated API. 2016-07-25 10:36:36 +02:00
docs Update the spec to latest published version. 2016-05-26 12:20:42 +02:00
enc Fix ubsan warning. 2016-07-27 11:02:27 +02:00
python Fix issue #383 2016-06-23 11:02:53 +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 Add mingw support. 2016-07-28 19:32:33 -07:00
.gitignore Update build systems 2016-06-24 15:32:51 +02:00
.gitmodules add support for Travis CI (OS X only for now) 2015-08-14 11:28:26 +01:00
.travis.sh Add mingw support. 2016-07-28 19:32:33 -07:00
.travis.yml travis: use container-based infrastructure 2016-07-28 20:13:29 -07:00
appveyor.yml appveyor: add Visual Studio builds (based on CMake) 2016-07-29 13:24:17 -07:00
BUILD Update build systems 2016-06-24 15:32:51 +02:00
CMakeLists.txt appveyor: add Visual Studio builds (based on CMake) 2016-07-29 13:24:17 -07: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 Add a "lib" target to the Makefile to build a static library named libbrotli.a 2016-07-06 10:09:04 -07:00
MANIFEST.in Fix VS build problems: 2016-06-17 16:24:51 +02:00
premake5.lua Update build systems 2016-06-24 15:32:51 +02:00
README.md Update readme 2016-06-21 13:41:25 +02:00
setup.cfg Fix wheels build. 2016-06-17 20:10:31 +02:00
setup.py Fix CI build. 2016-06-14 16:02:38 +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 the following internet draft: http://www.ietf.org/id/draft-alakuijala-brotli

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

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

Build Status

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

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