diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-09-19 19:34:56 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-09-19 20:23:46 +0300 |
commit | ecb966de308c255bb4735a7307ef9901c643a9de (patch) | |
tree | 2f590bc34e34fdc8388cbe106fff4d281d88f409 /src/liblzma/simple/simple_encoder.h | |
parent | liblzma: Simple/BCJ filters: Allow disabling generic BCJ options. (diff) | |
download | xz-ecb966de308c255bb4735a7307ef9901c643a9de.tar.xz |
liblzma: Add experimental ARM64 BCJ filter with a temporary Filter ID.
That is, the Filter ID will be changed once the design is final.
The current version will be removed. So files created with the
tempoary Filter ID won't be supported in the future.
Diffstat (limited to 'src/liblzma/simple/simple_encoder.h')
-rw-r--r-- | src/liblzma/simple/simple_encoder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/liblzma/simple/simple_encoder.h b/src/liblzma/simple/simple_encoder.h index 1cee4823..10828f8f 100644 --- a/src/liblzma/simple/simple_encoder.h +++ b/src/liblzma/simple/simple_encoder.h @@ -20,4 +20,6 @@ extern lzma_ret lzma_simple_props_size(uint32_t *size, const void *options); extern lzma_ret lzma_simple_props_encode(const void *options, uint8_t *out); +extern lzma_ret lzma_arm64_props_encode(const void *options, uint8_t *out); + #endif |