diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-01-15 14:02:22 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-01-15 14:02:22 +0200 |
commit | e5728142a2048979f5c0c2149ce71ae952a092e1 (patch) | |
tree | 7ea154a3a970afecf25b5de654d9c915e9c0c84d /src/liblzma/common | |
parent | Added bsr.h. (diff) | |
download | xz-e5728142a2048979f5c0c2149ce71ae952a092e1.tar.xz |
Revised the fastpos code. It now uses the slightly faster
table-based version from LZMA SDK 4.57. This should be
fast on most systems.
A simpler and smaller alternative version is also provided.
On some CPUs this can be even a little faster than the
default table-based version (see comments in fastpos.h),
but on most systems the table-based code is faster.
Diffstat (limited to 'src/liblzma/common')
-rw-r--r-- | src/liblzma/common/init_encoder.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/liblzma/common/init_encoder.c b/src/liblzma/common/init_encoder.c index ec9fee6e..8a1644be 100644 --- a/src/liblzma/common/init_encoder.c +++ b/src/liblzma/common/init_encoder.c @@ -34,9 +34,6 @@ lzma_init_encoder(void) #if defined(HAVE_SMALL) && defined(HAVE_ENCODER) && defined(HAVE_FILTER_LZMA) lzma_rc_init(); #endif -#if defined(HAVE_ENCODER) && defined(HAVE_FILTER_LZMA) - lzma_fastpos_init(); -#endif already_initialized = true; return; |