diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-11-14 23:19:57 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-11-14 23:19:57 +0200 |
commit | b56bc8251d2736224af6bdaaae734ceb8926a879 (patch) | |
tree | 439e2a500ea7f635acfdd0088df307c1a9d9d185 /src/liblzma/simple/x86.c | |
parent | Replace the experimental ARM64 filter with a new experimental version. (diff) | |
download | xz-b56bc8251d2736224af6bdaaae734ceb8926a879.tar.xz |
Revert "liblzma: Simple/BCJ filters: Allow disabling generic BCJ options."
This reverts commit 177bdc922cb17bd0fd831ab8139dfae912a5c2b8
and also does equivalent change to arm64.c.
Now that ARM64 filter will use lzma_options_bcj, this change
is not needed anymore.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/simple/x86.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/liblzma/simple/x86.c b/src/liblzma/simple/x86.c index 0e682922..0e78909c 100644 --- a/src/liblzma/simple/x86.c +++ b/src/liblzma/simple/x86.c @@ -128,8 +128,7 @@ x86_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, bool is_encoder) { const lzma_ret ret = lzma_simple_coder_init(next, allocator, filters, - &x86_code, sizeof(lzma_simple_x86), 5, 1, is_encoder, - true); + &x86_code, sizeof(lzma_simple_x86), 5, 1, is_encoder); if (ret == LZMA_OK) { lzma_simple_coder *coder = next->coder; |