diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-10 01:51:57 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-28 00:33:42 +0800 |
commit | af3cc2af6c30341cc2a12f63b397d733d3de8a6f (patch) | |
tree | cd7da4b0fea075c2565b1a68ef9f447da311ae1f /src | |
parent | ba1c519dde7bede7ea44d94246b41d909265c04c (diff) | |
download | gsoc2013-empathy-af3cc2af6c30341cc2a12f63b397d733d3de8a6f.tar gsoc2013-empathy-af3cc2af6c30341cc2a12f63b397d733d3de8a6f.tar.gz gsoc2013-empathy-af3cc2af6c30341cc2a12f63b397d733d3de8a6f.tar.bz2 gsoc2013-empathy-af3cc2af6c30341cc2a12f63b397d733d3de8a6f.tar.lz gsoc2013-empathy-af3cc2af6c30341cc2a12f63b397d733d3de8a6f.tar.xz gsoc2013-empathy-af3cc2af6c30341cc2a12f63b397d733d3de8a6f.tar.zst gsoc2013-empathy-af3cc2af6c30341cc2a12f63b397d733d3de8a6f.zip |
Don't display the video preview when the sink is added
We should dislpay it since we started the sending video process so
there is no point to enforce it at this stage.
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-call-window.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index a862c2cf1..c6c69aeb2 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -1779,16 +1779,6 @@ empathy_call_window_sink_added_cb (EmpathyCallHandler *handler, case TP_MEDIA_STREAM_TYPE_VIDEO: if (priv->video_input != NULL) { - EmpathyTpCall *call; - g_object_get (priv->handler, "tp-call", &call, NULL); - - if (empathy_tp_call_is_sending_video (call)) - { - display_video_preview (self, TRUE); - } - - g_object_unref (call); - if (priv->video_tee != NULL) { pad = gst_element_get_request_pad (priv->video_tee, "src%d"); |