qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Weil <weil@mail.berlios.de>
To: Corentin Chary <corentincj@iksaif.net>
Cc: Anthony Liguori <aliguori@linux.vnet.ibm.com>,
	Alexander Graf <agraf@suse.de>,
	Qemu-development List <qemu-devel@nongnu.org>,
	Corentin Chary <corentin.chary@gmail.com>,
	Andre Przywara <andre.przywara@amd.com>
Subject: Re: [Qemu-devel] [PATCH v3 00/16] vnc: adapative tight, zrle, zywrle, and bitmap module
Date: Thu, 24 Feb 2011 22:42:45 +0100	[thread overview]
Message-ID: <4D66D0D5.6050405@mail.berlios.de> (raw)
In-Reply-To: <4D66C78F.6010101@mail.berlios.de>

Am 24.02.2011 22:03, schrieb Stefan Weil:
> Am 04.02.2011 09:05, schrieb Corentin Chary:
>> From: Corentin Chary <corentin.chary@gmail.com>
>>
>> Hi,
>>
>> Since v2:
>> - Fixed some styles issues
>> - Rebased to current master
>> - Fixed a Makefile issue (using .c instead of .o)
>>
>> I rebased the series against current master, it contains:
>>
>> - Adaptive Tight Encoding: send lossy or lossless updates depending 
>> on the
>> update frequency of the screen region. If a lossy update is forced, then
>> it will be refreshed with a lossless update as soon as the update 
>> frequency
>> goes back to 0.
>>
>> - ZRLE/ZYWRLE Encodings: ZYWRLE use less bandwidth than tight, but 
>> the result
>> is also probably more lossy. I wanted to make ZRLE/ZYWRLE adaptive, 
>> but this
>> is not possible because most of the vnc clients can't switch between 
>> ZRLE and
>> ZYWRLE. But a possible solution is to use another encoding for 
>> lossless updates,
>> like zlib or tight.
>>
>> - Bitmap module: create bitmap.h and bitops.h, and remove duplicate code
>> from vnc.c
>>
>> It was my last series from GSoC 2010 context, if necessary I can send 
>> different
>> series for adaptive vnc, zrle and bitmap stuff.
>>
>> Thanks,
>>
>> Corentin Chary (16):
>> vnc: qemu can die if the client is disconnected while updating screen
>> vnc: don't set the quality if lossy encoding are disabled
>> vnc: add a way to get the update frequency for a given region
>> vnc: refresh lossy rect after a given timeout
>> vnc: tight: use the update frequency to choose between lossy and
>> lossless
>> vnc: palette: use a pool to reduce memory allocations
>> vnc: palette: add palette_init calls
>> vnc: palette: and fill and color calls.
>> vnc: Add ZRLE and ZYWRLE encodings.
>> vnc: fix uint8_t comparisons with negative values
>> vnc: fix lossy rect refreshing
>> bitmap: add a generic bitmap and bitops library
>> vnc: use the new generic bitmap functions
>> vnc: don't try to send bigger updates that client height
>> vnc: tight: tweak adaptive tight settings
>> vnc: add a non-adaptive option
>>
>> Makefile.objs | 2 +
>> bitmap.c | 256 ++++++++++++++++
>> bitmap.h | 222 ++++++++++++++
>> bitops.c | 142 +++++++++
>> bitops.h | 272 +++++++++++++++++
>> osdep.h | 4 +
>> qemu-options.hx | 9 +
>> ui/vnc-enc-tight.c | 75 ++++-
>> ui/vnc-enc-zrle-template.c | 263 +++++++++++++++++
>> ui/vnc-enc-zrle.c | 366 +++++++++++++++++++++++
>> ui/vnc-enc-zrle.h | 40 +++
>> ui/vnc-enc-zywrle-template.c | 170 +++++++++++
>> ui/vnc-enc-zywrle.h | 659 ++++++++++++++++++++++++++++++++++++++++++
>> ui/vnc-jobs-async.c | 8 +
>> ui/vnc-palette.c | 58 +++-
>> ui/vnc-palette.h | 7 +-
>> ui/vnc.c | 283 ++++++++++++++-----
>> ui/vnc.h | 57 ++++-
>> 18 files changed, 2786 insertions(+), 107 deletions(-)
>> create mode 100644 bitmap.c
>> create mode 100644 bitmap.h
>> create mode 100644 bitops.c
>> create mode 100644 bitops.h
>> create mode 100644 ui/vnc-enc-zrle-template.c
>> create mode 100644 ui/vnc-enc-zrle.c
>> create mode 100644 ui/vnc-enc-zrle.h
>> create mode 100644 ui/vnc-enc-zywrle-template.c
>> create mode 100644 ui/vnc-enc-zywrle.h
>
>
> Is there a special reason why you use __always_inline
> instead of inline in bitops.h?
>
> This breaks compilation for mingw :-(
>
> mingw also fails at timersub() in vnc.c.
>

One more problem:

./bitops.h:192: warning: ‘old’ is used uninitialized in this function

  reply	other threads:[~2011-02-24 21:42 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-04  8:05 [Qemu-devel] [PATCH v3 00/16] vnc: adapative tight, zrle, zywrle, and bitmap module Corentin Chary
2011-02-04  8:05 ` [Qemu-devel] [PATCH v3 01/16] vnc: qemu can die if the client is disconnected while updating screen Corentin Chary
2011-02-04 12:51   ` Anthony Liguori
2011-02-07 16:38     ` Alexander Graf
2011-02-23 23:23   ` Anthony Liguori
2011-02-25 10:10     ` Corentin Chary
2011-02-04  8:05 ` [Qemu-devel] [PATCH v3 02/16] vnc: don't set the quality if lossy encoding are disabled Corentin Chary
2011-02-04  8:05 ` [Qemu-devel] [PATCH v3 03/16] vnc: add a way to get the update frequency for a given region Corentin Chary
2011-02-04  8:05 ` [Qemu-devel] [PATCH v3 04/16] vnc: refresh lossy rect after a given timeout Corentin Chary
2011-02-04  8:05 ` [Qemu-devel] [PATCH v3 05/16] vnc: tight: use the update frequency to choose between lossy and lossless Corentin Chary
2011-02-24 15:52   ` Peter Maydell
2011-02-04  8:05 ` [Qemu-devel] [PATCH v3 06/16] vnc: palette: use a pool to reduce memory allocations Corentin Chary
2011-02-04  8:05 ` [Qemu-devel] [PATCH v3 07/16] vnc: palette: add palette_init calls Corentin Chary
2011-02-04  8:06 ` [Qemu-devel] [PATCH v3 08/16] vnc: palette: and fill and color calls Corentin Chary
2011-02-04  8:06 ` [Qemu-devel] [PATCH v3 09/16] vnc: Add ZRLE and ZYWRLE encodings Corentin Chary
2011-02-04  8:06 ` [Qemu-devel] [PATCH v3 10/16] vnc: fix uint8_t comparisons with negative values Corentin Chary
2011-02-04  8:06 ` [Qemu-devel] [PATCH v3 11/16] vnc: fix lossy rect refreshing Corentin Chary
2011-02-04  8:06 ` [Qemu-devel] [PATCH v3 12/16] bitmap: add a generic bitmap and bitops library Corentin Chary
2011-02-04  8:06 ` [Qemu-devel] [PATCH v3 13/16] vnc: use the new generic bitmap functions Corentin Chary
2011-02-04  8:06 ` [Qemu-devel] [PATCH v3 14/16] vnc: don't try to send bigger updates that client height Corentin Chary
2011-02-04  8:06 ` [Qemu-devel] [PATCH v3 15/16] vnc: tight: tweak adaptive tight settings Corentin Chary
2011-02-04  8:06 ` [Qemu-devel] [PATCH v3 16/16] vnc: add a non-adaptive option Corentin Chary
2011-02-24 21:03 ` [Qemu-devel] [PATCH v3 00/16] vnc: adapative tight, zrle, zywrle, and bitmap module Stefan Weil
2011-02-24 21:42   ` Stefan Weil [this message]
2011-02-24 22:43   ` Corentin Chary
2011-02-25 17:57     ` Blue Swirl
2011-02-25 18:09     ` Blue Swirl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4D66D0D5.6050405@mail.berlios.de \
    --to=weil@mail.berlios.de \
    --cc=agraf@suse.de \
    --cc=aliguori@linux.vnet.ibm.com \
    --cc=andre.przywara@amd.com \
    --cc=corentin.chary@gmail.com \
    --cc=corentincj@iksaif.net \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).