diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-03 23:00:26 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-05 17:08:22 +0800 |
commit | 81e35b4237433cf031004aa840e94d5f03c1b2f8 (patch) | |
tree | 7ec012a7a9ef4f74938faee4d35c0ef21b3b30e6 /libempathy/empathy-call-handler.h | |
parent | b51dda50b585f6c3cee76996bfb6f45da000447d (diff) | |
download | gsoc2013-empathy-81e35b4237433cf031004aa840e94d5f03c1b2f8.tar gsoc2013-empathy-81e35b4237433cf031004aa840e94d5f03c1b2f8.tar.gz gsoc2013-empathy-81e35b4237433cf031004aa840e94d5f03c1b2f8.tar.bz2 gsoc2013-empathy-81e35b4237433cf031004aa840e94d5f03c1b2f8.tar.lz gsoc2013-empathy-81e35b4237433cf031004aa840e94d5f03c1b2f8.tar.xz gsoc2013-empathy-81e35b4237433cf031004aa840e94d5f03c1b2f8.tar.zst gsoc2013-empathy-81e35b4237433cf031004aa840e94d5f03c1b2f8.zip |
call-handler: add properties tracking the candidates
Diffstat (limited to 'libempathy/empathy-call-handler.h')
-rw-r--r-- | libempathy/empathy-call-handler.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libempathy/empathy-call-handler.h b/libempathy/empathy-call-handler.h index 234bc800e..9f6fd9e3b 100644 --- a/libempathy/empathy-call-handler.h +++ b/libempathy/empathy-call-handler.h @@ -89,6 +89,18 @@ GList * empathy_call_handler_get_recv_audio_codecs ( GList * empathy_call_handler_get_recv_video_codecs ( EmpathyCallHandler *self); +FsCandidate * empathy_call_handler_get_audio_remote_candidate ( + EmpathyCallHandler *self); + +FsCandidate * empathy_call_handler_get_audio_local_candidate ( + EmpathyCallHandler *self); + +FsCandidate * empathy_call_handler_get_video_remote_candidate ( + EmpathyCallHandler *self); + +FsCandidate * empathy_call_handler_get_video_local_candidate ( + EmpathyCallHandler *self); + G_END_DECLS #endif /* #ifndef __EMPATHY_CALL_HANDLER_H__*/ |