aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/microlzma_encoder.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-12-30liblzma: Fix lzma_microlzma_encoder() return value.Jia Tan1-1/+2
Using return_if_error on lzma_lzma_lclppb_encode was improper because return_if_error is expecting an lzma_ret value, but lzma_lzma_lclppb_encode returns a boolean. This could result in lzma_microlzma_encoder, which would be misleading for applications.
2022-11-27liblzma: Pass the Filter ID to LZ encoder and decoder.Lasse Collin1-0/+1
This allows using two Filter IDs with the same initialization function and data structures.
2021-09-05liblzma: Rename EROFS LZMA to MicroLZMA.Lasse Collin1-0/+139
It still exists primarily for EROFS but MicroLZMA is a more generic name (that hopefully doesn't clash with something that already exists).