namespace Brotli { public enum BrotliEncoderParameter : int { Mode = 0, /// /// Controls the compression-speed vs compression-density tradeoffs. The higher /// the quality, the slower the compression. Range is 0 to 11. /// Quality = 1, /// /// Base 2 logarithm of the sliding window size. Range is 10 to 24. /// LGWin = 2, /// /// 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. /// LGBlock = 3 }; }