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/armthumb.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 'src/liblzma/simple/armthumb.c')
-rw-r--r-- | src/liblzma/simple/armthumb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/simple/armthumb.c b/src/liblzma/simple/armthumb.c index c559368e..a8da334a 100644 --- a/src/liblzma/simple/armthumb.c +++ b/src/liblzma/simple/armthumb.c @@ -54,7 +54,7 @@ armthumb_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, bool is_encoder) { return lzma_simple_coder_init(next, allocator, filters, - &armthumb_code, 0, 4, 2, is_encoder, true); + &armthumb_code, 0, 4, 2, is_encoder); } |