]> source.dussan.org Git - tigervnc.git/commitdiff
Implement recommendations from low-level performance study (undocument compress level...
authorDRC <dcommander@users.sourceforge.net>
Wed, 17 Aug 2011 02:30:34 +0000 (02:30 +0000)
committerDRC <dcommander@users.sourceforge.net>
Wed, 17 Aug 2011 02:30:34 +0000 (02:30 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4632 3789f03b-4d11-0410-bbf8-ca57d06f2519

vncviewer/OptionsDialog.cxx
vncviewer/parameters.cxx

index 73ff551cc016c41969e2b548c796fd0f188cb061..20465b552e5a98a76384a6785cff89a4fb54e7cc 100644 (file)
@@ -511,7 +511,7 @@ void OptionsDialog::createCompressionPage(int tx, int ty, int tw, int th)
 
   compressionInput = new Fl_Int_Input(tx + INDENT, ty,
                                       INPUT_HEIGHT, INPUT_HEIGHT,
-                                      _("level (1=fast, 9=best)"));
+                                      _("level (1=fast, 6=best [4-6 are rarely useful])"));
   compressionInput->align(FL_ALIGN_RIGHT);
   ty += INPUT_HEIGHT + INNER_MARGIN;
 
index c4c8fc74a3422019e1e4b670d712a2c190b01142..f88aa5cdfc9254b3a1750caa698e62fed8fafe7c 100644 (file)
@@ -51,8 +51,8 @@ BoolParameter customCompressLevel("CustomCompressLevel",
                                   "Use custom compression level. "
                                   "Default if CompressLevel is specified.", false);
 IntParameter compressLevel("CompressLevel",
-                           "Use specified compression level 0 = Low, 9 = High",
-                           6);
+                           "Use specified compression level 0 = Low, 6 = High",
+                           1);
 BoolParameter noJpeg("NoJPEG",
                      "Disable lossy JPEG compression in Tight encoding.",
                      false);