diff options
author | Corentin Chary <corentincj@iksaif.net> | 2010-07-07 20:57:50 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-07-26 17:23:53 -0500 |
commit | 2f24e2ed1160b252225bfa6169d552ef955eaaef (patch) | |
tree | 598b018fc02be475ca4871975c9af658b95afa60 | |
parent | 2f6f5c7a00e2fbe4f680d6c1efa12a9cbb0ee40a (diff) | |
download | qemu-2f24e2ed1160b252225bfa6169d552ef955eaaef.zip qemu-2f24e2ed1160b252225bfa6169d552ef955eaaef.tar.gz qemu-2f24e2ed1160b252225bfa6169d552ef955eaaef.tar.bz2 |
vnc: JPEG should be disabled if the client don't set tight quality
Disable JPEG compression by default and only enable it if the
VNC client has sent the requested quality.
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | vnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1644,7 +1644,7 @@ static void set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings) vs->features = 0; vs->vnc_encoding = 0; vs->tight_compression = 9; - vs->tight_quality = 9; + vs->tight_quality = -1; /* Lossless by default */ vs->absolute = -1; /* |