]> wimlib.net Git - wimlib/commitdiff
Update references to LZMS compressor
authorEric Biggers <ebiggers3@gmail.com>
Thu, 2 Jan 2014 06:51:32 +0000 (00:51 -0600)
committerEric Biggers <ebiggers3@gmail.com>
Thu, 2 Jan 2014 06:51:32 +0000 (00:51 -0600)
README
doc/imagex-capture.1.in
src/lzms-compress.c

diff --git a/README b/README
index abfbeafb8c3fddfcaf233ef13bc8d560f236def4..3cb9e900fb194026c87e17ab5b5925f0515d2d74 100644 (file)
--- a/README
+++ b/README
@@ -61,15 +61,14 @@ commands and their syntax.  For additional documentation:
 
                                 COMPRESSION RATIO
 
 
                                 COMPRESSION RATIO
 
-wimlib (and wimlib-imagex) can create XPRESS, LZX, or LZMS compressed WIM archives.
-The following tables compare the compression ratio and performance for creating
-a compressed x86_64 Windows PE image.  Note: these timings were done on Windows
-so that the times would be fully comparable; however, wimlib may have even
-better performance on other operating systems such as Linux.  Timings were done
-with 2 CPUs available, both of which automatically are used by wimlib for both
-XPRESS and LZX, and also by imagex.exe but apparently only for LZX.  Results for
-LZMS compression are excluded because the creation of LZMS compressed WIM
-archives is not yet recommended.
+wimlib (and wimlib-imagex) can create XPRESS, LZX, or LZMS compressed WIM
+archives.  The following tables compare the compression ratio and performance
+for creating a compressed x86_64 Windows PE image with XPRESS and LZX.  Note:
+these timings were done on Windows so that the times would be fully comparable;
+however, wimlib may have even better performance on other operating systems such
+as Linux.  Timings were done with 2 CPUs available, both of which automatically
+are used by wimlib for both XPRESS and LZX, and also by imagex.exe but
+apparently only for LZX.
 
         Table 1. WIM size
 
 
         Table 1. WIM size
 
index deefd8528e5590d9184194b36fd8286ae03361a5..2c1022000e47fe412d36bbea1fd69bb26bf34c32 100644 (file)
@@ -191,12 +191,10 @@ You may also specify the actual names of the compression algorithms, "XPRESS"
 and "LZX", instead of "fast" and "maximum", respectively.
 .IP ""
 As of wimlib v1.6.0, a third compression type, "recovery" or "LZMS", is also
 and "LZX", instead of "fast" and "maximum", respectively.
 .IP ""
 As of wimlib v1.6.0, a third compression type, "recovery" or "LZMS", is also
-available.  Its use is not recommended because other than wimlib itself, as of
-Windows 8 it is only compatible with WIMGAPI and Windows Setup (not even ImageX
-or Dism).  Furthermore, wimlib's LZMS compressor is currently less well
-optimized than its LZX compressor.  However, LZMS is the compression algorithm
-used in packed resources created if the \fB--pack-streams\fR option is
-specified.
+available.  Its use is generally not recommended because other than wimlib
+itself, as of Windows 8 it is only compatible with WIMGAPI and Windows Setup
+(not even ImageX or Dism).  However, LZMS is the compression algorithm used in
+packed resources created if the \fB--pack-streams\fR option is specified.
 .TP
 \fB--compress-slow\fR
 Spend even more time compressing the data to achieve a very slightly better
 .TP
 \fB--compress-slow\fR
 Spend even more time compressing the data to achieve a very slightly better
index a18da5781842b12f892b51ef94eebbe9e7f433f1..e6ae39dead56b5f9533a2e6a9443d5ae881b1ddc 100644 (file)
@@ -24,8 +24,7 @@
 /* This a compressor for the LZMS compression format.  More details about this
  * format can be found in lzms-decompress.c.
  *
 /* This a compressor for the LZMS compression format.  More details about this
  * format can be found in lzms-decompress.c.
  *
- * This is currently an unsophisticated implementation that is fast but does not
- * attain the best compression ratios allowed by the format.
+ * NOTE: this compressor currently does not code any delta matches.
  */
 
 #ifdef HAVE_CONFIG_H
  */
 
 #ifdef HAVE_CONFIG_H