[PATCH v2 3/3] Display: Send a preferred compression message on init.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



If the user prefers a specific compression algorithm, report it when
setting up the display channel.
---
 gtk/channel-display.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/gtk/channel-display.c b/gtk/channel-display.c
index efe2259..b32e8fc 100644
--- a/gtk/channel-display.c
+++ b/gtk/channel-display.c
@@ -789,12 +789,15 @@ static void spice_display_channel_up(SpiceChannel *channel)
     SpiceMsgOut *out;
     SpiceSession *s = spice_channel_get_session(channel);
     SpiceMsgcDisplayInit init;
+    SpiceMsgcDisplayPreferredCompression pref_comp_msg;
     int cache_size;
     int glz_window_size;
+    int preferred_compression;
 
     g_object_get(s,
                  "cache-size", &cache_size,
                  "glz-window-size", &glz_window_size,
+                 "preferred-compression", &preferred_compression,
                  NULL);
     CHANNEL_DEBUG(channel, "%s: cache_size %d, glz_window_size %d (bytes)", __FUNCTION__,
                   cache_size, glz_window_size);
@@ -810,6 +813,14 @@ static void spice_display_channel_up(SpiceChannel *channel)
        this monitor */
     if (channel->priv->channel_id != 0)
         g_coroutine_object_notify(G_OBJECT(channel), "monitors");
+
+    if (preferred_compression > SPICE_IMAGE_COMPRESS_INVALID &&
+            preferred_compression < SPICE_IMAGE_COMPRESS_ENUM_END) {
+        pref_comp_msg.image_compression = preferred_compression;
+        out = spice_msg_out_new(channel, SPICE_MSGC_DISPLAY_PREFERRED_COMPRESSION);
+        out->marshallers->msgc_display_preferred_compression(out->marshaller, &pref_comp_msg);
+        spice_msg_out_send_internal(out);
+    }
 }
 
 #define DRAW(type) {                                                    \
-- 
1.9.3

_______________________________________________
Spice-devel mailing list
Spice-devel@xxxxxxxxxxxxxxxxxxxxx
http://lists.freedesktop.org/mailman/listinfo/spice-devel





[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]     [Monitors]