diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-09-17 22:42:18 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-09-17 22:42:18 +0300 |
commit | 177bdc922cb17bd0fd831ab8139dfae912a5c2b8 (patch) | |
tree | 9112ef3854225905b3d91db23195859d6b42492b /src/liblzma/simple/simple_private.h | |
parent | Tests: Add a test file for lzma_index_append() integer overflow bug. (diff) | |
download | xz-177bdc922cb17bd0fd831ab8139dfae912a5c2b8.tar.xz |
liblzma: Simple/BCJ filters: Allow disabling generic BCJ options.
This will be needed for the ARM64 BCJ filter as it will use
its own options struct.
Diffstat (limited to 'src/liblzma/simple/simple_private.h')
-rw-r--r-- | src/liblzma/simple/simple_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/simple/simple_private.h b/src/liblzma/simple/simple_private.h index 9d2c0fdd..108f9ced 100644 --- a/src/liblzma/simple/simple_private.h +++ b/src/liblzma/simple/simple_private.h @@ -69,6 +69,6 @@ extern lzma_ret lzma_simple_coder_init(lzma_next_coder *next, size_t (*filter)(void *simple, uint32_t now_pos, bool is_encoder, uint8_t *buffer, size_t size), size_t simple_size, size_t unfiltered_max, - uint32_t alignment, bool is_encoder); + uint32_t alignment, bool is_encoder, bool is_generic_bcj); #endif |