aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/raw_encoder.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2008-01-19 15:19:21 +0200
committerLasse Collin <lasse.collin@tukaani.org>2008-01-19 15:19:21 +0200
commit23c227a864a3b69f38c6a74306161d4e6918d1cc (patch)
tree49bfe24e15c1df35589635f8630a9e44dc7604a2 /src/liblzma/common/raw_encoder.c
parentAdded the debug directory and the first debug tool (diff)
downloadxz-23c227a864a3b69f38c6a74306161d4e6918d1cc.tar.xz
Revised the Delta filter implementation. The initialization
function is still shared between encoder and decoder, but the actual coding is in separate files for encoder and decoder. There are now separate functions for the actual delta calculation depending on if Delta is the last filter in the chain or not. If it is the last, the new code copies the data from input to output buffer and does the delta calculation at the same time. The old code first copied the data, then did the delta in the target buffer, which required reading through the data twice. Support for LZMA_SYNC_FLUSH was added to the Delta encoder. This doesn't change anything in the file format.
Diffstat (limited to '')
-rw-r--r--src/liblzma/common/raw_encoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/common/raw_encoder.c b/src/liblzma/common/raw_encoder.c
index c2cd0a51..cd1f34db 100644
--- a/src/liblzma/common/raw_encoder.c
+++ b/src/liblzma/common/raw_encoder.c
@@ -21,7 +21,7 @@
#include "copy_coder.h"
#include "simple_coder.h"
#include "subblock_encoder.h"
-#include "delta_coder.h"
+#include "delta_encoder.h"
#include "lzma_encoder.h"