diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-03-06 01:49:49 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-03-06 01:49:49 +0800 |
commit | 2974d41801a79040d172ff165ee4ad7894bcec09 (patch) | |
tree | 5ade160ee1e43afd335118731339248d814c5807 | |
parent | cc78967fb896019100e951550df244429e41ca78 (diff) | |
download | gsoc2013-empathy-2974d41801a79040d172ff165ee4ad7894bcec09.tar gsoc2013-empathy-2974d41801a79040d172ff165ee4ad7894bcec09.tar.gz gsoc2013-empathy-2974d41801a79040d172ff165ee4ad7894bcec09.tar.bz2 gsoc2013-empathy-2974d41801a79040d172ff165ee4ad7894bcec09.tar.lz gsoc2013-empathy-2974d41801a79040d172ff165ee4ad7894bcec09.tar.xz gsoc2013-empathy-2974d41801a79040d172ff165ee4ad7894bcec09.tar.zst gsoc2013-empathy-2974d41801a79040d172ff165ee4ad7894bcec09.zip |
advertise Call1 audio/video capabilities
-rw-r--r-- | data/Empathy.Call.client | 2 | ||||
-rw-r--r-- | src/empathy-call-factory.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/data/Empathy.Call.client b/data/Empathy.Call.client index 468a99625..95d90c8ad 100644 --- a/data/Empathy.Call.client +++ b/data/Empathy.Call.client @@ -16,6 +16,8 @@ org.freedesktop.Telepathy.Channel.TargetHandleType u=1 org.freedesktop.Telepathy.Channel.Type.Call1.InitialVideo b=true [org.freedesktop.Telepathy.Client.Handler.Capabilities] +org.freedesktop.Telepathy.Channel.Type.Call1/audio=true +org.freedesktop.Telepathy.Channel.Type.Call1/video=true org.freedesktop.Telepathy.Channel.Type.Call1/ice-udp=true org.freedesktop.Telepathy.Channel.Type.Call1/gtalk-p2p=true org.freedesktop.Telepathy.Channel.Type.Call1/video/h264=true diff --git a/src/empathy-call-factory.c b/src/empathy-call-factory.c index 434bd8198..1722b8697 100644 --- a/src/empathy-call-factory.c +++ b/src/empathy-call-factory.c @@ -103,6 +103,8 @@ empathy_call_factory_init (EmpathyCallFactory *obj) NULL)); tp_base_client_add_handler_capabilities_varargs (client, + "org.freedesktop.Telepathy.Channel.Type.Call1/audio", + "org.freedesktop.Telepathy.Channel.Type.Call1/video", "org.freedesktop.Telepathy.Channel.Type.Call1/ice-udp", "org.freedesktop.Telepathy.Channel.Type.Call1/gtalk-p2p", "org.freedesktop.Telepathy.Channel.Type.Call1/video/h264", |