diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-09-29 20:08:45 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-09-29 20:08:45 +0800 |
commit | e3e5702a683c468ccc1742515b4033f32c7d1083 (patch) | |
tree | 9036ec7c855079e59ec6b67128ee37134bb79abf /libempathy/tp-stream-engine.xml | |
parent | f5490a416f103d552344f7df0238a39c1e76b537 (diff) | |
download | gsoc2013-empathy-e3e5702a683c468ccc1742515b4033f32c7d1083.tar gsoc2013-empathy-e3e5702a683c468ccc1742515b4033f32c7d1083.tar.gz gsoc2013-empathy-e3e5702a683c468ccc1742515b4033f32c7d1083.tar.bz2 gsoc2013-empathy-e3e5702a683c468ccc1742515b4033f32c7d1083.tar.lz gsoc2013-empathy-e3e5702a683c468ccc1742515b4033f32c7d1083.tar.xz gsoc2013-empathy-e3e5702a683c468ccc1742515b4033f32c7d1083.tar.zst gsoc2013-empathy-e3e5702a683c468ccc1742515b4033f32c7d1083.zip |
Initial Voice+Video support Fixes bug #468204 (Elliot Fairweather, Xavier
2007-09-29 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-call-window.c:
* libempathy-gtk/empathy-call-window.h:
* libempathy-gtk/empathy-contact-list-view.c:
* libempathy-gtk/empathy-call-window.glade:
* libempathy-gtk/Makefile.am:
* libempathy-gtk/empathy-chat-window.c:
* src/empathy-call-chandler.c:
* src/empathy-call.chandler:
* src/org.gnome.Empathy.Call.service.in:
* src/Makefile.am:
* libempathy/empathy-utils.c:
* libempathy/empathy-utils.h:
* libempathy/empathy-tp-call.c:
* libempathy/empathy-tp-call.h:
* libempathy/Makefile.am:
* libempathy/tp-stream-engine.xml:
* configure.ac:
* doc/libempathy-gtk/libempathy-gtk-docs.sgml:
* doc/libempathy/libempathy.types:
* doc/libempathy/libempathy-docs.sgml:
* doc/libempathy/Makefile.am:
* doc/libempathy/tmpl/empathy-utils.sgml: Initial Voice+Video support
Fixes bug #468204 (Elliot Fairweather, Xavier Claessens).
svn path=/trunk/; revision=339
Diffstat (limited to 'libempathy/tp-stream-engine.xml')
-rw-r--r-- | libempathy/tp-stream-engine.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/libempathy/tp-stream-engine.xml b/libempathy/tp-stream-engine.xml new file mode 100644 index 000000000..5a8783d0e --- /dev/null +++ b/libempathy/tp-stream-engine.xml @@ -0,0 +1,54 @@ +<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> +<node name="/TpMediaEngine"> + <interface name="org.freedesktop.Telepathy.ChannelHandler"> + <method name="HandleChannel"> + <arg direction="in" type="s" name="bus_name" /> + <arg direction="in" type="o" name="connection" /> + <arg direction="in" type="s" name="channel_type" /> + <arg direction="in" type="o" name="channel" /> + <arg direction="in" type="u" name="handle_type" /> + <arg direction="in" type="u" name="handle" /> + </method> + </interface> + <interface name="org.freedesktop.Telepathy.StreamEngine"> + <method name="SetOutputVolume"> + <arg direction="in" type="o" name="channel_path" /> + <arg direction="in" type="u" name="stream_id" /> + <arg direction="in" type="u" name="volume" /> + </method> + <method name="MuteInput"> + <arg direction="in" type="o" name="channel_path" /> + <arg direction="in" type="u" name="stream_id" /> + <arg direction="in" type="b" name="mute_state" /> + </method> + <method name="MuteOutput"> + <arg direction="in" type="o" name="channel_path" /> + <arg direction="in" type="u" name="stream_id" /> + <arg direction="in" type="b" name="mute_state" /> + </method> + <method name="SetOutputWindow"> + <arg direction="in" type="o" name="channel_path" /> + <arg direction="in" type="u" name="stream_id" /> + <arg direction="in" type="u" name="window" /> + </method> + <method name="AddPreviewWindow"> + <arg direction="in" type="u" name="window" /> + </method> + <method name="RemovePreviewWindow"> + <arg direction="in" type="u" name="window" /> + </method> + <signal name="Receiving"> + <arg type="o" name="channel_path" /> + <arg type="u" name="stream_id" /> + <arg type="b" name="state" /> + </signal> + <signal name="StreamStateChanged"> + <arg type="o" name="channel_path" /> + <arg type="u" name="stream_id" /> + <arg type="u" name="state" /> + <arg type="u" name="direction" /> + </signal> + <method name="Shutdown"> + </method> + </interface> +</node> |