diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-11 22:58:59 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-11 23:23:56 +0800 |
commit | 3a96a951349e51717785605fcb32aecf0b8a96e4 (patch) | |
tree | 22cdd2e41390028202f6920668087c65d660af9c /src | |
parent | f9f6639f8f1cee0cb49fbe607cb00bb59fc02208 (diff) | |
download | gsoc2013-empathy-3a96a951349e51717785605fcb32aecf0b8a96e4.tar gsoc2013-empathy-3a96a951349e51717785605fcb32aecf0b8a96e4.tar.gz gsoc2013-empathy-3a96a951349e51717785605fcb32aecf0b8a96e4.tar.bz2 gsoc2013-empathy-3a96a951349e51717785605fcb32aecf0b8a96e4.tar.lz gsoc2013-empathy-3a96a951349e51717785605fcb32aecf0b8a96e4.tar.xz gsoc2013-empathy-3a96a951349e51717785605fcb32aecf0b8a96e4.tar.zst gsoc2013-empathy-3a96a951349e51717785605fcb32aecf0b8a96e4.zip |
Wait that the pipeline has been started before enabling camera
The v4l2src element doesn't work properly if the pipeline has not been started
(#605549).
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-call-window.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 564d904ca..6b372d78a 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -1231,17 +1231,13 @@ empathy_call_window_constructed (GObject *object) empathy_call_window_setup_avatars (self, priv->handler); empathy_call_window_set_state_connecting (self); - if (empathy_call_handler_has_initial_video (priv->handler)) - { - /* Enable 'send video' buttons and display the preview */ - gtk_toggle_tool_button_set_active ( - GTK_TOGGLE_TOOL_BUTTON (priv->tool_button_camera_on), TRUE); - } - else + if (!empathy_call_handler_has_initial_video (priv->handler)) { gtk_toggle_tool_button_set_active ( GTK_TOGGLE_TOOL_BUTTON (priv->tool_button_camera_off), TRUE); } + /* If call has InitialVideo, the preview will be started once the call has + * been started (start_call()). */ } static void empathy_call_window_dispose (GObject *object); @@ -2060,6 +2056,13 @@ start_call (EmpathyCallWindow *self) priv->call_started = TRUE; empathy_call_handler_start_call (priv->handler); gst_element_set_state (priv->pipeline, GST_STATE_PLAYING); + + if (empathy_call_handler_has_initial_video (priv->handler)) + { + /* Enable 'send video' buttons and display the preview */ + gtk_toggle_tool_button_set_active ( + GTK_TOGGLE_TOOL_BUTTON (priv->tool_button_camera_on), TRUE); + } } static gboolean |