diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-01-18 20:02:52 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-01-18 20:02:52 +0200 |
commit | ab5feaf1fcc146ef9fd39360c53c290bec39524e (patch) | |
tree | b1521a6f12fd29f66c4c19edef88e0f4024e00ef /src/liblzma/lz/lz_encoder.h | |
parent | Don't add -g to CFLAGS when --enable-debug is specified. (diff) | |
download | xz-ab5feaf1fcc146ef9fd39360c53c290bec39524e.tar.xz |
Fix LZMA_SYNC_FLUSH handling in LZ and LZMA encoders.
That code is now almost completely in LZ coder, where
it can be shared with other LZ77-based algorithms in
future.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/lz/lz_encoder.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liblzma/lz/lz_encoder.h b/src/liblzma/lz/lz_encoder.h index 11d12722..78ac4a36 100644 --- a/src/liblzma/lz/lz_encoder.h +++ b/src/liblzma/lz/lz_encoder.h @@ -30,6 +30,7 @@ typedef struct lzma_lz_encoder_s lzma_lz_encoder; struct lzma_lz_encoder_s { enum { + SEQ_START, SEQ_RUN, SEQ_FLUSH, SEQ_FLUSH_END, |