diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-02-21 17:13:44 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-02-21 17:13:44 +0800 |
commit | abb277867f74af71705f453e0db3f947d85b084a (patch) | |
tree | 0acd93e0fbee55f1222f9af8d45ccb7a33d69ea6 | |
parent | eeaacbd35af795c8a265716721e915fa28aa242c (diff) | |
download | gsoc2013-empathy-abb277867f74af71705f453e0db3f947d85b084a.tar gsoc2013-empathy-abb277867f74af71705f453e0db3f947d85b084a.tar.gz gsoc2013-empathy-abb277867f74af71705f453e0db3f947d85b084a.tar.bz2 gsoc2013-empathy-abb277867f74af71705f453e0db3f947d85b084a.tar.lz gsoc2013-empathy-abb277867f74af71705f453e0db3f947d85b084a.tar.xz gsoc2013-empathy-abb277867f74af71705f453e0db3f947d85b084a.tar.zst gsoc2013-empathy-abb277867f74af71705f453e0db3f947d85b084a.zip |
tp_call_channel_add_content_async() now takes the direction
-rw-r--r-- | libempathy-gtk/empathy-call-utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-call-utils.c b/libempathy-gtk/empathy-call-utils.c index c2363c419..4f0185117 100644 --- a/libempathy-gtk/empathy-call-utils.c +++ b/libempathy-gtk/empathy-call-utils.c @@ -321,7 +321,8 @@ empathy_call_channel_send_video (TpCallChannel *self, if (send && !found) { tp_call_channel_add_content_async (self, "video", - TP_MEDIA_STREAM_TYPE_VIDEO, NULL, NULL); + TP_MEDIA_STREAM_TYPE_VIDEO, TP_MEDIA_STREAM_DIRECTION_BIDIRECTIONAL, + NULL, NULL); } } |