From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=42759 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OENEF-0005iA-Rm for qemu-devel@nongnu.org; Tue, 18 May 2010 09:53:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OENE7-0001u2-2E for qemu-devel@nongnu.org; Tue, 18 May 2010 09:52:58 -0400 Received: from cantor2.suse.de ([195.135.220.15]:42988 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OENE6-0001tp-TD for qemu-devel@nongnu.org; Tue, 18 May 2010 09:52:55 -0400 Message-ID: <4BF29BB5.5020101@suse.de> Date: Tue, 18 May 2010 15:52:53 +0200 From: Alexander Graf 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> <4BF2987F.4070609@linux.vnet.ibm.com> In-Reply-To: <4BF2987F.4070609@linux.vnet.ibm.com> Content-Type: text/plain; charset=ISO-8859-1 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: Anthony Liguori Cc: Corentin Chary , qemu-devel@nongnu.org, Adam Litke Anthony Liguori wrote: > 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. Ah, that's why I put it in there back then. I see :). Alex