Provides functions for compression using the Brotli algorithm with adjustable parameters, defaults are what Google uses. Be aware that compression may raise Failure exception
Controls the compression-speed vs compression-density tradeoffs. The higher the quality, the slower the compression. Range is `_0 to `_11.
type lgwin
= [
| `_10 |
| `_11 |
| `_12 |
| `_13 |
| `_14 |
| `_15 |
| `_16 |
| `_17 |
| `_18 |
| `_19 |
| `_20 |
| `_21 |
| `_22 |
| `_23 |
| `_24 |
]
Base 2 logarithm of the sliding window size. Range is `_10 to `_24.
Base 2 logarithm of the maximum input block size. Range is `_16 to `_24. If set to `_0, the value will be set based on the quality.