aboutsummaryrefslogtreecommitdiff
path: root/c/enc/quality.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/enc/quality.h')
-rw-r--r--c/enc/quality.h20
1 files changed, 6 insertions, 14 deletions
diff --git a/c/enc/quality.h b/c/enc/quality.h
index 4fe649e..ffdfd72 100644
--- a/c/enc/quality.h
+++ b/c/enc/quality.h
@@ -128,16 +128,16 @@ static BROTLI_INLINE size_t LiteralSpreeLengthForSparseSearch(
- q04: h04 (longest_match_quickly), b17, l5
- q04: h54 (longest_match_quickly), b20, l7 | for large files
- - q05: h58 (longest_match_simd ), b14, l4
- - q05: h68 (longest_match64_simd ), b15, l5 | for large files
+ - q05: h05 (longest_match ), b14, l4
+ - q05: h06 (longest_match64 ), b15, l5 | for large files
- q05: h40 (forgetful_chain ), b15, l4 | for small window
- - q06: h58 (longest_match_simd ), b14, l4
- - q06: h68 (longest_match64_simd ), b15, l5 | for large files
+ - q06: h05 (longest_match ), b14, l4
+ - q06: h06 (longest_match64 ), b15, l5 | for large files
- q06: h40 (forgetful_chain ), b15, l4 | for small window
- - q07: h58 (longest_match_simd ), b15, l4
- - q07: h68 (longest_match64_simd ), b15, l5 | for large files
+ - q07: h05 (longest_match ), b15, l4
+ - q07: h06 (longest_match64 ), b15, l5 | for large files
- q07: h41 (forgetful_chain ), b15, l4 | for small window
- q08: h05 (longest_match ), b15, l4
@@ -165,11 +165,7 @@ static BROTLI_INLINE void ChooseHasher(const BrotliEncoderParams* params,
} else if (params->lgwin <= 16) {
hparams->type = params->quality < 7 ? 40 : params->quality < 9 ? 41 : 42;
} else if (params->size_hint >= (1 << 20) && params->lgwin >= 19) {
-#if defined(BROTLI_MAX_SIMD_QUALITY)
- hparams->type = params->quality <= BROTLI_MAX_SIMD_QUALITY ? 68 : 6;
-#else
hparams->type = 6;
-#endif
hparams->block_bits = params->quality - 1;
hparams->bucket_bits = 15;
hparams->num_last_distances_to_check =
@@ -177,11 +173,7 @@ static BROTLI_INLINE void ChooseHasher(const BrotliEncoderParams* params,
} else {
/* TODO(eustas): often previous setting (H6) is faster and denser; consider
adding an option to use it. */
-#if defined(BROTLI_MAX_SIMD_QUALITY)
- hparams->type = params->quality <= BROTLI_MAX_SIMD_QUALITY ? 58 : 5;
-#else
hparams->type = 5;
-#endif
hparams->block_bits = params->quality - 1;
hparams->bucket_bits = params->quality < 7 ? 14 : 15;
hparams->num_last_distances_to_check =