Re: [Spice-devel] [PATCH v5 00/20] Add GStreamer support for video streams

2015-09-04 Thread Fabio Fantoni
Il 04/09/2015 15:21, Francois Gouget ha scritto: > How is the review going? > Does anything look good enough to be committed? The client code for > instance? > From my fast test I did on v5 (only VP8) seems that important/serious problems reported previously are solved (I tested it only in LAN), I

[Spice-devel] [PATCH v5 04/20] server: Add VP8 support, a video codec preference list and compatibility checks with the Spice client.

2015-09-04 Thread Francois Gouget
The video encoder preferences can be expressed by building a semi-colon separated list of encoder:codec pairs. For instance 'gstreamer:vp8;spice:mjpeg' to pick first the GStreamer VP8 video encoder first and used the original MJPEG video encoder one as a fallback. The server has a default prefer

Re: [Spice-devel] [PATCH v5 00/20] Add GStreamer support for video streams

2015-09-04 Thread Francois Gouget
How is the review going? Does anything look good enough to be committed? The client code for instance? -- Francois Gouget ___ Spice-devel mailing list Spice-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/spice-devel

[Spice-devel] [PATCH] build-sys: Update warning message

2015-09-04 Thread Frediano Ziglio
arch_warn is set to 1 only if architecture is not x86, x64 or arm so make the message report it correctly for arm. Signed-off-by: Frediano Ziglio --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index dee0a28..2b02264 100644 --- a/c

Re: [Spice-devel] [PATCH] improve performances comparing image pixels

2015-09-04 Thread Jonathon Jongsma
ACK, but a couple minor commit log nits On Thu, 2015-09-03 at 16:48 +0100, Frediano Ziglio wrote: > This patch contains a bit of small optimizations. > It avoid booleans operations which could involve branches replacing booleans -> boolean > with binary operations (equal/all_ident -> some_differ