]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-call.c
Don't double-free the EmpathyTpCallStreams
[empathy.git] / libempathy / empathy-tp-call.c
1 /*
2  * Copyright (C) 2007 Elliot Fairweather
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Elliot Fairweather <elliot.fairweather@collabora.co.uk>
20  *          Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #include <string.h>
24
25 #include <telepathy-glib/proxy-subclass.h>
26 #include <telepathy-glib/dbus.h>
27 #include <telepathy-glib/interfaces.h>
28
29 #include "empathy-tp-call.h"
30 #include "empathy-contact-factory.h"
31 #include "empathy-utils.h"
32
33 #define DEBUG_FLAG EMPATHY_DEBUG_TP
34 #include "empathy-debug.h"
35
36 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyTpCall)
37 typedef struct
38 {
39   gboolean dispose_has_run;
40   TpChannel *channel;
41   EmpathyContact *contact;
42   gboolean is_incoming;
43   guint status;
44
45   EmpathyTpCallStream *audio;
46   EmpathyTpCallStream *video;
47 } EmpathyTpCallPriv;
48
49 enum
50 {
51   PROP_0,
52   PROP_CHANNEL,
53   PROP_CONTACT,
54   PROP_IS_INCOMING,
55   PROP_STATUS,
56   PROP_AUDIO_STREAM,
57   PROP_VIDEO_STREAM
58 };
59
60 G_DEFINE_TYPE (EmpathyTpCall, empathy_tp_call, G_TYPE_OBJECT)
61
62 static void
63 tp_call_add_stream (EmpathyTpCall *call,
64                     guint stream_id,
65                     guint contact_handle,
66                     guint stream_type,
67                     guint stream_state,
68                     guint stream_direction)
69 {
70   EmpathyTpCallPriv *priv = GET_PRIV (call);
71
72   switch (stream_type)
73     {
74       case TP_MEDIA_STREAM_TYPE_AUDIO:
75         DEBUG ("Audio stream - id: %d, state: %d, direction: %d",
76             stream_id, stream_state, stream_direction);
77         priv->audio->exists = TRUE;
78         priv->audio->id = stream_id;
79         priv->audio->state = stream_state;
80         priv->audio->direction = stream_direction;
81         g_object_notify (G_OBJECT (call), "audio-stream");
82         break;
83       case TP_MEDIA_STREAM_TYPE_VIDEO:
84         DEBUG ("Video stream - id: %d, state: %d, direction: %d",
85             stream_id, stream_state, stream_direction);
86         priv->video->exists = TRUE;
87         priv->video->id = stream_id;
88         priv->video->state = stream_state;
89         priv->video->direction = stream_direction;
90         g_object_notify (G_OBJECT (call), "video-stream");
91         break;
92       default:
93         DEBUG ("Unknown stream type: %d", stream_type);
94     }
95 }
96
97 static void
98 tp_call_stream_added_cb (TpChannel *channel,
99                          guint stream_id,
100                          guint contact_handle,
101                          guint stream_type,
102                          gpointer user_data,
103                          GObject *call)
104 {
105   DEBUG ("Stream added - stream id: %d, contact handle: %d, stream type: %d",
106       stream_id, contact_handle, stream_type);
107
108   tp_call_add_stream (EMPATHY_TP_CALL (call), stream_id, contact_handle,
109       stream_type, TP_MEDIA_STREAM_STATE_DISCONNECTED,
110       TP_MEDIA_STREAM_DIRECTION_NONE);
111 }
112
113 static void
114 tp_call_stream_removed_cb (TpChannel *channel,
115                            guint stream_id,
116                            gpointer user_data,
117                            GObject *call)
118 {
119   EmpathyTpCallPriv *priv = GET_PRIV (call);
120
121   DEBUG ("Stream removed - stream id: %d", stream_id);
122
123   if (stream_id == priv->audio->id)
124     {
125       priv->audio->exists = FALSE;
126       g_object_notify (call, "audio-stream");
127     }
128   else if (stream_id == priv->video->id)
129     {
130       priv->video->exists = FALSE;
131       g_object_notify (call, "video-stream");
132     }
133 }
134
135 static void
136 tp_call_stream_state_changed_cb (TpChannel *proxy,
137                                  guint stream_id,
138                                  guint stream_state,
139                                  gpointer user_data,
140                                  GObject *call)
141 {
142   EmpathyTpCallPriv *priv = GET_PRIV (call);
143
144   DEBUG ("Stream state changed - stream id: %d, state state: %d",
145       stream_id, stream_state);
146
147   if (stream_id == priv->audio->id)
148     {
149       priv->audio->state = stream_state;
150       g_object_notify (call, "audio-stream");
151     }
152   else if (stream_id == priv->video->id)
153     {
154       priv->video->state = stream_state;
155       g_object_notify (call, "video-stream");
156     }
157 }
158
159 static void
160 tp_call_stream_direction_changed_cb (TpChannel *channel,
161                                      guint stream_id,
162                                      guint stream_direction,
163                                      guint pending_flags,
164                                      gpointer user_data,
165                                      GObject *call)
166 {
167   EmpathyTpCallPriv *priv = GET_PRIV (call);
168
169   DEBUG ("Stream direction changed - stream: %d, direction: %d",
170       stream_id, stream_direction);
171
172   if (stream_id == priv->audio->id)
173     {
174       priv->audio->direction = stream_direction;
175       g_object_notify (call, "audio-stream");
176     }
177   else if (stream_id == priv->video->id)
178     {
179       priv->video->direction = stream_direction;
180       g_object_notify (call, "video-stream");
181     }
182 }
183
184 static void
185 tp_call_request_streams_cb (TpChannel *channel,
186                             const GPtrArray *streams,
187                             const GError *error,
188                             gpointer user_data,
189                             GObject *call)
190 {
191   guint i;
192
193   if (error)
194     {
195       DEBUG ("Error requesting streams: %s", error->message);
196       return;
197     }
198
199   for (i = 0; i < streams->len; i++)
200     {
201       GValueArray *values;
202       guint stream_id;
203       guint contact_handle;
204       guint stream_type;
205       guint stream_state;
206       guint stream_direction;
207
208       values = g_ptr_array_index (streams, i);
209       stream_id = g_value_get_uint (g_value_array_get_nth (values, 0));
210       contact_handle = g_value_get_uint (g_value_array_get_nth (values, 1));
211       stream_type = g_value_get_uint (g_value_array_get_nth (values, 2));
212       stream_state = g_value_get_uint (g_value_array_get_nth (values, 3));
213       stream_direction = g_value_get_uint (g_value_array_get_nth (values, 4));
214
215       tp_call_add_stream (EMPATHY_TP_CALL (call), stream_id, contact_handle,
216           stream_type, stream_state, stream_direction);
217   }
218 }
219
220 static void
221 tp_call_request_streams_for_capabilities (EmpathyTpCall *call,
222                                           EmpathyCapabilities capabilities)
223 {
224   EmpathyTpCallPriv *priv = GET_PRIV (call);
225   GArray *stream_types;
226   guint handle;
227   guint stream_type;
228
229   if (capabilities == EMPATHY_CAPABILITIES_UNKNOWN)
230       capabilities = EMPATHY_CAPABILITIES_AUDIO | EMPATHY_CAPABILITIES_VIDEO;
231
232   DEBUG ("Requesting new stream for capabilities %d",
233       capabilities);
234
235   stream_types = g_array_new (FALSE, FALSE, sizeof (guint));
236   handle = empathy_contact_get_handle (priv->contact);
237
238   if (capabilities & EMPATHY_CAPABILITIES_AUDIO)
239     {
240       stream_type = TP_MEDIA_STREAM_TYPE_AUDIO;
241       g_array_append_val (stream_types, stream_type);
242     }
243   if (capabilities & EMPATHY_CAPABILITIES_VIDEO)
244     {
245       stream_type = TP_MEDIA_STREAM_TYPE_VIDEO;
246       g_array_append_val (stream_types, stream_type);
247     }
248
249   tp_cli_channel_type_streamed_media_call_request_streams (priv->channel, -1,
250       handle, stream_types, tp_call_request_streams_cb, NULL, NULL,
251       G_OBJECT (call));
252
253   g_array_free (stream_types, TRUE);
254 }
255
256 static EmpathyContact *
257 tp_call_dup_contact_from_handle (EmpathyTpCall *call, TpHandle handle)
258 {
259   EmpathyTpCallPriv *priv = GET_PRIV (call);
260   EmpathyContactFactory *factory;
261   McAccount *account;
262   EmpathyContact *contact;
263
264   factory = empathy_contact_factory_dup_singleton ();
265   account = empathy_channel_get_account (priv->channel);
266   contact = empathy_contact_factory_get_from_handle (factory, account, handle);
267
268   g_object_unref (factory);
269   g_object_unref (account);
270
271   return contact;
272 }
273
274 static void
275 tp_call_update_status (EmpathyTpCall *call)
276 {
277   EmpathyTpCallPriv *priv = GET_PRIV (call);
278   TpHandle self_handle;
279   const TpIntSet *set;
280   TpIntSetIter iter;
281
282   g_object_ref (call);
283
284   self_handle = tp_channel_group_get_self_handle (priv->channel);
285   set = tp_channel_group_get_members (priv->channel);
286   tp_intset_iter_init (&iter, set);
287   while (tp_intset_iter_next (&iter))
288     {
289       if (priv->contact == NULL && iter.element != self_handle)
290         {
291           /* We found the remote contact */
292           priv->contact = tp_call_dup_contact_from_handle (call, iter.element);
293           priv->is_incoming = TRUE;
294           priv->status = EMPATHY_TP_CALL_STATUS_PENDING;
295           g_object_notify (G_OBJECT (call), "is-incoming");
296           g_object_notify (G_OBJECT (call), "contact");
297           g_object_notify (G_OBJECT (call), "status");
298         }
299
300       if (priv->status == EMPATHY_TP_CALL_STATUS_PENDING &&
301           ((priv->is_incoming && iter.element == self_handle) ||
302            (!priv->is_incoming && iter.element != self_handle)))
303         {
304           priv->status = EMPATHY_TP_CALL_STATUS_ACCEPTED;
305           g_object_notify (G_OBJECT (call), "status");
306         }
307     }
308
309   g_object_unref (call);
310 }
311
312 static void
313 tp_call_members_changed_cb (TpChannel *channel,
314                             gchar *message,
315                             GArray *added,
316                             GArray *removed,
317                             GArray *local_pending,
318                             GArray *remote_pending,
319                             guint actor,
320                             guint reason,
321                             EmpathyTpCall *call)
322 {
323   tp_call_update_status (call);
324 }
325
326 void
327 empathy_tp_call_to (EmpathyTpCall *call, EmpathyContact *contact)
328 {
329   EmpathyTpCallPriv *priv = GET_PRIV (call);
330
331   priv->contact = g_object_ref (contact);
332   priv->is_incoming = FALSE;
333   priv->status = EMPATHY_TP_CALL_STATUS_PENDING;
334   g_object_notify (G_OBJECT (call), "is-incoming");
335   g_object_notify (G_OBJECT (call), "contact");
336   g_object_notify (G_OBJECT (call), "status");
337   tp_call_request_streams_for_capabilities (call,
338      EMPATHY_CAPABILITIES_VIDEO | EMPATHY_CAPABILITIES_AUDIO);
339 }
340
341 static void
342 tp_call_channel_invalidated_cb (TpChannel     *channel,
343                                 GQuark         domain,
344                                 gint           code,
345                                 gchar         *message,
346                                 EmpathyTpCall *call)
347 {
348   EmpathyTpCallPriv *priv = GET_PRIV (call);
349
350   DEBUG ("Channel invalidated: %s", message);
351   priv->status = EMPATHY_TP_CALL_STATUS_CLOSED;
352   g_object_notify (G_OBJECT (call), "status");
353 }
354
355 static void
356 tp_call_async_cb (TpProxy *proxy,
357                   const GError *error,
358                   gpointer user_data,
359                   GObject *call)
360 {
361   if (error)
362       DEBUG ("Error %s: %s", (gchar*) user_data, error->message);
363 }
364
365 static void
366 tp_call_close_channel (EmpathyTpCall *call)
367 {
368   EmpathyTpCallPriv *priv = GET_PRIV (call);
369
370   if (priv->status == EMPATHY_TP_CALL_STATUS_CLOSED)
371       return;
372
373   DEBUG ("Closing channel");
374
375   tp_cli_channel_call_close (priv->channel, -1,
376       NULL, NULL, NULL, NULL);
377
378   priv->status = EMPATHY_TP_CALL_STATUS_CLOSED;
379   g_object_notify (G_OBJECT (call), "status");
380 }
381
382 static GObject *
383 tp_call_constructor (GType type,
384                      guint n_construct_params,
385                      GObjectConstructParam *construct_params)
386 {
387   GObject *object;
388   EmpathyTpCall *call;
389   EmpathyTpCallPriv *priv;
390
391   object = G_OBJECT_CLASS (empathy_tp_call_parent_class)->constructor (type,
392       n_construct_params, construct_params);
393
394   call = EMPATHY_TP_CALL (object);
395   priv = GET_PRIV (call);
396
397   /* Setup streamed media channel */
398   g_signal_connect (priv->channel, "invalidated",
399       G_CALLBACK (tp_call_channel_invalidated_cb), call);
400   tp_cli_channel_type_streamed_media_connect_to_stream_added (priv->channel,
401       tp_call_stream_added_cb, NULL, NULL, G_OBJECT (call), NULL);
402   tp_cli_channel_type_streamed_media_connect_to_stream_removed (priv->channel,
403       tp_call_stream_removed_cb, NULL, NULL, G_OBJECT (call), NULL);
404   tp_cli_channel_type_streamed_media_connect_to_stream_state_changed (priv->channel,
405       tp_call_stream_state_changed_cb, NULL, NULL, G_OBJECT (call), NULL);
406   tp_cli_channel_type_streamed_media_connect_to_stream_direction_changed (priv->channel,
407       tp_call_stream_direction_changed_cb, NULL, NULL, G_OBJECT (call), NULL);
408   tp_cli_channel_type_streamed_media_call_list_streams (priv->channel, -1,
409       tp_call_request_streams_cb, NULL, NULL, G_OBJECT (call));
410
411   /* Update status when members changes */
412   tp_call_update_status (call);
413   g_signal_connect (priv->channel, "group-members-changed",
414       G_CALLBACK (tp_call_members_changed_cb), call);
415
416   return object;
417 }
418 static void
419 tp_call_dispose (GObject *object)
420 {
421   EmpathyTpCallPriv *priv = GET_PRIV (object);
422
423   DEBUG ("Disposing: %p, %d", object, priv->dispose_has_run);
424
425   if (priv->dispose_has_run)
426     return;
427
428   priv->dispose_has_run = TRUE;
429
430   if (priv->channel != NULL)
431     {
432       g_signal_handlers_disconnect_by_func (priv->channel,
433         tp_call_channel_invalidated_cb, object);
434
435       g_object_unref (priv->channel);
436       priv->channel = NULL;
437     }
438
439   if (priv->contact != NULL)
440       g_object_unref (priv->contact);
441
442   if (G_OBJECT_CLASS (empathy_tp_call_parent_class)->dispose)
443     G_OBJECT_CLASS (empathy_tp_call_parent_class)->dispose (object);
444 }
445
446 static void
447 tp_call_finalize (GObject *object)
448 {
449   EmpathyTpCallPriv *priv = GET_PRIV (object);
450
451   DEBUG ("Finalizing: %p", object);
452
453   g_slice_free (EmpathyTpCallStream, priv->audio);
454   g_slice_free (EmpathyTpCallStream, priv->video);
455
456   (G_OBJECT_CLASS (empathy_tp_call_parent_class)->finalize) (object);
457 }
458
459 static void
460 tp_call_set_property (GObject *object,
461                       guint prop_id,
462                       const GValue *value,
463                       GParamSpec *pspec)
464 {
465   EmpathyTpCallPriv *priv = GET_PRIV (object);
466
467   switch (prop_id)
468     {
469     case PROP_CHANNEL:
470       priv->channel = g_value_dup_object (value);
471       break;
472     default:
473       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
474       break;
475   }
476 }
477
478 static void
479 tp_call_get_property (GObject *object,
480                       guint prop_id,
481                       GValue *value,
482                       GParamSpec *pspec)
483 {
484   EmpathyTpCallPriv *priv = GET_PRIV (object);
485
486   switch (prop_id)
487     {
488     case PROP_CHANNEL:
489       g_value_set_object (value, priv->channel);
490       break;
491     case PROP_CONTACT:
492       g_value_set_object (value, priv->contact);
493       break;
494     case PROP_IS_INCOMING:
495       g_value_set_boolean (value, priv->is_incoming);
496       break;
497     case PROP_STATUS:
498       g_value_set_uint (value, priv->status);
499       break;
500     case PROP_AUDIO_STREAM:
501       g_value_set_pointer (value, priv->audio);
502       break;
503     case PROP_VIDEO_STREAM:
504       g_value_set_pointer (value, priv->video);
505       break;
506     default:
507       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
508       break;
509   }
510 }
511
512 static void
513 empathy_tp_call_class_init (EmpathyTpCallClass *klass)
514 {
515   GObjectClass *object_class = G_OBJECT_CLASS (klass);
516
517   object_class->constructor = tp_call_constructor;
518   object_class->dispose = tp_call_dispose;
519   object_class->finalize = tp_call_finalize;
520   object_class->set_property = tp_call_set_property;
521   object_class->get_property = tp_call_get_property;
522
523   g_type_class_add_private (klass, sizeof (EmpathyTpCallPriv));
524
525   g_object_class_install_property (object_class, PROP_CHANNEL,
526       g_param_spec_object ("channel", "channel", "channel",
527       TP_TYPE_CHANNEL,
528       G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
529       G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
530   g_object_class_install_property (object_class, PROP_CONTACT,
531       g_param_spec_object ("contact", "Call contact", "Call contact",
532       EMPATHY_TYPE_CONTACT,
533       G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
534   g_object_class_install_property (object_class, PROP_IS_INCOMING,
535       g_param_spec_boolean ("is-incoming", "Is media stream incoming",
536       "Is media stream incoming", FALSE, G_PARAM_READABLE |
537       G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
538   g_object_class_install_property (object_class, PROP_STATUS,
539       g_param_spec_uint ("status", "Call status",
540       "Call status", 0, 255, 0, G_PARAM_READABLE | G_PARAM_STATIC_NICK |
541       G_PARAM_STATIC_BLURB));
542   g_object_class_install_property (object_class, PROP_AUDIO_STREAM,
543       g_param_spec_pointer ("audio-stream", "Audio stream data",
544       "Audio stream data",
545       G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
546   g_object_class_install_property (object_class, PROP_VIDEO_STREAM,
547       g_param_spec_pointer ("video-stream", "Video stream data",
548       "Video stream data",
549       G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
550 }
551
552 static void
553 empathy_tp_call_init (EmpathyTpCall *call)
554 {
555   EmpathyTpCallPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (call,
556     EMPATHY_TYPE_TP_CALL, EmpathyTpCallPriv);
557
558   call->priv = priv;
559   priv->status = EMPATHY_TP_CALL_STATUS_READYING;
560   priv->contact = NULL;
561   priv->audio = g_slice_new0 (EmpathyTpCallStream);
562   priv->video = g_slice_new0 (EmpathyTpCallStream);
563   priv->audio->exists = FALSE;
564   priv->video->exists = FALSE;
565 }
566
567 EmpathyTpCall *
568 empathy_tp_call_new (TpChannel *channel)
569 {
570   g_return_val_if_fail (TP_IS_CHANNEL (channel), NULL);
571
572   return g_object_new (EMPATHY_TYPE_TP_CALL,
573       "channel", channel,
574       NULL);
575 }
576
577 void
578 empathy_tp_call_accept_incoming_call (EmpathyTpCall *call)
579 {
580   EmpathyTpCallPriv *priv = GET_PRIV (call);
581   TpHandle self_handle;
582   GArray handles = {(gchar *) &self_handle, 1};
583
584   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
585   g_return_if_fail (priv->status == EMPATHY_TP_CALL_STATUS_PENDING);
586   g_return_if_fail (priv->is_incoming);
587
588   DEBUG ("Accepting incoming call");
589
590   self_handle = tp_channel_group_get_self_handle (priv->channel);
591   tp_cli_channel_interface_group_call_add_members (priv->channel, -1,
592       &handles, NULL, NULL, NULL, NULL, NULL);
593 }
594
595 void
596 empathy_tp_call_close (EmpathyTpCall *call)
597 {
598   EmpathyTpCallPriv *priv = GET_PRIV (call);
599
600   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
601
602   if (priv->status == EMPATHY_TP_CALL_STATUS_CLOSED)
603       return;
604
605   DEBUG ("Closing channel");
606
607   tp_cli_channel_call_close (priv->channel, -1,
608       NULL, NULL, NULL, NULL);
609
610   priv->status = EMPATHY_TP_CALL_STATUS_CLOSED;
611   g_object_notify (G_OBJECT (call), "status");
612 }
613
614 void
615 empathy_tp_call_request_video_stream_direction (EmpathyTpCall *call,
616                                                 gboolean is_sending)
617 {
618   EmpathyTpCallPriv *priv = GET_PRIV (call);
619   guint new_direction;
620
621   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
622   g_return_if_fail (priv->status == EMPATHY_TP_CALL_STATUS_ACCEPTED);
623
624   DEBUG ("Requesting video stream direction - is_sending: %d", is_sending);
625
626   if (!priv->video->exists)
627     {
628       if (is_sending)
629           tp_call_request_streams_for_capabilities (call,
630               EMPATHY_CAPABILITIES_VIDEO);
631       return;
632     }
633
634   if (is_sending)
635       new_direction = priv->video->direction | TP_MEDIA_STREAM_DIRECTION_SEND;
636   else
637       new_direction = priv->video->direction & ~TP_MEDIA_STREAM_DIRECTION_SEND;
638
639   tp_cli_channel_type_streamed_media_call_request_stream_direction (priv->channel,
640       -1, priv->video->id, new_direction,
641       (tp_cli_channel_type_streamed_media_callback_for_request_stream_direction)
642       tp_call_async_cb, NULL, NULL, G_OBJECT (call));
643 }
644
645 void
646 empathy_tp_call_add_preview_video (EmpathyTpCall *call,
647                                    guint preview_video_socket_id)
648 {
649   //EmpathyTpCallPriv *priv = GET_PRIV (call);
650
651   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
652
653   DEBUG ("Adding preview video");
654
655   /* FIXME add the preview window */
656 }
657
658 void
659 empathy_tp_call_remove_preview_video (EmpathyTpCall *call,
660                                       guint preview_video_socket_id)
661 {
662   //EmpathyTpCallPriv *priv = GET_PRIV (call);
663
664   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
665
666   DEBUG ("Removing preview video");
667
668   /* FIXME remove the preview window */
669 }
670
671 void
672 empathy_tp_call_add_output_video (EmpathyTpCall *call,
673                                   guint output_video_socket_id)
674 {
675   //EmpathyTpCallPriv *priv = GET_PRIV (call);
676
677   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
678
679   DEBUG ("Adding output video - socket: %d", output_video_socket_id);
680
681   /* FIXME add output window */
682 }
683
684 void
685 empathy_tp_call_set_output_volume (EmpathyTpCall *call,
686                                    guint volume)
687 {
688   EmpathyTpCallPriv *priv = GET_PRIV (call);
689
690   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
691   g_return_if_fail (priv->status != EMPATHY_TP_CALL_STATUS_CLOSED);
692
693   DEBUG ("Setting output volume: %d", volume);
694
695   /* FIXME set volume */
696 }
697
698 void
699 empathy_tp_call_mute_output (EmpathyTpCall *call,
700                              gboolean is_muted)
701 {
702   //EmpathyTpCallPriv *priv = GET_PRIV (call);
703
704   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
705
706   DEBUG ("Setting output mute: %d", is_muted);
707   /* FIXME mute output */
708 }
709
710 void
711 empathy_tp_call_mute_input (EmpathyTpCall *call,
712                             gboolean is_muted)
713 {
714   //EmpathyTpCallPriv *priv = GET_PRIV (call);
715
716   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
717
718   DEBUG ("Setting input mute: %d", is_muted);
719
720   /* FIXME mute input */
721 }
722
723 void
724 empathy_tp_call_start_tone (EmpathyTpCall *call, TpDTMFEvent event)
725 {
726   EmpathyTpCallPriv *priv = GET_PRIV (call);
727
728   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
729   g_return_if_fail (priv->status == EMPATHY_TP_CALL_STATUS_ACCEPTED);
730
731   if (!priv->audio->exists)
732       return;
733
734   tp_cli_channel_interface_dtmf_call_start_tone (priv->channel, -1,
735       priv->audio->id, event,
736       (tp_cli_channel_interface_dtmf_callback_for_start_tone) tp_call_async_cb,
737       "starting tone", NULL, G_OBJECT (call));
738 }
739
740 void
741 empathy_tp_call_stop_tone (EmpathyTpCall *call)
742 {
743   EmpathyTpCallPriv *priv = GET_PRIV (call);
744
745   g_return_if_fail (EMPATHY_IS_TP_CALL (call));
746   g_return_if_fail (priv->status == EMPATHY_TP_CALL_STATUS_ACCEPTED);
747
748   if (!priv->audio->exists)
749       return;
750
751   tp_cli_channel_interface_dtmf_call_stop_tone (priv->channel, -1,
752       priv->audio->id,
753       (tp_cli_channel_interface_dtmf_callback_for_stop_tone) tp_call_async_cb,
754       "stoping tone", NULL, G_OBJECT (call));
755 }
756
757 gboolean
758 empathy_tp_call_has_dtmf (EmpathyTpCall *call)
759 {
760   EmpathyTpCallPriv *priv = GET_PRIV (call);
761
762   g_return_val_if_fail (EMPATHY_IS_TP_CALL (call), FALSE);
763
764   return tp_proxy_has_interface_by_id (priv->channel,
765       TP_IFACE_QUARK_CHANNEL_INTERFACE_DTMF);
766 }
767