From 62ed123c83ff2de84622abe1e2cb972a409c43ae Mon Sep 17 00:00:00 2001 From: Jonathan Tellier Date: Wed, 20 May 2009 13:49:02 -0400 Subject: When no video is received or sent we show contacts' avatars instead of showing black widgets. --- libempathy/empathy-tp-call.c | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'libempathy/empathy-tp-call.c') diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c index 2971e0ffc..bf3fe778c 100644 --- a/libempathy/empathy-tp-call.c +++ b/libempathy/empathy-tp-call.c @@ -672,3 +672,40 @@ empathy_tp_call_has_dtmf (EmpathyTpCall *call) TP_IFACE_QUARK_CHANNEL_INTERFACE_DTMF); } +/** + * empathy_tp_call_is_receiving_video: + * @call: the call + * + * Indicates if the call is receiving video or not. + * + * Returns: %TRUE if the call is currently receiving video, %FALSE otherwise. + */ +gboolean +empathy_tp_call_is_receiving_video (EmpathyTpCall *call) +{ + EmpathyTpCallPriv *priv = GET_PRIV (call); + + g_return_val_if_fail (EMPATHY_IS_TP_CALL (call), FALSE); + + return priv->video->direction == TP_MEDIA_STREAM_DIRECTION_RECEIVE || + priv->video->direction == TP_MEDIA_STREAM_DIRECTION_BIDIRECTIONAL; +} + +/** + * empathy_tp_call_is_sending_video: + * @call: the call + * + * Indicates if the call is sending video or not. + * + * Returns: %TRUE if the call is currently sending video, %FALSE otherwise. + */ +gboolean +empathy_tp_call_is_sending_video (EmpathyTpCall *call) +{ + EmpathyTpCallPriv *priv = GET_PRIV (call); + + g_return_val_if_fail (EMPATHY_IS_TP_CALL (call), FALSE); + + return priv->video->direction == TP_MEDIA_STREAM_DIRECTION_SEND || + priv->video->direction == TP_MEDIA_STREAM_DIRECTION_BIDIRECTIONAL; +} -- cgit v1.2.3