Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 81480011 | 2016-08-23 14:40:33 | Move "public" to "include/brotli" | ||
| 801f5f37 | 2016-08-22 13:28:22 | * rename macros with preceding underscore * add Brotli*TakeOutput methods * * flushing now doesn't require additional call * add Brotli*Version methods * moved public headers to 'public' directory * removed C++ API * do not assume STDC_VERSION is defined | ||
| 20481890 | 2016-07-26 14:41:59 | Update encoder: * booleanification * integer BR scores, may improve performance if FPU is slow * condense speed-quality constants in quality.h * code massage to calm down CoverityScan * hashers refactoring * new hasher - improved speed, compression and reduced memory usage for q:5-9 w:10-16 * reduced static recources -> binary size | ||
| 3ccbf05d | 2016-06-13 11:01:04 | Convert encoder to plain C. | ||
| 58a3023e | 2016-06-03 11:19:23 | Transform most of C++ comments to C-style. | ||
| f1c9ab29 | 2016-06-03 10:51:04 | Extract common parts: constants, dictionary, etc. | ||
| b972c677 | 2016-06-13 11:01:04 | Convert encoder to plain C. | ||
| 352b0b28 | 2016-06-03 11:19:23 | Transform most of C++ comments to C-style. | ||
| 02829186 | 2016-06-03 10:51:04 | Extract common parts: constants, dictionary, etc. | ||
| b820c39b | 2016-03-15 10:50:16 | Reduce memory usage of brotli encoder at quality 10 and 11. | ||
| 25e3796f | 2016-02-29 14:41:24 | Fix most of ()->(void) and some missing includes. | ||
| 8844b7f0 | 2016-01-07 16:27:49 | Fix more conversion warnings. | ||
| 24ffa784 | 2015-12-11 11:11:51 | Fix headers | ||
| 771eb107 | 2015-11-27 11:27:11 | Update license statement in source files. | ||
| bb26d191 | 2015-11-23 11:05:12 | Fix sign-comparison warnings + add more debug runtime checks + minor cleanup | ||
| 152e33c3 | 2015-11-17 13:45:41 | Add more explicit type conversions. Remove dead code. Fix includes. | ||
| ea48ce5a | 2015-10-28 17:44:47 | Fix --Wconversion and --pedantic-erros for the encoder. | ||
| 4a7024dc | 2015-10-01 12:08:14 | Make the brotli encoder C++98 compatible. | ||
| 21ac39f7 | 2015-09-21 21:04:07 | Fix typos. | ||
| 6511d6b0 | 2015-08-28 16:09:23 | update brotli encoder with latest improvements | ||
| d6d69ec4 | 2015-04-01 16:10:15 | Add quality and lgwin to the BrotliParams. Remove the hard-coded constants for window size and meta-block size. Initialize internal storage for each metablock separately and reserve only as much as needed for the actual input. | ||
| 485ad82e | 2014-10-28 14:05:53 | Fix potential output buffer overflow in encoder. | ||
| b4f39bf5 | 2014-10-28 13:25:22 | New version of the backward reference search code. The new interface of the backward reference search function makes it possible to use it in a streaming manner. Using the advanced cost model and static dictionary can be turned on/off by template parameters. The distance short codes are now computed as part of the backward reference search. Added a faster version of the Hasher. | ||
| c6b9c7c5 | 2013-11-15 19:02:17 | Updates to Brotli compression format, decoder and encoder This commit contains a batch of changes that were made to the Brotli compression algorithm in the last three weeks. Most important changes: * Added UTF8 context model for good text compression. * Simplified context modeling by having only 4 context modes. * Per-block context mode selection. * Faster backward copying and bit reading functions. * More efficient histogram coding. * Streaming support for the decoder and encoder. |