Age | Commit message (Expand) | Author | Files | Lines |
2023-01-12 | liblzma: Silence warnings from clang -Wconditional-uninitialized. | Lasse Collin | 2 | -4/+6 |
2023-01-12 | Fix warnings from clang -Wdocumentation. | Lasse Collin | 2 | -6/+2 |
2023-01-10 | liblzma: CLMUL CRC64: Work around a bug in MSVC, second attempt. | Lasse Collin | 1 | -0/+18 |
2023-01-10 | Revert "liblzma: CLMUL CRC64: Workaround a bug in MSVC (VS2015-2022)." | Lasse Collin | 1 | -6/+0 |
2023-01-09 | liblzma: CLMUL CRC64: Workaround a bug in MSVC (VS2015-2022). | Lasse Collin | 1 | -0/+6 |
2023-01-05 | liblzma: Remove common.h include from common/index.h. | Jia Tan | 4 | -2/+10 |
2023-01-02 | Bump version and soname for 5.5.0alpha.larhzu/v5.5.0alpha | Lasse Collin | 2 | -3/+3 |
2023-01-02 | liblzma: Add NULL check to lzma_index_hash_append. | Jia Tan | 1 | -1/+1 |
2023-01-02 | liblzma: Replaced hardcoded 0x0 index indicator byte with macro | Jia Tan | 6 | -5/+9 |
2022-12-30 | liblzma: Update documentation for lzma_filter_encoder. | Jia Tan | 1 | -2/+5 |
2022-12-30 | liblzma: Fix lzma_microlzma_encoder() return value. | Jia Tan | 1 | -1/+2 |
2022-12-16 | liblzma: Update authors list in arm64.c. | Lasse Collin | 1 | -0/+1 |
2022-12-13 | Bump version to 5.4.0 and soname to 5.4.0.larhzu/v5.4.0 | Lasse Collin | 4 | -6/+6 |
2022-12-11 | liblzma: Change LZMA_FILTER_ARM64 to the official Filter ID 0x0A. | Lasse Collin | 1 | -5/+1 |
2022-12-08 | liblzma: Check for unexpected NULL pointers in block_header_decode(). | Lasse Collin | 1 | -0/+4 |
2022-12-01 | Bump version number for 5.3.5beta.larhzu/v5.3.5beta | Lasse Collin | 3 | -12/+12 |
2022-12-01 | liblzma: Use __has_attribute(__symver__) to fix Clang detection. | Lasse Collin | 1 | -1/+14 |
2022-12-01 | liblzma: Omit zero-skipping from ARM64 filter. | Lasse Collin | 2 | -59/+24 |
2022-12-01 | liblzma: Don't be over-specific in lzma_str_to_filters API doc. | Lasse Collin | 1 | -2/+1 |
2022-12-01 | liblzma: Silence unused variable warning when BCJ filters are disabled. | Lasse Collin | 1 | -0/+15 |
2022-11-29 | liblzma: Improve documentation for string to filter functions. | Jia Tan | 1 | -8/+9 |
2022-11-29 | liblzma: Two fixes to lzma_str_list_filters() API docs. | Lasse Collin | 1 | -3/+3 |
2022-11-28 | liblzma: Add lzma_str_to_filters, _from_filters, and _list_filters. | Lasse Collin | 5 | -0/+1567 |
2022-11-28 | liblzma: Make lzma_validate_chain() available outside filter_common.c. | Lasse Collin | 2 | -4/+7 |
2022-11-28 | liblzma: Remove lzma_lz_decoder_uncompressed() as it's now unused. | Lasse Collin | 2 | -17/+0 |
2022-11-28 | liblzma: Use LZMA1EXT feature in lzma_microlzma_decoder(). | Lasse Collin | 1 | -7/+8 |
2022-11-28 | liblzma: Use LZMA1EXT feature in lzma_alone_decoder(). | Lasse Collin | 1 | -5/+13 |
2022-11-27 | liblzma: Add LZMA_FILTER_LZMA1EXT to support LZMA1 without end marker. | Lasse Collin | 9 | -15/+204 |
2022-11-27 | liblzma: Avoid unneeded use of void pointer in LZMA decoder. | Lasse Collin | 2 | -3/+2 |
2022-11-27 | liblzma: Pass the Filter ID to LZ encoder and decoder. | Lasse Collin | 14 | -12/+26 |
2022-11-27 | liblzma: Remove two FIXME comments. | Lasse Collin | 1 | -2/+2 |
2022-11-26 | liblzma: Use lzma_filters_free() in more places. | Lasse Collin | 3 | -38/+8 |
2022-11-25 | liblzma: Omit simple coder init functions if they are disabled. | Lasse Collin | 6 | -0/+24 |
2022-11-24 | liblzma: Allow nice_len 2 and 3 even if match finder requires 3 or 4. | Lasse Collin | 3 | -8/+26 |
2022-11-24 | liblzma: Add lzma_filters_update() support to the multi-threaded encoder. | Lasse Collin | 2 | -23/+109 |
2022-11-24 | Build: Don't put GNU/Linux-specific symbol versions into static liblzma. | Lasse Collin | 1 | -0/+12 |
2022-11-24 | liblzma: Refactor to use lzma_filters_free(). | Lasse Collin | 2 | -21/+6 |
2022-11-24 | liblzma: Fix another invalid free() after memory allocation failure. | Lasse Collin | 1 | -0/+4 |
2022-11-24 | liblzma: Add support for LZMA_SYNC_FLUSH in the Block encoder. | Jia Tan | 1 | -0/+1 |
2022-11-24 | liblzma: Add new API function lzma_filters_free(). | Lasse Collin | 4 | -0/+49 |
2022-11-23 | liblzma: Add lzma_attr_warn_unused_result to lzma_filters_copy(). | Lasse Collin | 1 | -1/+2 |
2022-11-23 | liblzma: Fix invalid free() after memory allocation failure. | Lasse Collin | 1 | -8/+31 |
2022-11-22 | liblzma: Fix language in a comment. | Lasse Collin | 1 | -1/+1 |
2022-11-22 | liblzma: Fix infinite loop in LZMA encoder init with dict_size >= 2 GiB. | Lasse Collin | 1 | -4/+15 |
2022-11-21 | liblzma: Fix two Doxygen commands in the API headers. | Lasse Collin | 2 | -2/+2 |
2022-11-15 | Bump version number for 5.3.4alpha.larhzu/v5.3.4alpha | Lasse Collin | 3 | -3/+3 |
2022-11-14 | Revert "liblzma: Simple/BCJ filters: Allow disabling generic BCJ options." | Lasse Collin | 9 | -11/+10 |
2022-11-14 | Replace the experimental ARM64 filter with a new experimental version. | Lasse Collin | 7 | -237/+136 |
2022-11-14 | liblzma: Add fast CRC64 for 32/64-bit x86 using SSSE3 + SSE4.1 + CLMUL. | Lasse Collin | 2 | -9/+461 |
2022-11-14 | liblzma: Use __attribute__((__constructor__)) if available. | Lasse Collin | 3 | -1/+13 |
2022-11-11 | liblzma: Fix building with Intel ICC (the classic compiler). | Lasse Collin | 1 | -1/+1 |
2022-11-11 | liblzma: Fix incorrect #ifdef for x86 SSE2 support. | Lasse Collin | 1 | -2/+1 |
2022-11-09 | liblzma: Add .lz support to lzma_auto_decoder(). | Lasse Collin | 4 | -11/+47 |
2022-11-09 | liblzma: Add .lz (lzip) decompression support (format versions 0 and 1). | Lasse Collin | 5 | -2/+480 |
2022-11-09 | liblzma: Add the missing Makefile.inc change for --disable-microlzma. | Lasse Collin | 1 | -2/+10 |
2022-11-08 | liblzma: Update API docs about decoder flags. | Lasse Collin | 1 | -4/+17 |
2022-11-08 | liblzma: Use the return_if_error() macro in alone_decoder.c. | Lasse Collin | 1 | -4/+2 |
2022-11-08 | liblzma: Fix a comment in auto_decoder.c. | Lasse Collin | 1 | -2/+2 |
2022-11-07 | liblzma: Include cached memory in reported memusage in threaded decoder. | Lasse Collin | 1 | -3/+19 |
2022-10-31 | liblzma: Silence -Wconversion warning from crc64_fast.c. | Lasse Collin | 1 | -2/+3 |
2022-10-24 | liblzma: Threaded decoder: Stop the worker threads on errors. | Lasse Collin | 1 | -7/+26 |
2022-10-05 | liblzma: Fix a compilation issue when encoders are disabled. | Jia Tan | 1 | -3/+4 |
2022-10-05 | tuklib_integer: Add 64-bit endianness-converting reads and writes. | Lasse Collin | 1 | -6/+3 |
2022-09-30 | liblzma: Add API doc note about the .xz decoder LZMA_MEMLIMIT_ERROR bug. | Lasse Collin | 1 | -0/+11 |
2022-09-28 | liblzma: Add dest and src NULL checks to lzma_index_cat. | Jia Tan | 1 | -0/+3 |
2022-09-28 | liblzma: Fix copying of check type statistics in lzma_index_cat(). | Jia Tan | 1 | -1/+6 |
2022-09-28 | liblzma: Stream decoder: Fix restarting after LZMA_MEMLIMIT_ERROR. | Lasse Collin | 1 | -3/+13 |
2022-09-28 | liblzma: Stream decoder: Fix comments. | Lasse Collin | 1 | -7/+5 |
2022-09-20 | liblzma: ARM64: Add comments. | Lasse Collin | 1 | -0/+13 |
2022-09-20 | liblzma: ARM64: Fix wrong comment in API doc. | Lasse Collin | 1 | -2/+2 |
2022-09-19 | liblzma: Add experimental ARM64 BCJ filter with a temporary Filter ID. | Lasse Collin | 9 | -1/+308 |
2022-09-17 | liblzma: Simple/BCJ filters: Allow disabling generic BCJ options. | Lasse Collin | 8 | -9/+10 |
2022-09-09 | liblzma: lzma_filters_copy: Keep dest[] unmodified if an error occurs. | Lasse Collin | 2 | -7/+15 |
2022-09-08 | liblzma: lzma_index_append: Add missing integer overflow check. | Jia Tan | 1 | -0/+4 |
2022-09-08 | liblzma: Vaccinate against an ill patch from RHEL/CentOS 7. | Lasse Collin | 9 | -14/+360 |
2022-08-22 | Bump version number for 5.3.3alpha.larhzu/v5.3.3alpha | Lasse Collin | 2 | -2/+2 |
2022-08-18 | liblzma: Threaded decoder: Improve LZMA_FAIL_FAST when LZMA_FINISH is used. | Lasse Collin | 2 | -0/+48 |
2022-07-25 | liblzma: Refactor lzma_mf_is_supported() to use a switch-statement. | Jia Tan | 1 | -18/+14 |
2022-07-14 | liblzma: Rename a variable and improve a comment. | Lasse Collin | 1 | -4/+9 |
2022-07-13 | liblzma: Add optional autodetection of LZMA end marker. | Lasse Collin | 6 | -37/+86 |
2022-05-23 | liblzma: Silence a warning. | Lasse Collin | 1 | -1/+1 |
2022-04-06 | liblzma: Threaded decoder: Improve setting of pending_error. | Lasse Collin | 1 | -16/+35 |
2022-04-06 | liblzma: Add a new flag LZMA_FAIL_FAST for threaded decoder. | Lasse Collin | 3 | -26/+56 |
2022-04-05 | liblzma: Threaded decoder: Always wait for output if LZMA_FINISH is used. | Lasse Collin | 1 | -2/+24 |
2022-04-02 | liblzma: Threaded decoder: Support zpipe.c-style decoding loop. | Lasse Collin | 1 | -10/+67 |
2022-03-26 | liblzma: Fix a deadlock in threaded decoder. | Lasse Collin | 1 | -19/+52 |
2022-03-23 | liblzma: Threaded decoder: Don't stop threads on LZMA_TIMED_OUT. | Lasse Collin | 1 | -1/+1 |
2022-03-07 | liblzma: Add threaded .xz decompressor. | Lasse Collin | 5 | -7/+1907 |
2022-03-06 | liblzma: Fix docs: lzma_block_decoder() cannot return LZMA_UNSUPPORTED_CHECK. | Lasse Collin | 1 | -3/+0 |
2022-03-06 | liblzma: Add new output queue (lzma_outq) features. | Lasse Collin | 2 | -8/+79 |
2022-03-06 | liblzma: Index hash: Change return value type of hash_append() to void. | Lasse Collin | 1 | -6/+5 |
2022-02-22 | liblzma: Minor addition to lzma_vli_size() API doc. | Lasse Collin | 1 | -0/+2 |
2022-02-22 | liblzma: Check the return value of lzma_index_append() in threaded encoder. | Lasse Collin | 1 | -2/+5 |
2022-02-22 | liblzma: Use non-executable stack on FreeBSD as on Linux | Ed Maste | 2 | -4/+4 |
2022-02-20 | liblzma: Make Block decoder catch certain types of errors better. | Lasse Collin | 1 | -25/+54 |
2022-02-07 | liblzma: Add NULL checks to LZMA and LZMA2 properties encoders. | jiat75 | 2 | -0/+6 |
2022-02-06 | liblzma: Fix uint64_t vs. size_t confusion. | Lasse Collin | 1 | -4/+7 |
2021-10-28 | Bump the version number for 5.3.2alpha.larhzu/v5.3.2alpha | Lasse Collin | 2 | -2/+2 |
2021-09-17 | liblzma: Fix liblzma.map for the lzma_microlzma_* symbols. | Lasse Collin | 1 | -2/+2 |
2021-09-09 | liblzma: Use _MSVC_LANG to detect when "noexcept" can be used with MSVC. | Lasse Collin | 1 | -1/+2 |
2021-09-05 | liblzma: Rename EROFS LZMA to MicroLZMA. | Lasse Collin | 4 | -47/+52 |
2021-01-29 | liblzma: Fix unitialized variable. | Lasse Collin | 1 | -0/+1 |
2021-01-24 | liblzma: Fix a wrong comment in stream_encoder_mt.c. | Lasse Collin | 1 | -3/+7 |
2021-01-17 | liblzma: In EROFS LZMA decoder, verify that comp_size matches at the end. | Lasse Collin | 1 | -1/+6 |
2021-01-17 | liblzma: Make EROFS LZMA decoder work when exact uncomp_size isn't known. | Lasse Collin | 2 | -12/+91 |
2021-01-14 | liblzma: Fix missing normalization in rc_encode_dummy(). | Lasse Collin | 1 | -1/+6 |
2021-01-14 | liblzma: Add EROFS LZMA encoder and decoder. | Lasse Collin | 5 | -0/+367 |
2021-01-14 | liblzma: Add rough support for output-size-limited encoding in LZMA1. | Lasse Collin | 6 | -35/+246 |
2021-01-09 | liblzma: Make lzma_outq usable for threaded decompression too. | Lasse Collin | 3 | -157/+301 |
2020-12-23 | liblzma: Enable Intel CET in x86 CRC assembly codes | H.J. Lu | 2 | -0/+18 |
2020-03-23 | Typo fixes from fossies.org. | Lasse Collin | 3 | -3/+3 |
2020-03-02 | liblzma: Fix a comment and RC_SYMBOLS_MAX. | Lasse Collin | 1 | -2/+2 |
2020-02-24 | liblzma: Remove unneeded <sys/types.h> from fastpos_tablegen.c. | Lasse Collin | 1 | -1/+0 |
2020-02-22 | Use defined(__GNUC__) before __GNUC__ in preprocessor lines. | Lasse Collin | 1 | -2/+3 |
2020-02-21 | liblzma: Add more uses of lzma_memcmplen() to the normal mode of LZMA. | Lasse Collin | 1 | -6/+10 |
2019-12-31 | Rename unaligned_read32ne to read32ne, and similarly for the others. | Lasse Collin | 12 | -23/+19 |
2019-12-31 | Rename read32ne to aligned_read32ne, and similarly for the others. | Lasse Collin | 2 | -4/+4 |
2019-06-25 | liblzma: Fix a buggy comment. | Lasse Collin | 1 | -1/+1 |
2019-06-24 | liblzma: Add a comment. | Lasse Collin | 1 | -1/+1 |
2019-06-24 | liblzma: Silence clang -Wmissing-variable-declarations. | Lasse Collin | 2 | -0/+6 |
2019-06-24 | Add LZMA_RET_INTERNAL1..8 to lzma_ret and use one for LZMA_TIMED_OUT. | Lasse Collin | 3 | -7/+17 |
2019-06-24 | liblzma: Remove incorrect uses of lzma_attribute((__unused__)). | Lasse Collin | 3 | -6/+3 |
2019-06-23 | liblzma: Fix warnings from -Wsign-conversion. | Lasse Collin | 11 | -29/+31 |
2019-06-03 | liblzma: Fix comments. | Lasse Collin | 6 | -7/+7 |
2019-06-02 | liblzma: Fix one more unaligned read to use unaligned_read16ne(). | Lasse Collin | 1 | -1/+1 |
2019-06-01 | liblzma: memcmplen: Use ctz32() from tuklib_integer.h. | Lasse Collin | 1 | -9/+1 |
2019-06-01 | liblzma: Use unaligned_readXXne functions instead of type punning. | Lasse Collin | 2 | -7/+7 |
2019-05-13 | liblzma: Avoid memcpy(NULL, foo, 0) because it is undefined behavior. | Lasse Collin | 3 | -5/+23 |
2019-05-11 | spelling | Antoine Cœur | 10 | -12/+12 |
2018-10-26 | liblzma: Don't verify header CRC32s if building for fuzz testing. | Lasse Collin | 4 | -5/+20 |
2018-07-27 | liblzma: Remove an always-true condition from lzma_index_cat(). | Lasse Collin | 1 | -2/+2 |
2018-05-19 | liblzma: Improve lzma_properties_decode() API documentation. | Lasse Collin | 1 | -3/+4 |
2018-04-29 | Bump the version number to 5.3.1alpha.larhzu/v5.3.1alpha | Lasse Collin | 2 | -2/+2 |
2018-02-06 | nothrow: use noexcept for C++11 and newer | Ben Boeckel | 1 | -1/+5 |
2018-02-06 | liblzma: Remove incorrect #ifdef from range_common.h. | Lasse Collin | 1 | -3/+1 |
2017-08-14 | Fix or hide warnings from GCC 7's -Wimplicit-fallthrough. | Lasse Collin | 1 | -0/+6 |
2017-04-24 | liblzma: Add lzma_file_info_decoder(). | Lasse Collin | 4 | -1/+928 |
2017-04-21 | liblzma: Rename LZMA_SEEK to LZMA_SEEK_NEEDED and seek_in to seek_pos. | Lasse Collin | 2 | -10/+10 |
2017-03-30 | liblzma: Make lzma_index_decoder_init() visible to other liblzma funcs. | Lasse Collin | 3 | -5/+30 |
2017-03-30 | liblzma: Add generic support for input seeking (LZMA_SEEK). | Lasse Collin | 2 | -2/+41 |
2017-03-30 | liblzma: Fix lzma_memlimit_set(strm, 0). | Lasse Collin | 3 | -3/+13 |
2017-03-30 | liblzma: Similar memlimit fix for stream_, alone_, and auto_decoder. | Lasse Collin | 4 | -16/+20 |
2017-03-30 | liblzma: Fix handling of memlimit == 0 in lzma_index_decoder(). | Lasse Collin | 2 | -9/+13 |
2016-11-21 | liblzma: Avoid multiple definitions of lzma_coder structures. | Lasse Collin | 35 | -423/+532 |
2016-03-13 | liblzma: Disable external SHA-256 by default. | Lasse Collin | 1 | -10/+6 |
2015-11-04 | liblzma: Make Valgrind happier with optimized (gcc -O2) liblzma. | Lasse Collin | 1 | -0/+4 |
2015-11-03 | liblzma: Rename lzma_presets.c back to lzma_encoder_presets.c. | Lasse Collin | 2 | -2/+2 |
2015-11-03 | Build: Build LZMA1/2 presets also when only decoder is wanted. | Lasse Collin | 2 | -2/+7 |
2015-11-03 | Build: Don't omit lzma_cputhreads() unless using --disable-threads. | Lasse Collin | 1 | -1/+4 |
2015-11-02 | liblzma: Fix a build failure related to external SHA-256 support. | Lasse Collin | 1 | -9/+23 |
2015-10-12 | liblzma: Fix lzma_index_dup() for empty Streams. | Lasse Collin | 1 | -5/+6 |
2015-10-12 | liblzma: Add a note to index.c for those using static analyzers. | Lasse Collin | 1 | -0/+3 |
2015-10-12 | liblzma: Fix a memory leak in error path of lzma_index_dup(). | Lasse Collin | 1 | -9/+9 |
2015-07-12 | liblzma: A MSVC-specific hack isn't needed with MSVC 2013 and newer. | Lasse Collin | 1 | -5/+13 |
2015-03-30 | Bump version to 5.3.0alpha and soname to 5.3.99. | Lasse Collin | 2 | -4/+4 |
2015-03-07 | liblzma: Silence more uint32_t vs. size_t warnings. | Lasse Collin | 2 | -2/+2 |
2015-03-07 | liblzma: Fix a warning in index.c. | Lasse Collin | 1 | -1/+3 |
2015-02-26 | Bump version and soname for 5.2.1.larhzu/v5.2.1 | Lasse Collin | 2 | -2/+2 |
2015-02-21 | liblzma: Fix a compression-ratio regression in LZMA1/2 in fast mode. | Lasse Collin | 1 | -1/+1 |
2015-01-26 | liblzma: Set LZMA_MEMCMPLEN_EXTRA depending on the compare method. | Lasse Collin | 1 | -5/+10 |
2015-01-26 | liblzma: Silence harmless Valgrind errors. | Lasse Collin | 1 | -0/+6 |
2014-12-21 | Bump version and soname for 5.2.0. | Lasse Collin | 3 | -5/+5 |
2014-12-02 | liblzma: Document how lzma_mt.block_size affects memory usage. | Lasse Collin | 1 | -0/+4 |
2014-11-26 | Remove LZMA_UNSTABLE macro. | Lasse Collin | 2 | -6/+0 |
2014-11-26 | liblzma: Update lzma_stream_encoder_mt() API docs. | Lasse Collin | 1 | -2/+3 |
2014-11-25 | liblzma: Verify the filter chain in threaded encoder initialization. | Lasse Collin | 1 | -3/+6 |
2014-11-10 | liblzma: Fix lzma_mt.preset in lzma_stream_encoder_mt_memusage(). | Lasse Collin | 1 | -2/+1 |
2014-10-29 | Build: Prepare to support Automake's subdir-objects. | Lasse Collin | 1 | -2/+2 |
2014-09-20 | liblzma: Fix a portability problem in Makefile.am. | Lasse Collin | 1 | -1/+1 |
2014-09-14 | Bump the version number to 5.1.4beta.larhzu/v5.1.4beta | Lasse Collin | 2 | -3/+3 |
2014-08-05 | liblzma: Add support for LZMA_IGNORE_CHECK. | Lasse Collin | 3 | -2/+37 |
2014-08-05 | liblzma: Add support for lzma_block.ignore_check. | Lasse Collin | 7 | -20/+68 |
2014-08-04 | liblzma: Use lzma_memcmplen() in the BT3 match finder. | Lasse Collin | 1 | -3/+2 |
2014-08-03 | liblzma: SHA-256: Optimize the Maj macro slightly. | Lasse Collin | 1 | -1/+1 |
2014-08-03 | liblzma: SHA-256: Optimize the way rotations are done. | Lasse Collin | 1 | -6/+11 |
2014-08-03 | liblzma: SHA-256: Remove the GCC #pragma that became unneeded. | Lasse Collin | 1 | -5/+0 |
2014-08-03 | liblzma: SHA-256: Unroll a little more. | Lasse Collin | 1 | -9/+16 |
2014-08-03 | liblzma: SHA-256: Do the byteswapping without a temporary buffer. | Lasse Collin | 1 | -12/+1 |
2014-07-25 | liblzma: Use lzma_memcmplen() in normal mode of LZMA. | Lasse Collin | 1 | -15/+5 |
2014-07-25 | liblzma: Simplify LZMA fast mode code by using memcmp(). | Lasse Collin | 1 | -10/+1 |
2014-07-25 | liblzma: Use lzma_memcmplen() in fast mode of LZMA. | Lasse Collin | 1 | -3/+3 |
2014-07-25 | liblzma: Use lzma_memcmplen() in the match finders. | Lasse Collin | 2 | -23/+23 |
2014-07-25 | liblzma: Add lzma_memcmplen() for fast memory comparison. | Lasse Collin | 2 | -0/+171 |
2014-06-18 | liblzma: Add lzma_cputhreads(). | Lasse Collin | 5 | -1/+45 |
2014-05-25 | liblzma: Use lzma_alloc_zero() in LZ encoder initialization. | Lasse Collin | 3 | -55/+62 |
2014-05-25 | liblzma: Add the internal function lzma_alloc_zero(). | Lasse Collin | 2 | -0/+27 |
2014-05-04 | liblzma: Rename the private API header lzma/lzma.h to lzma/lzma12.h. | Lasse Collin | 3 | -3/+3 |
2014-01-29 | liblzma: Fix lzma_mt.preset not working with lzma_stream_encoder_mt(). | Lasse Collin | 1 | -2/+2 |
2014-01-20 | liblzma: Fix typo in a comment. | Lasse Collin | 1 | -1/+1 |
2014-01-12 | liblzma: Avoid C99 compound literal arrays. | Lasse Collin | 1 | -3/+5 |
2014-01-12 | liblzma: Remove a useless C99ism from sha256.c. | Lasse Collin | 1 | -1/+1 |
2014-01-12 | Fix typos in comments. | Lasse Collin | 1 | -1/+1 |
2013-11-26 | liblzma: Document the need for block->check for lzma_block_header_decode(). | Lasse Collin | 1 | -0/+3 |
2013-10-26 | Bump the version number to 5.1.3alpha.larhzu/v5.1.3alpha | Lasse Collin | 2 | -2/+2 |
2013-10-02 | liblzma: Support LZMA_FULL_FLUSH and _BARRIER in threaded encoder. | Lasse Collin | 1 | -16/+39 |
2013-10-02 | liblzma: Add LZMA_FULL_BARRIER support to single-threaded encoder. | Lasse Collin | 4 | -11/+54 |
2013-09-17 | liblzma: Add block_buffer_encoder.h into Makefile.inc. | Lasse Collin | 1 | -0/+1 |
2013-09-17 | Add native threading support on Windows. | Lasse Collin | 1 | -47/+36 |
2013-09-09 | Build: Create liblzma.pc in a src/liblzma/Makefile.am. | Lasse Collin | 1 | -0/+20 |
2013-06-23 | liblzma: Avoid a warning about a shadowed variable. | Lasse Collin | 1 | -2/+2 |