Browse Source

Merge pull request #22 from rreminy/patch-1

Quality 22 and Window 5?
2.1
XieJJ99 4 years ago
committed by GitHub
parent
commit
2c5fdc8579
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      Brotli.NET/Brotli.CompressionProvider.Sample/Extension/BrotliOption.cs

8
Brotli.NET/Brotli.CompressionProvider.Sample/Extension/BrotliOption.cs

@ -18,13 +18,13 @@ namespace Brotli.CompressionProvider.Sample
Window = window;
}
/// <summary>
/// Set the compress LGWin(10~24)
/// Set the compress quality(0~11)
/// </summary>
public uint Window { get; set; } = 5;
public uint Quality { get; set; } = 5;
/// <summary>
/// Set the compress quality(0~11)
/// Set the compress LGWin(10~24)
/// </summary>
public uint Quality { get; set; } = 22;
public uint Window { get; set; } = 22;
BrotliOption IOptions<BrotliOption>.Value => this;
}
}
Loading…
Cancel
Save