From patchwork Thu May 6 08:39:06 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Corentin Chary X-Patchwork-Id: 51849 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 633E6B7D19 for ; Fri, 7 May 2010 02:14:19 +1000 (EST) Received: from localhost ([127.0.0.1]:49281 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OA3iK-0004QI-3I for incoming@patchwork.ozlabs.org; Thu, 06 May 2010 12:14:16 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O9wYi-0001Ht-H7 for qemu-devel@nongnu.org; Thu, 06 May 2010 04:35:53 -0400 Received: from [140.186.70.92] (port=49468 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O9wYd-00018i-Q3 for qemu-devel@nongnu.org; Thu, 06 May 2010 04:35:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O9wYZ-0007LW-7f for qemu-devel@nongnu.org; Thu, 06 May 2010 04:35:47 -0400 Received: from iksaif.net ([88.191.73.63]:49406) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O9wYZ-0007Kn-01 for qemu-devel@nongnu.org; Thu, 06 May 2010 04:35:43 -0400 Received: from localhost.localdomain (localhost [127.0.0.1]) (Authenticated sender: corentincj@iksaif.net) by iksaif.net (Postfix) with ESMTPA id 1F400C9001F; Thu, 6 May 2010 10:39:09 +0200 (CEST) From: Corentin Chary To: qemu-devel@nongnu.org Date: Thu, 6 May 2010 10:39:06 +0200 Message-Id: <1273135146-11093-4-git-send-email-corentincj@iksaif.net> X-Mailer: git-send-email 1.7.0.2 In-Reply-To: <1273135146-11093-1-git-send-email-corentincj@iksaif.net> References: <1273135146-11093-1-git-send-email-corentincj@iksaif.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) Cc: Corentin Chary , Anthony Liguori Subject: [Qemu-devel] [PATCH 4/4] vnc: adjust compression zstream level X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Corentin Chary --- vnc-encoding-zlib.c | 9 ++++++++- vnc.h | 1 + 2 files changed, 9 insertions(+), 1 deletions(-) diff --git a/vnc-encoding-zlib.c b/vnc-encoding-zlib.c index 6a16a79..29dd1b7 100644 --- a/vnc-encoding-zlib.c +++ b/vnc-encoding-zlib.c @@ -83,10 +83,17 @@ static int vnc_zlib_stop(VncState *vs) return -1; } + vs->zlib_level = vs->tight_compression; zstream->opaque = vs; } - // XXX what to do if tight_compression changed in between? + if (vs->tight_compression != vs->zlib_level) { + if (deflateParams(zstream, vs->tight_compression, + Z_DEFAULT_STRATEGY) != Z_OK) { + return -1; + } + vs->zlib_level = vs->tight_compression; + } // reserve memory in output buffer buffer_reserve(&vs->output, vs->zlib.offset + 64); diff --git a/vnc.h b/vnc.h index dfdb240..96f3fe7 100644 --- a/vnc.h +++ b/vnc.h @@ -174,6 +174,7 @@ struct VncState Buffer zlib; Buffer zlib_tmp; z_stream zlib_stream; + int zlib_level; Notifier mouse_mode_notifier;