[Spice-devel] [PATCH v9 05/11] sound: Use default disconnect for client channels
Jonathon Jongsma
jjongsma at redhat.com
Thu Dec 22 17:08:21 UTC 2016
OK, I don't see any downsides here.
Acked-by: Jonathon Jongsma <jjongsma at redhat.com>
On Tue, 2016-12-20 at 17:44 +0000, Frediano Ziglio wrote:
> 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 427ae8f..9263a23 100644
> --- a/server/sound.c
> +++ b/server/sound.c
> @@ -819,23 +819,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) {
> @@ -1477,7 +1460,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);
>
> @@ -1528,7 +1510,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);
>
More information about the Spice-devel
mailing list