diff options
author | Pierre Ossman <ossman@cendio.se> | 2009-03-12 13:03:22 +0000 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2009-03-12 13:03:22 +0000 |
commit | 7dfa22e1ce9b678f4bae0e6522933bcb43a6f80e (patch) | |
tree | 0cde56cbf4282fd80afaf3c6a894ca9fb8a35495 /win/vncviewer | |
parent | 78b2359dcad4bc07ffee55353eca14092e2fba8c (diff) | |
download | tigervnc-7dfa22e1ce9b678f4bae0e6522933bcb43a6f80e.tar.gz tigervnc-7dfa22e1ce9b678f4bae0e6522933bcb43a6f80e.zip |
Change encoding and quality defaults to what auto mode would choose.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3663 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win/vncviewer')
-rw-r--r-- | win/vncviewer/CConnOptions.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/vncviewer/CConnOptions.cxx b/win/vncviewer/CConnOptions.cxx index 7bf36eb7..cb561930 100644 --- a/win/vncviewer/CConnOptions.cxx +++ b/win/vncviewer/CConnOptions.cxx @@ -115,7 +115,7 @@ static BoolParameter noJpeg("NoJPEG", static IntParameter qualityLevel("QualityLevel", "JPEG quality level. " "0 = Low, 9 = High", - 6); + 8); static BoolParameter autoScaling("AutoScaling", "Auto rescale local copy of the remote desktop to the client window.", @@ -130,7 +130,7 @@ useDesktopResize(::useDesktopResize), fullScreen(::fullScreen), fullColour(::fullColour), lowColourLevel(::lowColourLevel), -preferredEncoding(encodingZRLE), +preferredEncoding(encodingTight), autoSelect(::autoSelect), shared(::sharedConnection), sendPtrEvents(::sendPtrEvents), @@ -154,7 +154,7 @@ qualityLevel(::qualityLevel), passwordFile(::passwordFile.getData()) { if (autoSelect) { - preferredEncoding = encodingZRLE; + preferredEncoding = encodingTight; } else { CharArray encodingName(::preferredEncoding.getData()); preferredEncoding = encodingNum(encodingName.buf); |