[Spice-devel] [PATCH v4 11/17] sound: Use default disconnect for client channels
Frediano Ziglio
fziglio at redhat.com
Thu Dec 1 11:24:33 UTC 2016
Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
server/sound.c | 21 ---------------------
1 file changed, 21 deletions(-)
diff --git a/server/sound.c b/server/sound.c
index ebbe821..486fc95 100644
--- a/server/sound.c
+++ b/server/sound.c
@@ -804,25 +804,6 @@ snd_channel_client_release_recv_buf(RedChannelClient *rcc, uint16_t type, uint32
}
}
-// TODO remove and just use red_channel_client_disconnect ??
-static void snd_disconnect_channel_client(RedChannelClient *rcc)
-{
- SndChannel *channel;
- RedChannel *red_channel = red_channel_client_get_channel(rcc);
- uint32_t type;
-
- spice_assert(red_channel);
- 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) {
@@ -1466,7 +1447,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);
@@ -1517,7 +1497,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