Google Summer of Code 2010/VNC: Difference between revisions

From QEMU
Line 15: Line 15:


=== Feature Matrix ===
=== Feature Matrix ===
==== Servers ====


{| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;"
{| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;"
! style="width:12em" | Server
! style="width:12em" | Software
|Raw
|Raw
|CopyRect
|CopyRect
Line 32: Line 30:
|Ultra
|Ultra
|UltraZip
|UltraZip
|-
|libvncclient
|y
|y
|y
|y
|y
|y
|y
|y
|y
|y
|y
|y
|-
|-
|libvncserver
|libvncserver
Line 112: Line 124:
|n
|n
|n
|n
|}
==== Clients ====
{| class="wikitable sortable" style="font-size: 85%; text-align: center; width: auto;"
|-
|-
! style="width:12em" | Server
|gtk-vnc
|Raw
|CopyRect
|RRE
|CoRRE
|Hextile
|ZRLE
|ZYWRLE
|zlib
|tight
|zlibhex
|Ultra
|UltraZip
|-
|libvncclient
|y
|y
|y
|y
|y
|y
|n
|y
|y
|y
|y
|n
|n
|y
|y
|y
|n
|y
|n
|y
|n
|y
|y
|y
|-
|tigervnc
|
|
|
|
|
|
|
|
|-
|ultravnc
|
|
|
|
|
|
|
|
|-
|tightvnc
|
|
|
|
|
|
|
|
|-
|realvnc
|
|
|
|
|
|
|
|
|-
|gtk-vnc
|
|
|
|
|
|
|
|
|}
|}
''describe some encodings here''
''describe some encodings here''

Revision as of 05:43, 30 April 2010

Summary

QEMU's built-in VNC server only supports the Hextile encoding. Hextile only uses tile-based compression. Other encodings are more popular such as Tight and ZRLE that use zlib-based compression. These encodings significantly reduce the bandwidth required by VNC.

Owner

Detailed Summary

QEMU's built-in VNC server only supports the Hextile encoding. Hextile only uses tile-based compression. Other encodings are more popular such as Tight and ZRLE that use zlib-based compression. These encodings significantly reduce the bandwidth required by VNC. This project would start by implementing support for Tight or ZRLE. Both encodings support a combination of tile-based compression and zlib-compression. Initially, one would implement zlib-compression only and compare the results to our Hextile implementation. Depending on progress, tile-based compression mechanisms (such as Tight's gradient algorithm) could be explored. At each stage, we expect that performance comparisons are done to determine the effectiveness of the additional algorithm. Additional compression mechanisms like Tight's JPEG encoding could also be evaluated.

Encodings

Feature Matrix

Software Raw CopyRect RRE CoRRE Hextile ZRLE ZYWRLE zlib tight zlibhex Ultra UltraZip
libvncclient y y y y y y y y y y y y
libvncserver y y y y y y y y y y y y
tigervnc y y y y? y y n n y n n n
ultravnc y y y y y y y y y y y y
tightvnc y y y y? y y n n y n n n
realvnc
qemu y y n n y n n y n n n n
gtk-vnc y y y n y y n n y n n n

describe some encodings here

Status