[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 2/5] vnc: JPEG should be disabled if the client don'
From: |
Corentin Chary |
Subject: |
[Qemu-devel] [PATCH 2/5] vnc: JPEG should be disabled if the client don't set tight quality |
Date: |
Fri, 4 Jun 2010 15:18:44 +0200 |
Disable JPEG compression by default and only enable it if the
VNC client has sent the requested quality.
Signed-off-by: Corentin Chary <address@hidden>
---
vnc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/vnc.c b/vnc.c
index ed0e096..9cf38d1 100644
--- a/vnc.c
+++ b/vnc.c
@@ -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;
/*
--
1.7.1
- [Qemu-devel] [PATCH 0/5] vnc updates and ui move, Corentin Chary, 2010/06/04
- [Qemu-devel] [PATCH 2/5] vnc: JPEG should be disabled if the client don't set tight quality,
Corentin Chary <=
- [Qemu-devel] Re: [PATCH 2/5] vnc: JPEG should be disabled if the client don't set tight quality, Alexander Graf, 2010/06/04
- [Qemu-devel] Re: [PATCH 2/5] vnc: JPEG should be disabled if the client don't set tight quality, Anthony Liguori, 2010/06/04
- [Qemu-devel] Re: [PATCH 2/5] vnc: JPEG should be disabled if the client don't set tight quality, Alexander Graf, 2010/06/04
- [Qemu-devel] Re: [PATCH 2/5] vnc: JPEG should be disabled if the client don't set tight quality, Corentin Chary, 2010/06/04
- [Qemu-devel] Re: [PATCH 2/5] vnc: JPEG should be disabled if the client don't set tight quality, Alexander Graf, 2010/06/04
- [Qemu-devel] Re: [PATCH 2/5] vnc: JPEG should be disabled if the client don't set tight quality, Corentin Chary, 2010/06/04
[Qemu-devel] [PATCH 3/5] vnc: add lossless option, Corentin Chary, 2010/06/04
[Qemu-devel] [PATCH 1/5] vnc: tight: add JPEG and gradient subencoding with smooth image detection, Corentin Chary, 2010/06/04