Browse Source

Quality 22 and Window 5?

Swap!
pull/22/head
AzureGem 4 years ago
committed by GitHub
parent
commit
52841ecec7
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