Re: [Spice-devel] [qxl-wddm-dod] Prevent installation on OSes earlier than Windows 8

2018-04-15 Thread Sameeh Jubran
On Fri, Apr 13, 2018 at 7:16 PM, Frediano Ziglio wrote: > > > > Limited the installation of the driver to Windows 8 and up > > in order to prevent false driver installation on unsupported OSes > > which lead to BSODs. > > > > Signed-off-by: Basil Salman > > Signed-off-by: Sameeh Jubran > > ---

[Spice-devel] [RFC spice-gtk v2 1/1] Gstreamer: Use GstVideoOverlay if possible

2018-04-15 Thread Snir Sheriber
Currently when gstreamer is used to decode a full-screen stream sent from the server, the decoding frames are being forced to RBGA format and pushed using appsink to be scaled and rendered to screen. Today most of the gstreamer sinks supports the GstVideoOverlay interface which allows to render di

[Spice-devel] [RFC spice-gtk v2 0/1] Direct rendering

2018-04-15 Thread Snir Sheriber
Differences from v1 -Recognize streaming mode by the streaming-mode surface flag -Modifying the streaming mode signal -Applying patches from Frediano (sent on v1 thread) -Applying Uri's patch fixing a memory leak -This feature can forced to be disabled now by setting the DISABLE_GSTVIDEOOVERLAY e

[Spice-devel] [PATCH spice-gtk 3/3] fixup! Gstreamer: Use GstVideoOverlay if possible

2018-04-15 Thread Frediano Ziglio
limit appsink_cbs visibility --- src/channel-display-gst.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/channel-display-gst.c b/src/channel-display-gst.c index 6103fcb..2166f0f 100644 --- a/src/channel-display-gst.c +++ b/src/channel-display-gst.c @@ -357,7 +357,6 @@

[Spice-devel] [PATCH spice-gtk 1/3] fixup! Gstreamer: Use GstVideoOverlay if possible

2018-04-15 Thread Frediano Ziglio
As we don't need frame anymore instead of attaching to the buffer free it. --- src/channel-display-gst.c | 19 +++ 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/src/channel-display-gst.c b/src/channel-display-gst.c index a29af3f..7783393 100644 --- a/src/channel-di

[Spice-devel] [PATCH spice-gtk 2/3] fixup! Gstreamer: Use GstVideoOverlay if possible

2018-04-15 Thread Frediano Ziglio
Remove gstvideooverlay field, just check if appsink is there, the check if to store data for new_sample which is called by appsink --- src/channel-display-gst.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/channel-display-gst.c b/src/channel-display-gst.c index 77833