[Spice-devel] [PATCH v7 06/12] sound: Use default disconnect for client channels

Frediano Ziglio fziglio at redhat.com
Mon Dec 5 12:07:33 UTC 2016


Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
 server/sound.c | 19 -------------------
 1 file changed, 19 deletions(-)

diff --git a/server/sound.c b/server/sound.c
index 2a4472c..fed6062 100644
--- a/server/sound.c
+++ b/server/sound.c
@@ -816,23 +816,6 @@ snd_channel_client_release_recv_buf(RedChannelClient *rcc, uint16_t type, uint32
     }
 }
 
-static void snd_disconnect_channel_client(RedChannelClient *rcc)
-{
-    SndChannel *channel;
-    RedChannel *red_channel = red_channel_client_get_channel(rcc);
-    uint32_t type;
-
-    channel = SND_CHANNEL(red_channel);
-    spice_assert(channel);
-    g_object_get(red_channel, "channel-type", &type, NULL);
-
-    spice_debug("channel-type=%d", type);
-    if (channel->connection) {
-        spice_assert(RED_CHANNEL_CLIENT(channel->connection) == rcc);
-        red_channel_client_disconnect(rcc);
-    }
-}
-
 static void snd_set_command(SndChannelClient *client, uint32_t command)
 {
     if (!client) {
@@ -1474,7 +1457,6 @@ playback_channel_constructed(GObject *object)
     G_OBJECT_CLASS(playback_channel_parent_class)->constructed(object);
 
     client_cbs.connect = snd_set_playback_peer;
-    client_cbs.disconnect = snd_disconnect_channel_client;
     client_cbs.migrate = snd_playback_migrate_channel_client;
     red_channel_register_client_cbs(RED_CHANNEL(self), &client_cbs, self);
 
@@ -1525,7 +1507,6 @@ record_channel_constructed(GObject *object)
     G_OBJECT_CLASS(record_channel_parent_class)->constructed(object);
 
     client_cbs.connect = snd_set_record_peer;
-    client_cbs.disconnect = snd_disconnect_channel_client;
     client_cbs.migrate = snd_record_migrate_channel_client;
     red_channel_register_client_cbs(RED_CHANNEL(self), &client_cbs, self);
 
-- 
git-series 0.9.1


More information about the Spice-devel mailing list