From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=34355 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEN19-0004p3-MI for qemu-devel@nongnu.org; Tue, 18 May 2010 09:39:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEN0u-00089k-2I for qemu-devel@nongnu.org; Tue, 18 May 2010 09:39:17 -0400 Received: from e6.ny.us.ibm.com ([32.97.182.146]:47361) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEN0t-00089b-QY for qemu-devel@nongnu.org; Tue, 18 May 2010 09:39:15 -0400 Received: from d01relay03.pok.ibm.com (d01relay03.pok.ibm.com [9.56.227.235]) by e6.ny.us.ibm.com (8.14.3/8.13.1) with ESMTP id o4IDbKpK011635 for ; Tue, 18 May 2010 09:37:20 -0400 Received: from d03av03.boulder.ibm.com (d03av03.boulder.ibm.com [9.17.195.169]) by d01relay03.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o4IDdDCg096066 for ; Tue, 18 May 2010 09:39:14 -0400 Received: from d03av03.boulder.ibm.com (loopback [127.0.0.1]) by d03av03.boulder.ibm.com (8.14.3/8.13.1/NCO v10.0 AVout) with ESMTP id o4I6dCxB014557 for ; Tue, 18 May 2010 00:39:12 -0600 Message-ID: <4BF2987F.4070609@linux.vnet.ibm.com> Date: Tue, 18 May 2010 08:39:11 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1274186986-26878-1-git-send-email-corentincj@iksaif.net> <1274186986-26878-4-git-send-email-corentincj@iksaif.net> <4BF28D5F.5010404@suse.de> In-Reply-To: <4BF28D5F.5010404@suse.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: [PATCH v2 03/10] vnc: only use a single zlib stream List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf Cc: Corentin Chary , qemu-devel@nongnu.org, Adam Litke On 05/18/2010 07:51 AM, Alexander Graf wrote: > Corentin Chary wrote: > >> According to http://tigervnc.org/cgi-bin/rfbproto#zlib-encoding >> zlib encoding only uses a single stream. Current implementation defines >> 4 streams but only uses the first one. Remove them and only use a single >> stream. >> >> > How about when we start to implement zrle or zhextile? Wouldn't those > need different streams? > Only tight uses multiple streams. zrle just uses one. zhextile doesn't exist and if it did, it wouldn't be better than Tight because Tight is essentially zhextile :-) Regards, Anthony Liguori > Alex > >