From: Corentin Chary Date: Fri, 4 Feb 2011 08:06:07 +0000 (+0100) Subject: vnc: tight: tweak adaptive tight settings X-Git-Tag: v0.15.0-rc0~835 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8cb4a6b755788925eea2beead87e201dfd4ba8bc;p=thirdparty%2Fqemu.git vnc: tight: tweak adaptive tight settings The force_jpeg threshold was too low. Signed-off-by: Corentin Chary Signed-off-by: Anthony Liguori --- diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c index 81024d5f146..82c1e96e21e 100644 --- a/ui/vnc-enc-tight.c +++ b/ui/vnc-enc-tight.c @@ -79,16 +79,16 @@ static const struct { int jpeg_idx; /* Allow indexed JPEG */ int jpeg_full; /* Allow full color JPEG */ } tight_jpeg_conf[] = { - { 0, 4, 1, 1 }, - { 0, 4, 1, 1 }, - { 0, 4, 1, 1 }, - { 0, 4, 1, 1 }, - { 0, 4, 0, 1 }, - { 0.1, 4, 0, 1 }, - { 0.2, 4, 0, 1 }, - { 0.3, 6, 0, 0 }, - { 0.4, 8, 0, 0 }, - { 0.5, 10, 0, 0 }, + { 0, 8, 1, 1 }, + { 0, 8, 1, 1 }, + { 0, 8, 1, 1 }, + { 0, 8, 1, 1 }, + { 0, 10, 1, 1 }, + { 0.1, 10, 1, 1 }, + { 0.2, 10, 1, 1 }, + { 0.3, 12, 0, 0 }, + { 0.4, 14, 0, 0 }, + { 0.5, 16, 0, 0 }, }; #endif